From 19870f74e8943bf6c3a48994a4affaa23e8b2f2e Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 13 Jun 2022 10:37:56 -0400 Subject: [PATCH] fix(ui): styles on light terminal backgrounds --- ui/styles/styles.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ui/styles/styles.go b/ui/styles/styles.go index ad217fedc8c03ea15048c404e73d8ec1bbf320c6..b668ee155a7156387831dbf1307da8bc53851dc0 100644 --- a/ui/styles/styles.go +++ b/ui/styles/styles.go @@ -110,7 +110,6 @@ func DefaultStyles() *Styles { Margin(1, 2) s.Header = lipgloss.NewStyle(). - Foreground(lipgloss.Color("15")). Align(lipgloss.Left). Height(1). PaddingLeft(1). @@ -205,12 +204,10 @@ func DefaultStyles() *Styles { BorderForeground(lipgloss.Color("238")) s.RepoHeaderName = lipgloss.NewStyle(). - Foreground(lipgloss.Color("15")). Bold(true) s.RepoHeaderDesc = lipgloss.NewStyle(). - Faint(true). - Foreground(lipgloss.Color("15")) + Faint(true) s.Footer = lipgloss.NewStyle(). MarginTop(1). @@ -381,8 +378,7 @@ func DefaultStyles() *Styles { s.Tabs = lipgloss.NewStyle() - s.TabInactive = lipgloss.NewStyle(). - Foreground(lipgloss.Color("15")) + s.TabInactive = lipgloss.NewStyle() s.TabActive = lipgloss.NewStyle(). Foreground(lipgloss.Color("#6E6ED8")).