From 219e7f9914edc5a2182cdfa38ab852579922bbac Mon Sep 17 00:00:00 2001 From: ging-dev Date: Sat, 5 Apr 2025 10:26:27 +0700 Subject: [PATCH] fix: Theme parser error --- src/sass/gtk/_common-4.0.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sass/gtk/_common-4.0.scss b/src/sass/gtk/_common-4.0.scss index f67a1a2b..98d71040 100644 --- a/src/sass/gtk/_common-4.0.scss +++ b/src/sass/gtk/_common-4.0.scss @@ -1516,7 +1516,7 @@ button.link { } &:hover { - color: HSL(from $link_color h calc(s * 1.1) calc(l * 1.1)); + color: hsl(hue($link_color), saturation($link_color) * 1.1, lightness($link_color) * 1.1); } &:active { @@ -3265,7 +3265,7 @@ $switch_animation: switch_ripple_effect 0.1s cubic-bezier(0, 0, 0.2, 1); to { background-image: $switch_checked_image, radial-gradient(circle farthest-corner at center, - RGB($selected_bg_color, 75%) 100%, + rgba($selected_bg_color, 0.75) 100%, transparent 0%); } }