From a513ae04a8f9ea500cc86bee0cd2db91e1e56464 Mon Sep 17 00:00:00 2001 From: Keyoonz Date: Wed, 19 Nov 2025 02:43:32 +0100 Subject: [PATCH] fixed: matugen update making colors weird on wlogout --- .config/matugen/config.toml | 1 + .config/matugen/templates/wlogoutcolors.css | 6 +++--- .config/wlogout/colors.css | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.config/matugen/config.toml b/.config/matugen/config.toml index 0174a98..a686096 100644 --- a/.config/matugen/config.toml +++ b/.config/matugen/config.toml @@ -28,6 +28,7 @@ output_path = '~/.config/swaylock/config' [templates.wlogout] input_path = './templates/wlogoutcolors.css' output_path = '~/.config/wlogout/colors.css' +post_hook = 'sed -i "s/999/0.7/g" ~/.config/wlogout/colors.css' [templates.oh-my-posh] input_path = './templates/config.omp.json' diff --git a/.config/matugen/templates/wlogoutcolors.css b/.config/matugen/templates/wlogoutcolors.css index ae4e7bf..c371ed2 100644 --- a/.config/matugen/templates/wlogoutcolors.css +++ b/.config/matugen/templates/wlogoutcolors.css @@ -1,5 +1,5 @@ -@define-color background {{colors.background.default.rgba | set_alpha: 0.7}}; +@define-color background {{colors.background.default.rgba | set_alpha: 999}}; @define-color primary {{colors.primary.default.hex}}; -@define-color secondary {{colors.secondary.default.hex | set_lightness: -30.0}}; -@define-color tertiary {{colors.tertiary.default.hex | set_lightness: -30.0}}; +@define-color secondary {{colors.secondary.default.hex | lighten: -30.0}}; +@define-color tertiary {{colors.tertiary.default.hex | lighten: -30.0}}; @define-color surface_bright {{colors.surface_bright.default.hex}}; diff --git a/.config/wlogout/colors.css b/.config/wlogout/colors.css index b6e45e8..0c246a0 100644 --- a/.config/wlogout/colors.css +++ b/.config/wlogout/colors.css @@ -1,5 +1,5 @@ -@define-color background rgba(23, 18, 22, 1); +@define-color background rgba(23, 18, 22, 0.7); @define-color primary #f2b3e5; -@define-color secondary #000000; -@define-color tertiary #000000; +@define-color secondary #a45c8e; +@define-color tertiary #e64a1c; @define-color surface_bright #3e373c;