From b4c15d5a7bf7da5d08002736871ebfb3a4486189 Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Mon, 18 Dec 2023 10:21:03 -0330 Subject: [PATCH] style: Fix missing light theme color definitions - Closes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7267 Part-of: --- data/theme/gnome-shell-sass/_drawing.scss | 1 + data/theme/gnome-shell-sass/widgets/_app-grid.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/data/theme/gnome-shell-sass/_drawing.scss b/data/theme/gnome-shell-sass/_drawing.scss index ff404b047..c68238dcb 100644 --- a/data/theme/gnome-shell-sass/_drawing.scss +++ b/data/theme/gnome-shell-sass/_drawing.scss @@ -276,6 +276,7 @@ // Helper mixin for button-like elements with an icon @mixin tile_button($color, $flat: true) { @extend %tile; + color: $color; // focus-color $fc: mix($selected_bg_color, $color, 90%); diff --git a/data/theme/gnome-shell-sass/widgets/_app-grid.scss b/data/theme/gnome-shell-sass/widgets/_app-grid.scss index 0ce848dcb..7286c089a 100644 --- a/data/theme/gnome-shell-sass/widgets/_app-grid.scss +++ b/data/theme/gnome-shell-sass/widgets/_app-grid.scss @@ -122,7 +122,7 @@ $page_indicator_size: 10px; width: $page_indicator_size; height: $page_indicator_size; border-radius: $forced_circular_radius; - background-color: white; + background-color: $system_fg_color; transition-duration: 400ms; } }