diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-09-22 13:23:26 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-09-22 13:23:26 +0400 |
| commit | 95c3613ed3aecc99aef171fb7216607dd52e5f9d (patch) | |
| tree | 67dc3cfe05f985d47ba3314a780dddbec3a45ce1 /config.def.h | |
| parent | 94b8725f119e75b440b2fde4b887531434b43704 (diff) | |
Added colorbar patch and chaged color scheme
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index a3d0640..c773867 100644 --- a/config.def.h +++ b/config.def.h @@ -21,6 +21,11 @@ static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeStatus] = { col_gray3, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_gray4, col_cyan, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsNorm] = { col_gray3, col_gray1, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} + [SchemeInfoSel] = { col_gray4, col_cyan, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} + [SchemeInfoNorm] = { col_gray3, col_gray1, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty} }; typedef struct { |