From 86d8fe4fa418969505a9b72af8f191b48306e12a Mon Sep 17 00:00:00 2001 From: Viet Dinh <36768030+Desdaemon@users.noreply.github.com> Date: Wed, 25 Mar 2026 09:12:41 -0400 Subject: [PATCH] fix: pywalfox light theme template (#2075) The current template doesn't work for an OOTB config of pywalfox without manual configuration. This commit fixes the colors to work better with its defaults. --- .../matugen/templates/pywalfox-colors.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/quickshell/matugen/templates/pywalfox-colors.json b/quickshell/matugen/templates/pywalfox-colors.json index 9ddf17fa..bf0538bc 100644 --- a/quickshell/matugen/templates/pywalfox-colors.json +++ b/quickshell/matugen/templates/pywalfox-colors.json @@ -2,21 +2,21 @@ "wallpaper": "{{image}}", "alpha": "100", "colors": { - "color0": "{{colors.background.default.hex}}", - "color1": "", - "color2": "", - "color3": "", - "color4": "", - "color5": "", - "color6": "", - "color7": "", - "color8": "", - "color9": "", - "color10": "{{colors.primary.default.hex}}", - "color11": "", - "color12": "", - "color13": "{{colors.surface_bright.default.hex}}", - "color14": "", - "color15": "{{colors.on_surface.default.hex}}" + "color0": "{{colors.background.dark.hex}}", + "color1": "{{colors.surface_container_highest.light.hex}}", + "color2": "{{colors.surface_container_lowest.light.hex}}", + "color3": "{{colors.primary.light.hex}}", + "color4": "{{colors.tertiary_fixed.default.hex}}", + "color5": "{{colors.secondary.light.hex}}", + "color6": "{{colors.on_tertiary_fixed.default.hex}}", + "color7": "{{colors.surface_dim.light.hex}}", + "color8": "{{colors.on_secondary.light.hex}}", + "color9": "{{colors.error_container.default.hex}}", + "color10": "{{colors.primary.dark.hex}}", + "color11": "{{colors.on_error_container.default.hex}}", + "color12": "{{colors.on_primary_fixed_variant.default.hex}}", + "color13": "{{colors.secondary.dark.hex}}", + "color14": "{{colors.inverse_primary.default.hex}}", + "color15": "{{colors.on_surface.dark.hex}}" } }