diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-03-17 14:18:18 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-17 14:18:18 -0400 |
| commit | 76b2b96be41d276505b4346433a1bcd7adb9d004 (patch) | |
| tree | 9c51af9081cfcea3276e92ceb32f89ffb0e44af1 /modules/dashboard/Performance.qml | |
| parent | fix workspace indicator offset (diff) | |
| download | caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.gz caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.bz2 caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.zip | |
Diffstat (limited to 'modules/dashboard/Performance.qml')
| -rw-r--r-- | modules/dashboard/Performance.qml | 8 |
1 files changed, 4 insertions, 4 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 } } |