From f671a4b23ffd4f246e7fff95ecb7bbe4a70ceedd Mon Sep 17 00:00:00 2001 From: Stephan Beyer Date: Fri, 19 Jun 2020 22:38:34 +0200 Subject: [PATCH] Darken menu border color The lightgray menu border color #ededed introduced in commit f147e5a66f43657805542904b43e0b4e662ffe04 (by PR #2095) is way too light for my display (and probably others). Thus the menus have no clear border which looks odd and broken. This commit simply darkens the menu border to #bdbdbd, which coincides with the (current default) color of the menu separator. Signed-off-by: Stephan Beyer --- theme/Style/Style.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 09e7bd991..8909c6377 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -8,7 +8,7 @@ QtObject { property color ncBlue: "#0082c9" property color ncBlueHover: "#009dd9" property color lightHover: "#f7f7f7" - property color menuBorder: "#ededed" + property color menuBorder: "#bdbdbd" // Fonts // We are using pixel size because this is cross platform comparable, point size isn't