diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/colors.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/colors.hpp b/src/colors.hpp new file mode 100644 index 0000000..b4b45f7 --- /dev/null +++ b/src/colors.hpp @@ -0,0 +1,12 @@ +#pragma once + +#define COL_BLACK '\e[0;30m' +#define COL_RED '\e[0;31m' +#define COL_GREEN '\e[0;32m' +#define COL_YELLOW '\e[0;33m' +#define COL_BLUE '\e[0;34m' +#define COL_PURPLE '\e[0;35m' +#define COL_CYAN '\e[0;36m' +#define COL_WHITE '\e[0;37m' + +#define COL_RESET '\e[0m'
\ No newline at end of file |
