summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-11-11 08:08:53 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-11-12 14:59:15 +1100
commit1ac3ae1ad1b904a02e12d49adec0197e6067006e (patch)
tree9648ea2b0cf513ce6393753fa1381c5819f4d5ba /pkg/config/user_config.go
parent34404162e6e80ca6bc2b417b99433cd8f49dbf51 (diff)
use better colour defaults
Diffstat (limited to 'pkg/config/user_config.go')
-rw-r--r--pkg/config/user_config.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index a90b100d5..c31c74fe0 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -55,7 +55,6 @@ type GuiConfig struct {
}
type ThemeConfig struct {
- LightTheme bool `yaml:"lightTheme"`
ActiveBorderColor []string `yaml:"activeBorderColor"`
InactiveBorderColor []string `yaml:"inactiveBorderColor"`
OptionsTextColor []string `yaml:"optionsTextColor"`
@@ -358,9 +357,8 @@ func GetDefaultConfig() *UserConfig {
Language: "auto",
TimeFormat: time.RFC822,
Theme: ThemeConfig{
- LightTheme: false,
ActiveBorderColor: []string{"green", "bold"},
- InactiveBorderColor: []string{"white"},
+ InactiveBorderColor: []string{"default"},
OptionsTextColor: []string{"blue"},
SelectedLineBgColor: []string{"blue"},
SelectedRangeBgColor: []string{"blue"},