From dfafe9755918ad5cc84e40acab4b01b98836a717 Mon Sep 17 00:00:00 2001 From: Ales Kutsepau Date: Wed, 22 Apr 2026 10:47:32 +0200 Subject: [PATCH] Lightened the disabled foreground color in dark theme --- src/EasyApp/Gui/Style/Colors.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EasyApp/Gui/Style/Colors.qml b/src/EasyApp/Gui/Style/Colors.qml index 2923e3f3..84cab14e 100644 --- a/src/EasyApp/Gui/Style/Colors.qml +++ b/src/EasyApp/Gui/Style/Colors.qml @@ -50,7 +50,7 @@ QtObject { property color themeForeground: isDarkPalette ? "#eee" : "#333" property color themeForegroundMinor: isDarkPalette ? "#888" : "#aaa" - property color themeForegroundDisabled: isDarkPalette ? "#555": "#bbb" // control.Material.hintTextColor + property color themeForegroundDisabled: isDarkPalette ? "#666": "#bbb" // control.Material.hintTextColor property color themeForegroundHovered: themeAccent property color themeForegroundHighlight: isDarkPalette ? '#FFAB91' : '#FF5722'