added Pywal base files

This commit is contained in:
zaske
2025-07-13 21:22:04 +02:00
parent 9abffecf31
commit c638dec5c5
29 changed files with 958 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
static const char norm_fg[] = "#f1c3bf";
static const char norm_bg[] = "#0f0d16";
static const char norm_border[] = "#a88885";
static const char sel_fg[] = "#f1c3bf";
static const char sel_bg[] = "#C6394B";
static const char sel_border[] = "#f1c3bf";
static const char urg_fg[] = "#f1c3bf";
static const char urg_bg[] = "#98364A";
static const char urg_border[] = "#98364A";
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 },
};