aboutsummaryrefslogtreecommitdiff
path: root/include/color.h
blob: 0fbad4f7f4702d43bc449e016ba190ca3feb3890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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