diff options
-rw-r--r-- | config.h | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -15,11 +15,16 @@ static const int showbar = 1; /* 0 means no bar */ | |||
15 | static const int topbar = 1; /* 0 means bottom bar */ | 15 | static const int topbar = 1; /* 0 means bottom bar */ |
16 | static const char *fonts[] = { "monospace:size=10"}; | 16 | static const char *fonts[] = { "monospace:size=10"}; |
17 | static const char dmenufont[] = "monospace:size=10"; | 17 | static const char dmenufont[] = "monospace:size=10"; |
18 | #include "colors.h" | 18 | static const char col_gray1[] = "#282828"; |
19 | static const char col_gray2[] = "#3c3836"; | ||
20 | static const char col_gray3[] = "#ebdbb2"; | ||
21 | static const char col_gray4[] = "#fdf1c7"; | ||
22 | static const char col_cyan[] = "#d79921"; | ||
23 | |||
19 | static const char *colors[][3] = { | 24 | static const char *colors[][3] = { |
20 | /* fg bg border */ | 25 | /* fg bg border */ |
21 | [SchemeNorm] = { ad_fg, ad_bg, ad_base }, | 26 | [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, |
22 | [SchemeSel] = { ad_sel_fg, ad_sel_bg, ad_hlght }, | 27 | [SchemeSel] = { col_gray4, col_cyan, col_cyan }, |
23 | }; | 28 | }; |
24 | 29 | ||
25 | /* tagging */ | 30 | /* tagging */ |