diff --git a/Modules/AppLauncher/AppLauncher.qml b/Modules/AppLauncher/AppLauncher.qml index f7f19b2..aef7dd9 100644 --- a/Modules/AppLauncher/AppLauncher.qml +++ b/Modules/AppLauncher/AppLauncher.qml @@ -455,7 +455,7 @@ NLoader { text: modelData.name || "Unknown" font.pointSize: 14 * scaling font.weight: Font.Bold - color: (appCardArea.containsMouse || isSelected) ? Colors.backgroundPrimary : Colors.textPrimary + color: Colors.textPrimary elide: Text.ElideRight Layout.fillWidth: true } @@ -466,7 +466,7 @@ NLoader { modelData.isCommand ? modelData.content : (modelData.genericName || modelData.comment || "") font.pointSize: 11 * scaling - color: (appCardArea.containsMouse || isSelected) ? Colors.backgroundPrimary : Colors.textSecondary + color: (appCardArea.containsMouse || isSelected) ? Colors.textPrimary : Colors.textSecondary elide: Text.ElideRight Layout.fillWidth: true visible: text !== "" diff --git a/Modules/SidePanel/PowerMenu.qml b/Modules/SidePanel/PowerMenu.qml index d11f3e5..2815fc5 100644 --- a/Modules/SidePanel/PowerMenu.qml +++ b/Modules/SidePanel/PowerMenu.qml @@ -88,7 +88,7 @@ NPanel { font.variableAxes: { "wght": (Font.Normal + Font.Bold) / 2.0 } - color: lockButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: lockButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -96,7 +96,7 @@ NPanel { Text { text: "Lock Screen" - color: lockButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: lockButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -148,7 +148,7 @@ NPanel { font.variableAxes: { "wght": (Font.Normal + Font.Bold) / 2.0 } - color: suspendButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: suspendButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -156,7 +156,7 @@ NPanel { Text { text: "Suspend" - color: suspendButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: suspendButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -206,7 +206,7 @@ NPanel { font.variableAxes: { "wght": (Font.Normal + Font.Bold) / 2.0 } - color: rebootButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: rebootButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -214,7 +214,7 @@ NPanel { Text { text: "Reboot" - color: rebootButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: rebootButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -264,7 +264,7 @@ NPanel { font.variableAxes: { "wght": (Font.Normal + Font.Bold) / 2.0 } - color: logoutButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: logoutButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -272,7 +272,7 @@ NPanel { Text { text: "Logout" - color: logoutButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: logoutButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -322,7 +322,7 @@ NPanel { font.variableAxes: { "wght": (Font.Normal + Font.Bold) / 2.0 } - color: shutdownButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: shutdownButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling @@ -330,7 +330,7 @@ NPanel { Text { text: "Shutdown" - color: shutdownButtonArea.containsMouse ? Colors.onAccent : Colors.textPrimary + color: shutdownButtonArea.containsMouse ? Colors.textPrimary : Colors.textPrimary verticalAlignment: Text.AlignVCenter anchors.verticalCenter: parent.verticalCenter anchors.verticalCenterOffset: 1 * scaling