#ifndef __ANSI_COLORS_H #define __ANSI_COLORS_H #define DBG_CLR_OFF "\x1b[22;39m\x1b[23m" #define ANSI_DEFAULT "\x1b[39m" #define ANSI_BLACK "\x1b[30m" #define ANSI_RED "\x1b[31m" #define ANSI_GREEN "\x1b[32m" #define ANSI_YELLOW "\x1b[33m" #define ANSI_BLUE "\x1b[34m" #define ANSI_MAGENTA "\x1b[35m" #define ANSI_CYAN "\x1b[36m" #define ANSI_WHITE "\x1b[37m" #define ANSI_BBLACK "\x1b[90m" #define ANSI_BRED "\x1b[91m" #define ANSI_BGREEN "\x1b[92m" #define ANSI_BYELLOW "\x1b[93m" #define ANSI_BBLUE "\x1b[94m" #define ANSI_BMAGENTA "\x1b[95m" #define ANSI_BCYAN "\x1b[96m" #define ANSI_BWHITE "\x1b[97m" #define ANSI_ITALIC "\x1b[3m" #define ANSI_BOLD "\x1b[1m" #define ANSI_HOME "[H" #endif /* __ANSI_COLORS_H */