From 4d56e9b6917ddda88f379218ce40823e9b8f118c Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 31 Dec 2025 18:28:39 -0500 Subject: [PATCH] fix(ui): Revert button colors to original grey style - Removed bright hover color override for buttons and inputs - Buttons now use default grey with subtle outline styling - Fixes overly bright appearance in module header bars - View Queue and navigation buttons now match original design --- internal/ui/components.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/ui/components.go b/internal/ui/components.go index c71761a..db10da9 100644 --- a/internal/ui/components.go +++ b/internal/ui/components.go @@ -44,12 +44,6 @@ func (m *MonoTheme) Color(name fyne.ThemeColorName, variant fyne.ThemeVariant) c case theme.ColorNameHover: // Use the default selection color for hover return theme.DefaultTheme().Color(theme.ColorNameSelection, variant) - case theme.ColorNameButton: - // Use hover color as default button background - return theme.DefaultTheme().Color(theme.ColorNameHover, variant) - case theme.ColorNameInputBackground: - // Use hover color as default input background (for dropdowns/entries) - return theme.DefaultTheme().Color(theme.ColorNameHover, variant) } return theme.DefaultTheme().Color(name, variant) }