32 lines
969 B
C++
32 lines
969 B
C++
#ifndef __COLORS__
|
|
#define __COLORS__
|
|
|
|
#define C_NONE ""
|
|
#define C_FG_BLACK "\x1b[30;1m"
|
|
#define C_FG_RED "\x1b[31;1m"
|
|
#define C_FG_GREEN "\x1b[32;1m"
|
|
#define C_FG_YELLOW "\x1b[33;1m"
|
|
#define C_FG_BLUE "\x1b[34;1m"
|
|
#define C_FG_MAGENTA "\x1b[35;1m"
|
|
#define C_FG_CYAN "\x1b[36;1m"
|
|
#define C_FG_WHITE "\x1b[37;1m"
|
|
#define C_BG_BLACK "\x1b[40;1m"
|
|
#define C_BG_RED "\x1b[41;1m"
|
|
#define C_BG_GREEN "\x1b[42;1m"
|
|
#define C_BG_YELLOW "\x1b[43;1m"
|
|
#define C_BG_BLUE "\x1b[44;1m"
|
|
#define C_BG_MAGENTA "\x1b[45;1m"
|
|
#define C_BG_CYAN "\x1b[46;1m"
|
|
#define C_BG_WHITE "\x1b[47;1m"
|
|
#define C_FG_B_BLACK "\x1b[90;1m"
|
|
#define C_FG_B_RED "\x1b[91;1m"
|
|
#define C_FG_B_GREEN "\x1b[92;1m"
|
|
#define C_FG_B_YELLOW "\x1b[93;1m"
|
|
#define C_FG_B_BLUE "\x1b[94;1m"
|
|
#define C_FG_B_MAGENTA "\x1b[95;1m"
|
|
#define C_FG_B_CYAN "\x1b[96;1m"
|
|
#define C_FG_B_WHITE "\x1b[97;1m"
|
|
#define C_RESET "\x1b[m"
|
|
|
|
#endif
|