diff options
Diffstat (limited to 'src/logo/colors.h')
-rw-r--r-- | src/logo/colors.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/logo/colors.h b/src/logo/colors.h new file mode 100644 index 0000000..496f3c3 --- /dev/null +++ b/src/logo/colors.h @@ -0,0 +1,16 @@ +#ifndef LOGO_COLORS_H +#define LOGO_COLORS_H + +#define LOGO_SIZE 23 + +#define GREY "\e[1;30m" +#define RED "\e[1;31m" +#define GREEN "\e[1;32m" +#define YELLOW "\e[1;33m" +#define BLUE "\e[1;34m" +#define MAGENTA "\e[1;35m" +#define CYAN "\e[1;36m" +#define WHITE "\e[1;37m" +#define RESET "\e[0m" + +#endif |