diff options
| author | Sam Chudnick <sam@chudnick.com> | 2023-02-14 20:59:40 -0500 |
|---|---|---|
| committer | Sam Chudnick <sam@chudnick.com> | 2023-02-14 20:59:40 -0500 |
| commit | a7263e45fd33786614b4b05067a672818f94b3e1 (patch) | |
| tree | 31ca5491b19cfb9be98514ddacceacbb62911e21 | |
| parent | 636b1317aaacfef47d3fa9f30b4f9ae000fd0050 (diff) | |
Switch to gruvbox-dark colorscheme
| -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 */ |
