From 217e7d18dbaa260a15f5612d9670105b04cd455f Mon Sep 17 00:00:00 2001 From: A404M Date: Sat, 21 Dec 2024 21:47:19 +0330 Subject: Added ARGB colors --- src/ui/tui.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src/ui/tui.h') diff --git a/src/ui/tui.h b/src/ui/tui.h index eda55ac..8678804 100644 --- a/src/ui/tui.h +++ b/src/ui/tui.h @@ -4,6 +4,7 @@ #include #include #include +#include extern const int MAX_WIDTH; extern const int MAX_HEIGHT; @@ -35,18 +36,6 @@ typedef enum bool : uint8_t { false = 0, true = 1 } bool; #endif #endif -typedef enum COLOR { - COLOR_NO_COLOR = -1, - COLOR_RESET = 0, - COLOR_RED = 1, - COLOR_GREEN = 2, - COLOR_YELLOW = 3, - COLOR_BLUE = 4, - COLOR_MAGENTA = 5, - COLOR_CYAN = 6, - COLOR_WHITE = 7 -} COLOR; - typedef struct TERMINAL_CELL { char c; COLOR color; -- cgit v1.2.3