change color of active ws text to look better

This commit is contained in:
lucy 2026-02-09 22:29:41 +01:00
parent 1ea03dcb3a
commit 4038309a4d

View File

@ -53,7 +53,7 @@ Rectangle {
CustomText { CustomText {
anchors.centerIn: workspaceNumber anchors.centerIn: workspaceNumber
text: parent.modelData.id text: parent.modelData.id
color: Colors.onSurfaceColor color: modelData.focused ? Colors.onPrimaryColor : Colors.onSurfaceColor
opacity: workspaceNumber.modelData.focused ? 1 : 0.5 opacity: workspaceNumber.modelData.focused ? 1 : 0.5
} }
MouseArea { MouseArea {