From cdad265f1d48a1cf8d480476a2d804c97affc690 Mon Sep 17 00:00:00 2001 From: austinpower1258 Date: Thu, 26 Feb 2026 15:12:10 -0800 Subject: [PATCH] Fix selected-workspace status contrast --- Sources/ContentView.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/ContentView.swift b/Sources/ContentView.swift index 3962d41e..1ccae601 100644 --- a/Sources/ContentView.swift +++ b/Sources/ContentView.swift @@ -7470,6 +7470,11 @@ private struct SidebarMetadataEntryRow: View { } private var foregroundColor: Color { + if isActive, + let raw = entry.color, + Color(hex: raw) != nil { + return Color(nsColor: sidebarSelectedWorkspaceForegroundNSColor(opacity: 0.95)) + } if let raw = entry.color, let explicit = Color(hex: raw) { return explicit }