From 620551bb5a4e641e2fecab880efe520f698dd758 Mon Sep 17 00:00:00 2001 From: zhenrenbumeng Date: Sat, 9 May 2026 17:19:36 +0800 Subject: [PATCH] Default bottom keybindings line text to white for dark terminals --- docs-master/Config.md | 2 +- docs/Config.md | 2 +- pkg/config/app_config_test.go | 2 +- pkg/config/user_config.go | 2 +- schema-master/config.json | 2 +- schema/config.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs-master/Config.md b/docs-master/Config.md index 42eff4666a1..413ba92f3b2 100644 --- a/docs-master/Config.md +++ b/docs-master/Config.md @@ -168,7 +168,7 @@ gui: # Color of keybindings help text in the bottom line optionsTextColor: - - blue + - white # Background color of selected line. # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#highlighting-the-selected-line diff --git a/docs/Config.md b/docs/Config.md index 9931fda61fe..aa95df2a6a1 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -168,7 +168,7 @@ gui: # Color of keybindings help text in the bottom line optionsTextColor: - - blue + - white # Background color of selected line. # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#highlighting-the-selected-line diff --git a/pkg/config/app_config_test.go b/pkg/config/app_config_test.go index 1109256a9d3..aa2c416ee49 100644 --- a/pkg/config/app_config_test.go +++ b/pkg/config/app_config_test.go @@ -458,7 +458,7 @@ gui: # Color of keybindings help text in the bottom line optionsTextColor: - - blue + - white # Background color of selected line. # See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#highlighting-the-selected-line diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go index ddb0c087666..1c3b099d2f1 100644 --- a/pkg/config/user_config.go +++ b/pkg/config/user_config.go @@ -801,7 +801,7 @@ func GetDefaultConfigForPlatform(platform string) *UserConfig { ActiveBorderColor: []string{"green", "bold"}, SearchingActiveBorderColor: []string{"cyan", "bold"}, InactiveBorderColor: []string{"default"}, - OptionsTextColor: []string{"blue"}, + OptionsTextColor: []string{"white"}, SelectedLineBgColor: []string{"blue"}, InactiveViewSelectedLineBgColor: []string{"bold"}, CherryPickedCommitBgColor: []string{"cyan"}, diff --git a/schema-master/config.json b/schema-master/config.json index 549b8087705..d600aa38995 100644 --- a/schema-master/config.json +++ b/schema-master/config.json @@ -1873,7 +1873,7 @@ "uniqueItems": true, "description": "Color of keybindings help text in the bottom line", "default": [ - "blue" + "white" ] }, "selectedLineBgColor": { diff --git a/schema/config.json b/schema/config.json index c4312981fa2..184811763ae 100644 --- a/schema/config.json +++ b/schema/config.json @@ -1852,7 +1852,7 @@ "uniqueItems": true, "description": "Color of keybindings help text in the bottom line", "default": [ - "blue" + "white" ] }, "selectedLineBgColor": {