From 7ec1f42edef0e9824652861207843b0990e6f6f9 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sat, 1 Nov 2025 00:00:06 -0400 Subject: [PATCH] Hover colors: be reasonable in light mode. --- Commons/Color.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Commons/Color.qml b/Commons/Color.qml index ccbd906b0..06c3436c7 100644 --- a/Commons/Color.qml +++ b/Commons/Color.qml @@ -45,8 +45,8 @@ Singleton { property color transparent: "transparent" // Extra colors that are auto generated - readonly property color mHover: Settings.data.colorSchemes.darkMode ? Qt.darker(mOnSurface, 1.25) : Qt.lighter(mOnSurface, 3.0) - readonly property color mOnHover: Settings.data.colorSchemes.darkMode ? Qt.darker(mSurface, 1.25) : Qt.lighter(mSurface, 3.0) + readonly property color mHover: Settings.data.colorSchemes.darkMode ? Qt.darker(mOnSurface, 1.25) : Qt.lighter(mOnSurface, 1.25) + readonly property color mOnHover: Settings.data.colorSchemes.darkMode ? Qt.darker(mSurface, 1.25) : Qt.lighter(mSurface, 1.25) // -------------------------------- // Default colors: RosePine