From dc0f2ce9ba97ebb47e05b80a511da6eb29818b63 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Tue, 23 Jul 2024 17:48:28 -0400 Subject: Merge old-molehole --- include/color.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 include/color.h (limited to 'include/color.h') diff --git a/include/color.h b/include/color.h new file mode 100755 index 0000000..0fbad4f --- /dev/null +++ b/include/color.h @@ -0,0 +1,18 @@ +#ifndef _COLOR_H_ +#define _COLOR_H_ +#include + +/** + * Initialize color pairs for the rest of the application. + */ +void set_colors(void); + +enum StatusColorPairs { STATUS_MAIN = 1, STATUS_ERROR, STATUS_PROMPT }; + +enum StatusColors { + COLOR_GREY = 238, + COLOR_DIM_WHITE = 250, + COLOR_DIM_RED = 160 +}; + +#endif -- cgit v1.2.3