Add blue ANSI color macro.

This commit is contained in:
Bartosz Taudul 2024-05-05 21:20:37 +02:00
parent ee56e1fcd5
commit c31bf6f7f8
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -62,6 +62,7 @@ bool IsStdoutATerminal() { return s_isStdoutATerminal; }
#define ANSI_RED "\033[31m"
#define ANSI_GREEN "\033[32m"
#define ANSI_YELLOW "\033[33m"
#define ANSI_BLUE "\033[34m"
#define ANSI_MAGENTA "\033[35m"
#define ANSI_CYAN "\033[36m"
#define ANSI_ERASE_LINE "\033[2K"