From deff8d00b90e2fbcf86c584d06cf41103d6a1daf Mon Sep 17 00:00:00 2001 From: lucy Date: Sat, 14 Feb 2026 12:45:52 +0100 Subject: [PATCH] revert colors --- modules/bar/Workspaces.qml | 1 - reusables/CustomIcon.qml | 2 +- reusables/CustomText.qml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/bar/Workspaces.qml b/modules/bar/Workspaces.qml index 64fe313..3ca1ccb 100644 --- a/modules/bar/Workspaces.qml +++ b/modules/bar/Workspaces.qml @@ -54,7 +54,6 @@ Rectangle { verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter text: parent.modelData.id - color: Colors.primary opacity: workspaceNumber.modelData.focused ? 1 : 0.5 } MouseArea { diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 1b6a6fc..d0aad4e 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -4,7 +4,7 @@ import qs.settings Text { id: root - color: Colors.primary + color: Colors.onSurfaceColor property real iconSize: 16 property real fill: 1 property real truncatedFill: fill.toFixed(1) // Reduce memory consumption spikes from constant font remapping diff --git a/reusables/CustomText.qml b/reusables/CustomText.qml index 14df9fe..643af2f 100644 --- a/reusables/CustomText.qml +++ b/reusables/CustomText.qml @@ -3,7 +3,7 @@ import qs import qs.settings Text { - color: Colors.primary + color: Colors.onSurfaceColor font.family: Settings.config.font font.pixelSize: Settings.config.fontSize font.weight: Settings.config.fontWeight