summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-06-01 19:08:52 +1000
committerGitHub <noreply@github.com>2023-06-01 19:08:52 +1000
commit4b3f8055d0746c44787c6ba026630f29e7f049b5 (patch)
tree18b6ce029369d393b4d147d48ba1efe71e12c352
parent860fd23b421f3091f1b63ee50d1b77936b45d9c1 (diff)
parent378c50cf307d9b2501b48b59c363e92e36a0344b (diff)
Merge pull request #2696 from jesseduffield/default-to-default
-rw-r--r--pkg/theme/theme.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/theme/theme.go b/pkg/theme/theme.go
index 62df8b50d..bb6ab43de 100644
--- a/pkg/theme/theme.go
+++ b/pkg/theme/theme.go
@@ -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()