This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/include/irccolors.h
2023-08-04 09:13:47 -06:00

28 lines
727 B
C

#ifndef IRCCOLOR_H_
// Formatting macros
#define IRC_BOLD "[B]"
#define IRC_ITALIC "[I]"
#define IRC_UNDERLINE "[U]"
// Color macros
#define IRC_BLACK "[COLOR=BLACK]"
#define IRC_DARKBLUE "[COLOR=DARKBLUE]"
#define IRC_DARKGREEN "[COLOR=DARKGREEN]"
#define IRC_RED "[COLOR=RED]"
#define IRC_BROWN "[COLOR=BROWN]"
#define IRC_PURPLE "[COLOR=PURPLE]"
#define IRC_OLIVE "[COLOR=OLIVE]"
#define IRC_YELLOW "[COLOR=YELLOW]"
#define IRC_GREEN "[COLOR=GREEN]"
#define IRC_TEAL "[COLOR=TEAL]"
#define IRC_CYAN "[COLOR=CYAN]"
#define IRC_BLUE "[COLOR=BLUE]"
#define IRC_MAGENTA "[COLOR=MAGENTA]"
#define IRC_DARKGRAY "[COLOR=DARKGRAY]"
#define IRC_LIGHTGRAY "[COLOR=LIGHTGRAY]"
#define IRC_STOP "[/COLOR]"
#define IRCCOLOR_H_
#endif