#ifndef COLORS_H #define COLORS_H #include "config.h" #include enum color { COLOR_TITLE = 1, COLOR_TITLE_BOLD, COLOR_LINE, COLOR_LINE_BOLD, COLOR_LIST, COLOR_LIST_BOLD, COLOR_PROGRESSBAR, COLOR_STATUS, COLOR_STATUS_BOLD, COLOR_STATUS_TIME, COLOR_STATUS_ALERT, COLOR_END }; short colors_str2color(const char *str); #ifdef ENABLE_COLORS int colors_assign(const char *name, const char *value); int colors_define(const char *name, short r, short g, short b); int colors_start(void); #endif int colors_use(WINDOW *w, enum color id); #endif /* COLORS_H */