From d359ea2ba469db200ad257d6ad32f49925633cfe Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Fri, 10 Jun 2022 17:53:30 -0700 Subject: [PATCH] chore: adjust file colors to also work on light backgrounds --- ui/styles/styles.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/styles/styles.go b/ui/styles/styles.go index debd082a35e71d7e99e6c2df32cdcd136df9427b..191e0cca8c0ae91cfb934ffb574d29719ff25b1a 100644 --- a/ui/styles/styles.go +++ b/ui/styles/styles.go @@ -270,14 +270,14 @@ func DefaultStyles() *Styles { Bold(true) s.TreeFileDir = lipgloss.NewStyle(). - Foreground(lipgloss.Color("#00AAFF")) + Foreground(lipgloss.Color("39")) s.TreeFileMode = s.TreeItemInactive.Copy(). Width(10). - Foreground(lipgloss.Color("#777777")) + Foreground(lipgloss.Color("243")) s.TreeFileSize = s.TreeItemInactive.Copy(). - Foreground(lipgloss.Color("252")) + Foreground(lipgloss.Color("243")) s.TreeFileContent = lipgloss.NewStyle()