From 2c610258d196f11f9dd48388d905ddf8954ac0f8 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 19:57:29 +0100 Subject: [PATCH] ux: use primary text color in display label --- apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift index a3a481128..5231a58b7 100644 --- a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift +++ b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift @@ -453,7 +453,7 @@ private struct VibrantLabelView: NSViewRepresentable { label.cell?.isScrollable = false label.setContentHuggingPriority(.defaultLow, for: .horizontal) label.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) - label.textColor = .labelColor + label.textColor = .textColor let container = ClickCatcher(onTap: onTap) container.addSubview(label)