From 9fefd1fec82f89077965c3e021b0a879e2a97a1f Mon Sep 17 00:00:00 2001 From: aomizu Date: Mon, 9 Jun 2025 14:43:22 +0900 Subject: [PATCH] fixed light mode font --- pkg/ui/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/ui/status.go b/pkg/ui/status.go index 8741443..37b37b1 100644 --- a/pkg/ui/status.go +++ b/pkg/ui/status.go @@ -154,13 +154,13 @@ func updatePlayButtonState() { if playButton != nil && playButtonText != nil { if launchEnabled { playButton.Enable() - // Update text to show enabled state with bright color + // Update text to show enabled state with white color playButtonText.Segments = []widget.RichTextSegment{ &widget.TextSegment{ Text: "PLAY", Style: widget.RichTextStyle{ SizeName: theme.SizeNameHeadingText, - ColorName: theme.ColorNameForeground, + ColorName: theme.ColorNameForegroundOnPrimary, }, }, }