aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/config.h b/config.h
index fab08c9..7600dc4 100644
--- a/config.h
+++ b/config.h
@@ -15,11 +15,16 @@ static const int showbar = 1; /* 0 means no bar */
15static const int topbar = 1; /* 0 means bottom bar */ 15static const int topbar = 1; /* 0 means bottom bar */
16static const char *fonts[] = { "monospace:size=10"}; 16static const char *fonts[] = { "monospace:size=10"};
17static const char dmenufont[] = "monospace:size=10"; 17static const char dmenufont[] = "monospace:size=10";
18#include "colors.h" 18static const char col_gray1[] = "#282828";
19static const char col_gray2[] = "#3c3836";
20static const char col_gray3[] = "#ebdbb2";
21static const char col_gray4[] = "#fdf1c7";
22static const char col_cyan[] = "#d79921";
23
19static const char *colors[][3] = { 24static 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 */