diff options
| author | dawidg81 <dawidgorski.m@gmail.com> | 2026-02-10 10:20:44 +0100 |
|---|---|---|
| committer | dawidg81 <dawidgorski.m@gmail.com> | 2026-02-10 10:20:44 +0100 |
| commit | b18c6a7de79e7a823ba4ab5f8077a1c44c242c22 (patch) | |
| tree | b737a411ab286131d373ea0c689ba5fca962a9c0 | |
| parent | 57eb7d9e23c67547cf797a45875c96c554b74275 (diff) | |
Added colors.hpp
| -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 |
