From 4edf263dfab42e95425eb5271fb9055ba8a0b39e Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Wed, 3 Jul 2019 20:45:02 +1000 Subject: [PATCH] use default border color to support light theme --- pkg/config/app_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index 18243b9a..3976ad98 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -296,7 +296,7 @@ func GetDefaultConfig() UserConfig { IgnoreMouseEvents: false, Theme: ThemeConfig{ ActiveBorderColor: []string{"green", "bold"}, - InactiveBorderColor: []string{"white"}, + InactiveBorderColor: []string{"default"}, OptionsTextColor: []string{"blue"}, }, ShowAllContainers: false,