From d911b6689cbb004df14d256e1f76e889a62ed8cb Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Tue, 11 Jun 2024 19:09:23 +0200 Subject: [PATCH] ui/background: Update default bg color To match system_base_color from the theme See https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3367#note_2137704 for context Part-of: --- js/ui/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/background.js b/js/ui/background.js index 959061308..c1b2a4b46 100644 --- a/js/ui/background.js +++ b/js/ui/background.js @@ -107,7 +107,7 @@ import * as LoginManager from '../misc/loginManager.js'; import * as Main from './main.js'; import * as Params from '../misc/params.js'; -const DEFAULT_BACKGROUND_COLOR = new Clutter.Color({red: 46, green: 52, blue: 54, alpha: 255}); +const DEFAULT_BACKGROUND_COLOR = new Clutter.Color({red: 40, green: 40, blue: 40, alpha: 255}); const BACKGROUND_SCHEMA = 'org.gnome.desktop.background'; const PRIMARY_COLOR_KEY = 'primary-color';