19 lines
546 B
C
19 lines
546 B
C
#ifndef SRC_TERM_COLORS
|
|
#define SRC_TERM_COLORS
|
|
|
|
#define ANSI_ITALIC "\x1b[3m"
|
|
|
|
#define ANSI_COLOR_RED "\x1b[31m"
|
|
#define ANSI_COLOR_BRED "\x1b[91m"
|
|
#define ANSI_COLOR_GREEN "\x1b[32m"
|
|
#define ANSI_COLOR_BGREEN "\x1b[92m"
|
|
#define ANSI_COLOR_YELLOW "\x1b[33m"
|
|
#define ANSI_COLOR_BYELLOW "\x1b[93m"
|
|
#define ANSI_COLOR_BLUE "\x1b[34m"
|
|
#define ANSI_COLOR_MAGENTA "\x1b[35m"
|
|
#define ANSI_COLOR_BMAGENTA "\x1b[95m"
|
|
#define ANSI_COLOR_CYAN "\x1b[36m"
|
|
#define ANSI_COLOR_RESET "\x1b[0m"
|
|
|
|
#endif /* SRC_TERM_COLORS */
|