| 28 */ |
28 */ |
| 29 |
29 |
| 30 #include "colors.h" |
30 #include "colors.h" |
| 31 #include <ncurses.h> |
31 #include <ncurses.h> |
| 32 |
32 |
| 33 void init_colorpairs() { |
33 void init_colorpairs(void) { |
| 34 init_pair(COL_APP, COLOR_WHITE, COLOR_BLACK); |
34 init_pair(COL_APP, COLOR_WHITE, COLOR_BLACK); |
| 35 init_pair(COL_BW, COLOR_BLACK, COLOR_CYAN); |
35 init_pair(COL_BW, COLOR_BLACK, COLOR_CYAN); |
| 36 init_pair(COL_BB, COLOR_BLACK, COLOR_BLUE); |
36 init_pair(COL_BB, COLOR_BLACK, COLOR_BLUE); |
| 37 init_pair(COL_WB, COLOR_WHITE, COLOR_BLUE); |
37 init_pair(COL_WB, COLOR_WHITE, COLOR_BLUE); |
| 38 init_pair(COL_WW, COLOR_WHITE, COLOR_CYAN); |
38 init_pair(COL_WW, COLOR_WHITE, COLOR_CYAN); |