diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-27 10:18:03 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-27 10:18:03 +0000 |
commit | 1933edefee3058fcfd6631b472c6bce15b285aa6 (patch) | |
tree | 6dd66ddebfdd67234ef9964c0cce3e73d2c897eb | |
parent | d66f3c8e4c8ab43a7c9943bebcb72e2df16993a7 (diff) | |
download | dwm-1933edefee3058fcfd6631b472c6bce15b285aa6.tar.gz dwm-1933edefee3058fcfd6631b472c6bce15b285aa6.tar.bz2 dwm-1933edefee3058fcfd6631b472c6bce15b285aa6.zip |
(Config)~changed colours green -> blue
A nice little change.
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -19,15 +19,15 @@ static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; -static const char col_green[] = "#0e3f05"; -static const char col_green2[] = "#17fc02"; +static const char col_blue[] = "#0217FC"; +static const char col_blue2[] = "#6e95ff"; static const char col_red[] = "#910d01"; static const char *colors[][3] = { /* Scheme fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_green }, - [SchemeStatus] = { col_green2, "#222222", "#000000" }, // Statusbar right {text,background,not used but cannot be empty} - [SchemeTagsSel] = { col_green2, col_black, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeSel] = { col_gray4, col_cyan, col_blue }, + [SchemeStatus] = { col_blue2, "#222222", "#000000" }, // Statusbar right {text,background,not used but cannot be empty} + [SchemeTagsSel] = { col_blue2, col_black, "#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_black, "#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} |