From 4eddf262cb585faede5ebd2fb792e444966b678b Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Sat, 4 Mar 2023 10:34:01 -0800 Subject: [PATCH] color adjustments --- ui/theme/theme.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ui/theme/theme.go b/ui/theme/theme.go index 20f29d1..c59e02b 100644 --- a/ui/theme/theme.go +++ b/ui/theme/theme.go @@ -16,13 +16,15 @@ var _ fyne.Theme = (*MyTheme)(nil) func (m MyTheme) Color(name fyne.ThemeColorName, variant fyne.ThemeVariant) color.Color { switch name { case ColorNamePageBackground: - return color.RGBA{R: 20, G: 20, B: 20, A: 255} + return color.RGBA{R: 15, G: 15, B: 15, A: 255} case theme.ColorNameBackground: - return color.RGBA{R: 40, G: 40, B: 40, A: 255} + return color.RGBA{R: 30, G: 30, B: 30, A: 255} case theme.ColorNameScrollBar: return theme.DarkTheme().Color(theme.ColorNameForeground, variant) case theme.ColorNameButton: - return theme.DarkTheme().Color(theme.ColorNameInputBackground, variant) + return color.RGBA{R: 20, G: 20, B: 20, A: 50} + case theme.ColorNameInputBackground: + return color.RGBA{R: 20, G: 20, B: 20, A: 50} } return theme.DarkTheme().Color(name, variant) }