From c0343aaaefc14dbe015d0a0bbfe92e05685f3ae9 Mon Sep 17 00:00:00 2001 From: Eugen Fischer Date: Tue, 19 Mar 2024 13:58:32 +0100 Subject: [PATCH] Fixed colors --- src/gui/tray/Window.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 7257e7627ca2d..be073dc2687f7 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -41,21 +41,21 @@ ApplicationWindow { // TODO: Rather than setting all these palette colours manually, // create a custom style and do it for all components globally palette { - text: Style.ncTextColor - windowText: Style.ncTextColor - buttonText: Style.ncTextColor - brightText: Style.ncTextBrightColor + text: Style.nmcTrayWindowHeaderTextColor + windowText: Style.nmcTrayWindowHeaderTextColor + buttonText: Style.nmcTrayWindowHeaderTextColor + brightText: Style.nmcTrayWindowHeaderTextColor highlight: Style.lightHover - highlightedText: Style.ncTextColor + highlightedText: Style.nmcTrayWindowHeaderTextColor light: Style.lightHover - midlight: Style.ncSecondaryTextColor + midlight: Style.nmcTrayWindowHeaderTextColor mid: Style.darkerHover dark: Style.menuBorder button: Style.buttonBackgroundColor window: Style.backgroundColor base: Style.backgroundColor toolTipBase: Style.backgroundColor - toolTipText: Style.ncTextColor + toolTipText: Style.nmcTrayWindowHeaderTextColor } readonly property int maxMenuHeight: Style.trayWindowHeight - Style.trayWindowHeaderHeight - 2 * Style.trayWindowBorderWidth