summaryrefslogtreecommitdiff
path: root/modules/dashboard
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dashboard')
-rw-r--r--modules/dashboard/Performance.qml8
-rw-r--r--modules/dashboard/Weather.qml10
2 files changed, 9 insertions, 9 deletions
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
}
}
}