chore: improve green contrast on light backgrounds

Christian Rocha created

Change summary

ui/styles/styles.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

ui/styles/styles.go 🔗

@@ -166,7 +166,7 @@ func DefaultStyles() *Styles {
 		MarginRight(2)
 
 	s.TopLevelActiveTab = s.TopLevelNormalTab.Copy().
-		Foreground(lipgloss.Color("42"))
+		Foreground(lipgloss.Color("35"))
 
 	s.TopLevelActiveTabDot = lipgloss.NewStyle().
 		Foreground(lipgloss.Color("29"))
@@ -447,7 +447,7 @@ func DefaultStyles() *Styles {
 
 	s.TabActive = lipgloss.NewStyle().
 		Underline(true).
-		Foreground(lipgloss.Color("42"))
+		Foreground(lipgloss.Color("35"))
 
 	s.TabSeparator = lipgloss.NewStyle().
 		SetString("│").