[gnome-shell] theme: Desaturate system color
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] theme: Desaturate system color
- Date: Fri, 29 Jan 2021 22:01:22 +0000 (UTC)
commit 1f3a364ffaf95117996076f3d1c045b36bf13f01
Author: Jakub Steiner <jimmac gmail com>
Date: Fri Jan 8 17:22:45 2021 +0100
theme: Desaturate system color
- avoid the color tint for the system grey background
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1599>
data/theme/gnome-shell-sass/_colors.scss | 1 +
data/theme/gnome-shell-sass/_high-contrast-colors.scss | 1 +
data/theme/gnome-shell-sass/widgets/_overview.scss | 5 ++++-
3 files changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/data/theme/gnome-shell-sass/_colors.scss b/data/theme/gnome-shell-sass/_colors.scss
index 882c25b4e0..9d8f72f2a8 100644
--- a/data/theme/gnome-shell-sass/_colors.scss
+++ b/data/theme/gnome-shell-sass/_colors.scss
@@ -28,6 +28,7 @@ $osd_borders_color: transparentize(black, 0.3);
$osd_outer_borders_color: transparentize(white, 0.84);
$shadow_color: if($variant == 'light', rgba(0,0,0,0.1), rgba(0,0,0,0.2));
+$system_bg_color: desaturate(#241f31,100%); //neutralize the HIG color
//insensitive state derived colors
$insensitive_fg_color: mix($fg_color, $bg_color, 50%);
diff --git a/data/theme/gnome-shell-sass/_high-contrast-colors.scss
b/data/theme/gnome-shell-sass/_high-contrast-colors.scss
index 710179367e..b34e0b182a 100644
--- a/data/theme/gnome-shell-sass/_high-contrast-colors.scss
+++ b/data/theme/gnome-shell-sass/_high-contrast-colors.scss
@@ -26,6 +26,7 @@ $osd_borders_color: rgba(0,0,0, 0.7);
$osd_outer_borders_color: rgba(255,255,255, 0.1);
$shadow_color: rgba(0,0,0, 0.1);
+$system_bg_color: desaturate(#241f31,100%); //neutralize the HIG color
//insensitive state derived colors
$insensitive_fg_color: mix($fg_color, $bg_color, 50%);
diff --git a/data/theme/gnome-shell-sass/widgets/_overview.scss
b/data/theme/gnome-shell-sass/widgets/_overview.scss
index 18497de0e2..b429bcf0c9 100644
--- a/data/theme/gnome-shell-sass/widgets/_overview.scss
+++ b/data/theme/gnome-shell-sass/widgets/_overview.scss
@@ -2,7 +2,10 @@
#overview {
spacing: 24px;
- background-color: transparent;
+}
+
+#overviewGroup {
+ background-color: $system_bg_color;
}
.overview-controls {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]