diff options
author | eug-vs <eug-vs@keemail.me> | 2021-07-23 22:32:33 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-07-23 22:32:33 +0300 |
commit | e03542f3097d5f85315c3e3f8351ffc6c32fe3e3 (patch) | |
tree | 26e704a9fd6c14979e4961dd9a80b93641973537 | |
parent | 184a36b7fa8c561092f516f5168475191cd008d4 (diff) | |
download | dwm-e03542f3097d5f85315c3e3f8351ffc6c32fe3e3.tar.gz |
feat!: replace yellow with foreground
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index a19d21f..88dfa2e 100644 --- a/config.def.h +++ b/config.def.h @@ -15,15 +15,15 @@ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "fira code nerd font:pixelsize=12:antialias=true:autohint=true" }; static const char col_background[] = "#1d2021"; static const char col_foreground[] = "#ebdbb2"; -static const char col_yellow[] = "#d79921"; +static const char col_primary[] = "#ebdbb2"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_foreground, col_background, col_background }, - [SchemeSel] = { col_foreground, col_yellow, col_yellow }, + [SchemeSel] = { col_foreground, col_primary, col_primary }, [SchemeStatus] = { col_foreground, col_background, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_background, col_yellow, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_background, col_primary, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} [SchemeTagsNorm] = { col_foreground, col_background, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} [SchemeInfoSel] = { col_foreground, col_background, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} |