/* VIO Text Colors */
#define ESC_CLR_BLACK      "\x1B" "[30m"
#define ESC_CLR_RED        "\x1B" "[31m"
#define ESC_CLR_GREEN      "\x1B" "[32m"
#define ESC_CLR_YELLOW     "\x1B" "[33m"
#define ESC_CLR_BLUE       "\x1B" "[34m"
#define ESC_CLR_PINK       "\x1B" "[35m"
#define ESC_CLR_CYAN       "\x1B" "[36m"
#define ESC_CLR_WHITE      "\x1B" "[37m"

#define ESC_BG_BLACK       "\x1B" "[40m"
#define ESC_BG_RED         "\x1B" "[41m"
#define ESC_BG_GREEN       "\x1B" "[42m"
#define ESC_BG_YELLOW      "\x1B" "[43m"
#define ESC_BG_BLUE        "\x1B" "[44m"
#define ESC_BG_PINK        "\x1B" "[45m"
#define ESC_BG_CYAN        "\x1B" "[46m"
#define ESC_BG_WHITE       "\x1B" "[47m"

#define ESC_CLR_RESET      "\x1B" "[0m"
#define ESC_CLR_BOLD       "\x1B" "[1m"
#define ESC_CLR_DIM        "\x1B" "[2m"
#define ESC_CLR_ITALIC     "\x1B" "[3m"
#define ESC_CLR_UNDERSCORE "\x1B" "[4m"
#define ESC_CLR_BLINK      "\x1B" "[5m"

