From 125fb5ab7709d45240de90398f01db8ea02bf756 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 4 Jan 2026 03:05:22 -0500 Subject: [PATCH] Align input background with dropdown styling --- internal/ui/components.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/ui/components.go b/internal/ui/components.go index 5f60542..64ba6f0 100644 --- a/internal/ui/components.go +++ b/internal/ui/components.go @@ -55,11 +55,11 @@ func (m *MonoTheme) Color(name fyne.ThemeColorName, variant fyne.ThemeVariant) c newB := uint8(min(int(float64(b>>8)*lightness), 255)) return color.RGBA{R: newR, G: newG, B: newB, A: uint8(a >> 8)} case theme.ColorNameBackground: - // Use dark background for Entry widgets instead of grey - return utils.MustHex("#2B2B2B") + // Match dropdown background tone for panels/inputs + return utils.MustHex("#344256") case theme.ColorNameInputBackground: - // Use slightly lighter dark for Entry input background - return utils.MustHex("#3C3C3C") + // Match dropdown background tone for input fields + return utils.MustHex("#344256") case theme.ColorNameForeground: // Ensure good contrast on dark backgrounds return color.White