From 365f4e05310c4a95602ccddac6360fdd20d1ff5f Mon Sep 17 00:00:00 2001 From: Chili Palmer Date: Sat, 21 Mar 2026 09:50:17 +0100 Subject: [PATCH] feat: better visualisation in the fill bar for context --- MLXServer/Views/StatusBarView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLXServer/Views/StatusBarView.swift b/MLXServer/Views/StatusBarView.swift index 2688926..19e2a09 100644 --- a/MLXServer/Views/StatusBarView.swift +++ b/MLXServer/Views/StatusBarView.swift @@ -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 }