diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/bar/components/Clock.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/OsIcon.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/TrayItem.qml | 2 | ||||
| -rw-r--r-- | modules/dashboard/Performance.qml | 8 | ||||
| -rw-r--r-- | modules/dashboard/Weather.qml | 10 |
6 files changed, 13 insertions, 13 deletions
diff --git a/modules/bar/components/Clock.qml b/modules/bar/components/Clock.qml index 662e837..f44f9db 100644 --- a/modules/bar/components/Clock.qml +++ b/modules/bar/components/Clock.qml @@ -8,7 +8,7 @@ import QtQuick StyledRect { id: root - readonly property color colour: Colours.palette.m3tertiary + readonly property color colour: Colours.palette.m3secondary readonly property int padding: Appearance.padding.normal implicitWidth: Config.bar.sizes.innerWidth diff --git a/modules/bar/components/OsIcon.qml b/modules/bar/components/OsIcon.qml index 6710294..2d2eea3 100644 --- a/modules/bar/components/OsIcon.qml +++ b/modules/bar/components/OsIcon.qml @@ -40,7 +40,7 @@ Item { ColouredIcon { source: SysInfo.osLogo implicitSize: Math.round(Appearance.font.size.large * 1.2) - colour: Colours.palette.m3tertiary + colour: Colours.palette.m3primary } } } diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index ca7dc2e..ef0db3d 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -13,7 +13,7 @@ import QtQuick.Layouts StyledRect { id: root - property color colour: Colours.palette.m3secondary + property color colour: Colours.palette.m3primary readonly property alias items: iconColumn color: Colours.tPalette.m3surfaceContainer diff --git a/modules/bar/components/TrayItem.qml b/modules/bar/components/TrayItem.qml index 9911907..c8bb9af 100644 --- a/modules/bar/components/TrayItem.qml +++ b/modules/bar/components/TrayItem.qml @@ -28,7 +28,7 @@ MouseArea { anchors.fill: parent source: Icons.getTrayIcon(root.modelData.id, root.modelData.icon) - colour: Colours.palette.m3secondary + colour: Colours.palette.m3primary layer.enabled: Config.bar.tray.recolour } } diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml index 377f867..5d57e83 100644 --- a/modules/dashboard/Performance.qml +++ b/modules/dashboard/Performance.qml @@ -130,7 +130,7 @@ Item { const totalFmt = SystemUsage.formatKib(SystemUsage.memTotal); return `${usedFmt.value.toFixed(1)} / ${Math.floor(totalFmt.value)} ${totalFmt.unit}`; } - accentColor: Colours.palette.m3tertiary + accentColor: Colours.palette.m3primary visible: Config.dashboard.performance.showMemory } @@ -689,7 +689,7 @@ Item { line1Color: Colours.palette.m3secondary line1FillAlpha: 0.15 line2: NetworkUsage.downloadBuffer - line2Color: Colours.palette.m3tertiary + line2Color: Colours.palette.m3primary line2FillAlpha: 0.2 maxValue: smoothMax historyLength: NetworkUsage.historyLength @@ -738,7 +738,7 @@ Item { MaterialIcon { text: "download" - color: Colours.palette.m3tertiary + color: Colours.palette.m3primary font.pointSize: Appearance.font.size.normal } @@ -759,7 +759,7 @@ Item { } font.pointSize: Appearance.font.size.normal font.weight: Font.Medium - color: Colours.palette.m3tertiary + color: Colours.palette.m3primary } } diff --git a/modules/dashboard/Weather.qml b/modules/dashboard/Weather.qml index d66137b..0e39f88 100644 --- a/modules/dashboard/Weather.qml +++ b/modules/dashboard/Weather.qml @@ -53,14 +53,14 @@ Item { icon: "wb_twilight" label: "Sunrise" value: Weather.sunrise - colour: Colours.palette.m3tertiary + colour: Colours.palette.m3secondary } WeatherStat { icon: "bedtime" label: "Sunset" value: Weather.sunset - colour: Colours.palette.m3tertiary + colour: Colours.palette.m3secondary } } } @@ -121,13 +121,13 @@ Item { icon: "thermostat" label: "Feels Like" value: Weather.feelsLike - colour: Colours.palette.m3primary + colour: Colours.palette.m3secondary } DetailCard { icon: "air" label: "Wind" value: Weather.windSpeed ? Weather.windSpeed + " km/h" : "--" - colour: Colours.palette.m3tertiary + colour: Colours.palette.m3secondary } } @@ -196,7 +196,7 @@ Item { Layout.alignment: Qt.AlignHCenter text: Config.services.useFahrenheit ? forecastItem.modelData.maxTempF + "°" + " / " + forecastItem.modelData.minTempF + "°" : forecastItem.modelData.maxTempC + "°" + " / " + forecastItem.modelData.minTempC + "°" font.weight: 600 - color: Colours.palette.m3tertiary + color: Colours.palette.m3primary } } } |