Brighter low free space colors.

This commit is contained in:
2026-02-04 20:40:59 +00:00
parent 87e1443e7d
commit 3d8845cf99
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -157,8 +157,8 @@ const freeColor = computed(() => {
if (!s.disk) return '#6c6'
const freePct = s.free / s.disk
if (freePct > 0.25) return '#5b5'
if (freePct > 0.10) return '#db3'
return '#d44'
if (freePct > 0.10) return '#ff0'
return '#f00'
})
const PIE_RADIUS = 55