From 082e33a4882d92accf2aabcc320a38deec91716f Mon Sep 17 00:00:00 2001 From: Ales Kutsepau Date: Mon, 16 Mar 2026 12:07:16 +0100 Subject: [PATCH] Added a minor theme accent for selections --- src/EasyApp/Gui/Style/Colors.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/EasyApp/Gui/Style/Colors.qml b/src/EasyApp/Gui/Style/Colors.qml index b826ecf1..2923e3f3 100644 --- a/src/EasyApp/Gui/Style/Colors.qml +++ b/src/EasyApp/Gui/Style/Colors.qml @@ -40,6 +40,7 @@ QtObject { onIsDarkPaletteChanged: console.debug(`Is dark palette: ${isDarkPalette}`) property color themeAccent: isDarkPalette ? "#4ec1ef": "#00a3e3" + property color themeAccentMinor: isDarkPalette ? "#4d9dbd" : "#8ad6ed" property color themePrimary: isDarkPalette ? "#111" : "#bbb" property color themeBackground: isDarkPalette ? "#303030" : "#e9e9e9"