blob: e04f5fc04e95f4ed56f22d68e62e1dfdb813b19a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
static const char norm_fg[] = "#e5e5e5";
static const char norm_bg[] = "#414243";
static const char norm_border[] = "#414243";
static const char sel_fg[] = "#ebecec";
static const char sel_bg[] = "#b1421a";
static const char sel_border[] = "#f19e25";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins
[SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win
};
|