diff options
Diffstat (limited to 'include/color.h')
-rwxr-xr-x | include/color.h | 18 |
1 files changed, 18 insertions, 0 deletions
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 <ncurses.h> + +/** + * 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 |