diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-04-18 21:20:32 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-04-18 21:20:32 +0300 |
commit | e3b2372f384a61f55c66d2c79581f9a0f1f39082 (patch) | |
tree | 9ca5b94bcadb27516cfdd40a3695866a6d56918d | |
parent | c84ac19422e3cca5e8a2a1898304d7c55883a07b (diff) | |
download | dwm-base.tar.gz |
feat: use classic dwm colorsbase
-rw-r--r-- | config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index f2c79ed..b3ae63e 100644 --- a/config.def.h +++ b/config.def.h @@ -13,11 +13,11 @@ 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_primary[] = "#928374"; +static const char col_cyan[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_foreground, col_background, "#000000" }, - [SchemeSel] = { col_foreground, col_primary, "#000000" }, + [SchemeSel] = { col_foreground, col_cyan, col_cyan }, [SchemeStatus] = { col_foreground, col_background, "#000000" }, }; |