From 6e13ce396835db0adf7722e1e31bb8880b93e789 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 14 May 2020 18:03:24 -0400 Subject: [PATCH] Fix status bar colors on light backgrouds --- ui/ui.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ui/ui.go b/ui/ui.go index 6c68751..c72a72b 100644 --- a/ui/ui.go +++ b/ui/ui.go @@ -22,8 +22,9 @@ const ( ) var ( - statusBarBg = common.NewColorPair("#242424", "#F4F0F4") - statusBarFg = common.NewColorPair("#5A5A5A", "") + glowLogoTextColor = common.Color("#ECFD65") + statusBarBg = common.NewColorPair("#242424", "#E6E6E6") + statusBarFg = common.NewColorPair("#5A5A5A", "#949494") ) // NewProgram returns a new Boba program @@ -263,7 +264,7 @@ func statusBarView(m model) string { logoText := " Glow " logo := te.String(logoText). Bold(). - Foreground(common.YellowGreen.Color()). + Foreground(glowLogoTextColor). Background(common.Fuschia.Color()). String()