feat: better visualisation in the fill bar for context

This commit is contained in:
2026-03-21 09:50:17 +01:00
parent 32bbf3f204
commit 365f4e0531

View File

@@ -108,7 +108,7 @@ struct StatusBarView: View {
private func contextFillColor(for ratio: Double) -> Color {
if ratio >= 0.9 { return .red }
if ratio >= 0.7 { return .orange }
if ratio >= 0.7 { return .yellow }
return .blue
}