1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

Set defaults colours to 'default', not 'white'

'white' is great on dark themes, and terrible on light themes.
This commit is contained in:
Jesse Duffield 2023-06-01 18:58:25 +10:00
parent 860fd23b42
commit 378c50cf30

View File

@ -7,8 +7,11 @@ import (
)
var (
// DefaultTextColor is the default text color
DefaultTextColor = style.FgDefault
// GocuiDefaultTextColor does the same as DefaultTextColor but this one only colors gocui default text colors
GocuiDefaultTextColor gocui.Attribute
GocuiDefaultTextColor = gocui.ColorDefault
// ActiveBorderColor is the border color of the active frame
ActiveBorderColor gocui.Attribute
@ -21,9 +24,6 @@ var (
OptionsColor gocui.Attribute
// DefaultTextColor is the default text color
DefaultTextColor = style.FgWhite
// SelectedLineBgColor is the background color for the selected line
SelectedLineBgColor = style.New()