1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-08 04:04:22 +02:00

Merge pull request #2696 from jesseduffield/default-to-default

This commit is contained in:
Jesse Duffield 2023-06-01 19:08:52 +10:00 committed by GitHub
commit 4b3f8055d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()