summaryrefslogtreecommitdiff
path: root/modules/dashboard/Weather.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-03-17 14:18:18 -0400
committerFreya Murphy <freya@freyacat.org>2026-03-17 14:18:18 -0400
commit76b2b96be41d276505b4346433a1bcd7adb9d004 (patch)
tree9c51af9081cfcea3276e92ceb32f89ffb0e44af1 /modules/dashboard/Weather.qml
parentfix workspace indicator offset (diff)
downloadcaelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.gz
caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.bz2
caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.zip
remove tertiary colorHEADmain
Diffstat (limited to 'modules/dashboard/Weather.qml')
-rw-r--r--modules/dashboard/Weather.qml10
1 files changed, 5 insertions, 5 deletions
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
}
}
}