molehole/include/color.h

19 lines
320 B
C
Raw Normal View History

2024-07-23 21:48:28 +00:00
#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