blob: 872bc1adb7d0b535a823ef68c2d6c9e81a18d109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
static const char norm_fg[] = "{color15}";
static const char norm_bg[] = "{color0}";
static const char norm_border[] = "{color8}";
static const char sel_fg[] = "{color15}";
static const char sel_bg[] = "{color2}";
static const char sel_border[] = "{color15}";
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
}};
|