diff options
Diffstat (limited to 'x11-wm/dwm/files/51_colors.diff')
-rw-r--r-- | x11-wm/dwm/files/51_colors.diff | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/x11-wm/dwm/files/51_colors.diff b/x11-wm/dwm/files/51_colors.diff new file mode 100644 index 0000000..04a1d44 --- /dev/null +++ b/x11-wm/dwm/files/51_colors.diff @@ -0,0 +1,27 @@ +diff --git i/config.def.h w/config.def.h +index 4503e5d..19a0c61 100644 +--- i/config.def.h ++++ w/config.def.h +@@ -7,15 +7,15 @@ static const int showbar = 1; /* 0 means no bar */ + static const int topbar = 1; /* 0 means bottom bar */ + static const char *fonts[] = { "monospace:size=20" }; + static const char dmenufont[] = "monospace:size=20"; +-static const char col_gray1[] = "#222222"; +-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_black[] = "#152126"; ++static const char col_white[] = "#c0b1c2"; ++static const char col_hblack[] = "#5f5e66"; ++static const char col_hwhite[] = "#e1e1e6"; ++static const char col_purple[] = "#db498b"; + static const char *colors[][3] = { + /* fg bg border */ +- [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, +- [SchemeSel] = { col_gray4, col_cyan, col_cyan }, ++ [SchemeNorm] = { col_hblack, col_black, col_black }, ++ [SchemeSel] = { col_hwhite, col_purple, col_purple }, + }; + + /* tagging */ |