|
3 | 3 | /* appearance */
|
4 | 4 | static const char font[] = "-*-xbmicons-medium-r-*-*-12-*-*-*-*-*-*-*" ","
|
5 | 5 | "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*";
|
6 |
| -#define NUMCOLORS 13 |
| 6 | +#define NUMCOLORS 12 |
7 | 7 | static const char colors[NUMCOLORS][ColLast][9] = {
|
8 | 8 | // border foreground background
|
9 | 9 | { "#282a2e", "#373b41", "#1d1f21" }, // 1 = normal (grey on black)
|
10 | 10 | { "#f0c674", "#c5c8c6", "#1d1f21" }, // 2 = selected (white on black)
|
11 | 11 | { "#dc322f", "#1d1f21", "#f0c674" }, // 3 = urgent (black on yellow)
|
12 |
| - { "#282a2e", "#282a2e", "#1d1f21" }, // 4 = darkgrey on black (triangle) |
13 |
| - { "#282a2e", "#1d1f21", "#282a2e" }, // 5 = black on darkgrey (triangle) |
14 |
| - { "#282a2e", "#b294bb", "#282a2e" }, // 6 = magenta on darkgrey |
15 |
| - { "#282a2e", "#cc6666", "#1d1f21" }, // 7 = red on black |
16 |
| - { "#282a2e", "#b5bd68", "#1d1f21" }, // 8 = green on black |
17 |
| - { "#282a2e", "#81a2be", "#282a2e" }, // 9 = blue on darkgrey |
18 |
| - { "#282a2e", "#f0c674", "#1d1f21" }, // A = yellow on black |
19 |
| - { "#282a2e", "#f0c674", "#282a2e" }, // B = yellow on darkgrey |
20 |
| - { "#282a2e", "#de935f", "#1d1f21" }, // C = orange on black |
21 |
| - { "#282a2e", "#8abeb7", "#282a2e" }, // D = cyan on darkgrey |
| 12 | + { "#282a2e", "#282a2e", "#1d1f21" }, // 4 = darkgrey on black (for glyphs) |
| 13 | + { "#282a2e", "#1d1f21", "#282a2e" }, // 5 = black on darkgrey (for glyphs) |
| 14 | + { "#282a2e", "#cc6666", "#1d1f21" }, // 6 = red on black |
| 15 | + { "#282a2e", "#b5bd68", "#1d1f21" }, // 7 = green on black |
| 16 | + { "#282a2e", "#de935f", "#1d1f21" }, // 8 = orange on black |
| 17 | + { "#282a2e", "#f0c674", "#1d1f21" }, // 9 = yellow on black |
| 18 | + { "#282a2e", "#81a2be", "#282a2e" }, // A = blue on darkgrey |
| 19 | + { "#282a2e", "#b294bb", "#282a2e" }, // B = magenta on darkgrey |
| 20 | + { "#282a2e", "#8abeb7", "#282a2e" }, // C = cyan on darkgrey |
22 | 21 | };
|
23 | 22 | static const unsigned int borderpx = 2; /* border pixel of windows */
|
24 | 23 | static const unsigned int snap = 8; /* snap pixel */
|
|
0 commit comments