#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