From f147e5a66f43657805542904b43e0b4e662ffe04 Mon Sep 17 00:00:00 2001 From: Kevin Ottens Date: Mon, 15 Jun 2020 19:06:59 +0200 Subject: [PATCH] Don't use a bright blue color for menus As advised, use a light gray instead, this electric blue was a bit too much. Signed-off-by: Kevin Ottens --- src/gui/tray/UserLine.qml | 2 +- src/gui/tray/Window.qml | 6 +++--- theme/Style/Style.qml | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/gui/tray/UserLine.qml b/src/gui/tray/UserLine.qml index 6b0494035..706eccb49 100644 --- a/src/gui/tray/UserLine.qml +++ b/src/gui/tray/UserLine.qml @@ -133,7 +133,7 @@ MenuItem { width: 120 background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: 2 } diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 5f646621b..ddbd5594a 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -83,7 +83,7 @@ Window { anchors.fill: parent radius: Style.trayWindowRadius border.width: Style.trayWindowBorderWidth - border.color: Style.ncBlue + border.color: Style.menuBorder Rectangle { id: trayWindowHeaderBackground @@ -152,7 +152,7 @@ Window { closePolicy: "CloseOnPressOutside" background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: Style.currentAccountButtonRadius } @@ -400,7 +400,7 @@ Window { closePolicy: "CloseOnPressOutside" background: Rectangle { - border.color: Style.ncBlue + border.color: Style.menuBorder radius: 2 } diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 7f6774214..09e7bd991 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -8,6 +8,7 @@ QtObject { property color ncBlue: "#0082c9" property color ncBlueHover: "#009dd9" property color lightHover: "#f7f7f7" + property color menuBorder: "#ededed" // Fonts // We are using pixel size because this is cross platform comparable, point size isn't -- 2.30.2