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

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Stu Leak 2025-12-31 18:28:39 -05:00
parent 3518e187ee
commit 6cd5e01fbe

View File

@ -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)
}