switched to river

This commit is contained in:
λmolinae 2025-08-12 23:01:17 -06:00
parent cef35c17b9
commit 292301ce60
204 changed files with 3513 additions and 965 deletions

View file

@ -0,0 +1,5 @@
static uint32_t colors[][3] = {{
/* fg bg */
[SchemeNorm] = {{ 0x{color15.strip}ff, 0x{color0.strip}ff }},
[SchemeSel] = {{ 0x{color15.strip}ff, 0x{color2.strip}ff }},
}};

View file

@ -0,0 +1,9 @@
#define WALLPAPER "{wallpaper}"
static const float rootcolor[] = COLOR(0x{color0.strip}ff);
static uint32_t colors[][3] = {{
/* fg bg border */
[SchemeNorm] = {{ 0x{color15.strip}ff, 0x{color0.strip}ff, 0x{color8.strip}ff }},
[SchemeSel] = {{ 0x{color15.strip}ff, 0x{color2.strip}ff, 0x{color1.strip}ff }},
[SchemeUrg] = {{ 0x{color15.strip}ff, 0x{color1.strip}ff, 0x{color2.strip}ff }},
}};

View file

@ -0,0 +1,6 @@
static uint32_t colors[][2] = {{
/* fg bg */
[SchemeNorm] = {{ 0x{color15.strip}ff, 0x{color0.strip}ff }},
[SchemeSel] = {{ 0x{color15.strip}ff, 0x{color2.strip}ff }},
[SchemeOut] = {{ 0x{color15.strip}ff, 0x{color1.strip}ff }},
}};

View file

@ -0,0 +1,22 @@
wallpaper="{wallpaper}"
background="{background.strip}"
foreground="{foreground.strip}"
curstor="{cursor.strip}"
border="{color8.strip}"
color0="{color0.strip}"
color1="{color1.strip}"
color2="{color2.strip}"
color3="{color3.strip}"
color4="{color4.strip}"
color5="{color5.strip}"
color6="{color6.strip}"
color7="{color7.strip}"
color8="{color8.strip}"
color9="{color9.strip}"
color10="{color10.strip}"
color11="{color11.strip}"
color12="{color12.strip}"
color13="{color13.strip}"
color14="{color14.strip}"
color15="{color15.strip}"