diff options
Diffstat (limited to 'modules/dashboard/Weather.qml')
| -rw-r--r-- | modules/dashboard/Weather.qml | 10 |
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 } } } |