style: Sync base grey colors with libadwaita

Closes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/8058
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3552>
This commit is contained in:
Sam Hewitt 2024-11-18 16:11:37 -03:30 committed by Marge Bot
parent eeddf49371
commit c072f7c10c
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
// global colors
$base_color: if($variant == 'light', $light_1, $_base_color_dark);
$bg_color: if($variant == 'light', $_base_color_light, lighten($base_color, 5%));
$bg_color: if($variant == 'light', $_base_color_light, #36363a);
$fg_color: if($variant == 'light', $_base_color_dark, $light_1);
// OSD elements

View File

@ -1,8 +1,8 @@
// Named Colors
// base colors
$_base_color_dark: desaturate($dark_4, 100%);
$_base_color_light: desaturate($light_2, 100%);
$_base_color_dark: #222226;
$_base_color_light: #fafafb;
// colors for destructive elements
$destructive_bg_color: if($variant == 'light', $red_3, $red_4);