style: soften hover hud status dot

This commit is contained in:
Peter Steinberger 2025-12-20 15:20:08 +01:00
parent 2963294d9a
commit 039c59a62d

View File

@ -260,7 +260,9 @@ private struct HoverHUDView: View {
}
private var dotColor: Color {
if self.activityStore.iconState.isWorking { return .green }
if self.activityStore.iconState.isWorking {
return Color(nsColor: NSColor.systemGreen.withAlphaComponent(0.7))
}
return .secondary
}