archy-dwm/src/colors.h

24 lines
754 B
C
Raw Normal View History

2022-07-18 04:28:01 +00:00
#ifndef colors_H
#define colors_H
2022-07-17 12:54:22 +00:00
static const char norm_fg[] = "#e4ded4";
2022-08-02 09:59:09 +00:00
static const char norm_bg[] = "#191b1f";
static const char norm_border[] = "#282c34";
2022-07-17 12:54:22 +00:00
static const char sel_fg[] = "#e4ded4";
2022-08-02 09:59:09 +00:00
static const char sel_bg[] = "#3f2124";
2022-07-17 12:54:22 +00:00
static const char sel_border[] = "#e4ded4";
static const char urg_fg[] = "#e4ded4";
2022-08-02 09:59:09 +00:00
static const char urg_bg[] = "#313036";
static const char urg_border[] = "#312e36";
2022-07-17 12:54:22 +00:00
2022-10-31 11:32:01 +00:00
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = {norm_fg, norm_bg, norm_border}, // unfocused wins
[SchemeSel] = {sel_fg, sel_bg, sel_border}, // the focused win
[SchemeUrg] = {urg_fg, urg_bg, urg_border},
2022-07-17 12:54:22 +00:00
};
2022-07-18 04:28:01 +00:00
2022-10-31 11:32:01 +00:00
#endif // colors_H