switch to material you colors entirely

This commit is contained in:
lucy 2026-01-22 19:05:20 +01:00
parent bf61bd3a0e
commit 2aea6d3a2c
6 changed files with 10 additions and 7 deletions

View File

@ -29,7 +29,7 @@ Variants {
id: container id: container
implicitHeight: Settings.config.barHeight implicitHeight: Settings.config.barHeight
anchors.fill: parent anchors.fill: parent
color: Colors.background color: Colors.surface
radius: implicitHeight / 2 radius: implicitHeight / 2
Row { Row {

View File

@ -97,7 +97,7 @@ Loader {
ColorOverlay { ColorOverlay {
anchors.fill: parent anchors.fill: parent
source: rawProfileIcon source: rawProfileIcon
color: Colors.foreground color: Colors.onSurfaceColor
} }
} }
} }

View File

@ -43,7 +43,7 @@ Item {
CustomText { CustomText {
anchors.centerIn: workspaceNumber anchors.centerIn: workspaceNumber
text: parent.modelData.id text: parent.modelData.id
color: Colors.color2 // Set contrasting color for workspace number color: Colors.primary // Set contrasting color for workspace number
opacity: workspaceNumber.modelData.focused ? 1 : 0.5 opacity: workspaceNumber.modelData.focused ? 1 : 0.5
} }
MouseArea { MouseArea {

View File

@ -34,13 +34,15 @@ FloatingWindow {
ColumnLayout { ColumnLayout {
id: windowLayout id: windowLayout
spacing: 10
anchors.fill: parent anchors.fill: parent
Rectangle { Rectangle {
id: textWrapper id: textWrapper
Layout.fillWidth: true Layout.fillWidth: true
Layout.margins: 20 Layout.margins: 10
Layout.alignment: Qt.AlignCenter Layout.alignment: Qt.AlignCenter
Layout.bottomMargin: 0
radius: 14 radius: 14
implicitHeight: 30 implicitHeight: 30
color: Colors.color6 color: Colors.color6
@ -53,9 +55,10 @@ FloatingWindow {
Rectangle { Rectangle {
id: innerWindow id: innerWindow
Layout.topMargin: 0
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true Layout.fillHeight: true
Layout.margins: 20 Layout.margins: 10
radius: 14 radius: 14
color: Colors.color8 color: Colors.color8
GridView { GridView {

View File

@ -6,7 +6,7 @@ Text {
property real fill: 1 property real fill: 1
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
font.family: "Material Icons Sharp" font.family: "Material Icons Sharp"
color: Colors.foreground color: Colors.onSurfaceColor
font.variableAxes: ({ font.variableAxes: ({
FILL: fill.toFixed(1), FILL: fill.toFixed(1),
GRAD: -25, GRAD: -25,

View File

@ -3,7 +3,7 @@ import qs
import qs.settings import qs.settings
Text { Text {
color: Colors.foreground color: Colors.onSurfaceColor
font.family: Settings.config.font font.family: Settings.config.font
font.pixelSize: Settings.config.fontSize font.pixelSize: Settings.config.fontSize
font.variableAxes: ({ font.variableAxes: ({