Files
Dotfiles/Pywal/colors-wal-dwm.h
T

14 lines
532 B
C

static const char norm_fg[] = "#c3c5c8";
static const char norm_bg[] = "#101725";
static const char norm_border[] = "#5f6674";
static const char sel_fg[] = "#c3c5c8";
static const char sel_bg[] = "#4C4D4F";
static const char sel_border[] = "#c3c5c8";
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
};