diff --git a/pywal/templates/colors-wal-dwl.h b/pywal/templates/colors-wal-dwl.h index 3f6d186..9c60f77 100644 --- a/pywal/templates/colors-wal-dwl.h +++ b/pywal/templates/colors-wal-dwl.h @@ -5,9 +5,6 @@ (hex & 0xFF) / 255.0f }} 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 }}, -}}; +static const float bordercolor[] = COLOR(0x{color2.strip}ff); +static const float focuscolor[] = COLOR(0x{color1.strip}ff); +static const float urgentcolor[] = COLOR(0x{color3.strip}ff);