From 877c692671a1b8840d8a23145550f4ce612647b9 Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Mon, 5 Feb 2024 12:09:57 -0330 Subject: [PATCH] style: Fix incorrectly defined color Part-of: --- data/theme/gnome-shell-sass/_default-colors.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/_default-colors.scss b/data/theme/gnome-shell-sass/_default-colors.scss index 72588d8f4..6c700871f 100644 --- a/data/theme/gnome-shell-sass/_default-colors.scss +++ b/data/theme/gnome-shell-sass/_default-colors.scss @@ -16,7 +16,7 @@ $success_color: $success_bg_color; $warning_bg_color: if($variant == 'light', $yellow_4, $yellow_3); $warning_fg_color: transparentize(black, .2); -$warning_color: $success_bg_color; +$warning_color: $warning_bg_color; $error_bg_color: if($variant == 'light', $red_3, $red_4); $error_fg_color: $light_1;