Colors: switched all hovers and focus ring to a more vibrant mSecondary (instead of tertiary)

This commit is contained in:
LemmyCook
2025-08-22 09:11:04 -04:00
parent 7a826bf93f
commit 168500a0b3
12 changed files with 15 additions and 14 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ NPanel {
width: parent.width
height: 32 * scaling
radius: Style.radiusS * scaling
color: selected ? Color.mPrimary : (tabItem.hovering ? Color.mTertiary : Color.transparent)
color: selected ? Color.mPrimary : (tabItem.hovering ? Color.mSecondary : Color.transparent)
readonly property bool selected: index === currentTabIndex
property bool hovering: false
property color tabTextColor: selected ? Color.mOnPrimary : (tabItem.hovering ? Color.mOnTertiary : Color.mOnSurface)