summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-04-15 09:37:04 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-04-16 15:19:32 +1000
commit6a153acc8f5695b9176a8d1b196dfd9eeb5ee34e (patch)
treee21b6f338c59b9db08c5270bcf78e208b3fb2765 /pkg/config
parentb3e18bd2581eca765f55a6f7ba5c82435fb67336 (diff)
clearer highlighting of current line
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index d5a142b12..c4758d9df 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -341,10 +341,10 @@ func GetDefaultConfig() *UserConfig {
ActiveBorderColor: []string{"green", "bold"},
InactiveBorderColor: []string{"white"},
OptionsTextColor: []string{"blue"},
- SelectedLineBgColor: []string{"default"},
+ SelectedLineBgColor: []string{"blue"},
SelectedRangeBgColor: []string{"blue"},
- CherryPickedCommitBgColor: []string{"blue"},
- CherryPickedCommitFgColor: []string{"cyan"},
+ CherryPickedCommitBgColor: []string{"cyan"},
+ CherryPickedCommitFgColor: []string{"blue"},
UnstagedChangesColor: []string{"red"},
},
CommitLength: CommitLengthConfig{Show: true},