archy-dwm/src/colors.h

30 lines
890 B
C
Raw Normal View History

2022-07-18 04:28:01 +00:00
#ifndef colors_H
#define colors_H
// #define wal "/home/anas/.cache/wal/colors-wal-dwm.h"
2022-07-17 12:54:22 +00:00
// #if __has_include(wal)
// #include wal
// #else
2022-07-17 12:54:22 +00:00
static const char norm_fg[] = "#e4ded4";
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";
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";
static const char urg_bg[] = "#313036";
static const char urg_border[] = "#312e36";
2022-07-17 12:54:22 +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
};
// #endif
2022-07-18 04:28:01 +00:00
#endif // !colors.h