efficient vim config
[dotfiles/.git] / .local / lib / python3.9 / site-packages / pywal / templates / colors-wal-dwm.h
1 static const char norm_fg[] = "{color15}";
2 static const char norm_bg[] = "{color0}";
3 static const char norm_border[] = "{color8}";
4
5 static const char sel_fg[] = "{color15}";
6 static const char sel_bg[] = "{color2}";
7 static const char sel_border[] = "{color15}";
8
9 static const char urg_fg[] = "{color15}";
10 static const char urg_bg[] = "{color1}";
11 static const char urg_border[] = "{color1}";
12
13 static const char *colors[][3]      = {{
14     /*               fg           bg         border                         */
15     [SchemeNorm] = {{ norm_fg,     norm_bg,   norm_border }}, // unfocused wins
16     [SchemeSel]  = {{ sel_fg,      sel_bg,    sel_border }},  // the focused win
17     [SchemeUrg] =  {{ urg_fg,      urg_bg,    urg_border }},
18 }};