diff options
-rw-r--r-- | dwm/config.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dwm/config.h b/dwm/config.h index 7c65071..0674870 100644 --- a/dwm/config.h +++ b/dwm/config.h | |||
@@ -11,20 +11,20 @@ static const int smartgaps = 0; /* 1 means no outer gap when the | |||
11 | static const int showbar = 1; /* 0 means no bar */ | 11 | static const int showbar = 1; /* 0 means no bar */ |
12 | static const int topbar = 1; /* 0 means bottom bar */ | 12 | static const int topbar = 1; /* 0 means bottom bar */ |
13 | static const char *fonts[] = { "Hermit:pixelsize=11:antialias=true:autohint=true" }; | 13 | static const char *fonts[] = { "Hermit:pixelsize=11:antialias=true:autohint=true" }; |
14 | static const char col_gray1[] = "#000000"; | 14 | static const char col_gray1[] = "#696969"; |
15 | static const char col_gray2[] = "#444444"; | 15 | static const char col_gray2[] = "#000000"; |
16 | static const char col_gray3[] = "#bbbbbb"; | 16 | static const char col_gray3[] = "#c6c8d1"; |
17 | static const char col_gray4[] = "#000000"; | 17 | static const char col_gray4[] = "#696969"; |
18 | static const char col_cyan[] = "#84a0c6"; | 18 | static const char col_cyan[] = "#e0e0e0"; |
19 | static const char col_black[] = "#000000"; | 19 | static const char col_black[] = "#000000"; |
20 | static const char col_red[] = "#ff0000"; | 20 | static const char col_red[] = "#ff0000"; |
21 | static const char col_yellow[] = "#ffff00"; | 21 | static const char col_yellow[] = "#ffff00"; |
22 | static const char col_white[] = "#ffffff"; | 22 | static const char col_white[] = "#ffffff"; |
23 | 23 | #define NUMCOLORS 4 | |
24 | static const char *colors[][3] = { | 24 | static const char *colors[][3] = { |
25 | /* fg bg border */ | 25 | /* fg bg border */ |
26 | [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, | 26 | [SchemeNorm] = { col_gray4, col_gray2, col_gray2 }, |
27 | [SchemeSel] = { col_gray4, col_cyan, col_cyan }, | 27 | [SchemeSel] = { col_gray3, col_gray2, col_gray2 }, |
28 | [SchemeWarn] = { col_black, col_yellow, col_red }, | 28 | [SchemeWarn] = { col_black, col_yellow, col_red }, |
29 | [SchemeUrgent]= { col_white, col_red, col_red }, | 29 | [SchemeUrgent]= { col_white, col_red, col_red }, |
30 | }; | 30 | }; |