1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

[#2279] defaultFgColor entry in theme config

This commit is contained in:
Arnaud PERALTA
2022-11-20 19:05:42 +01:00
parent 924a152ae9
commit 37997dcbcd
3 changed files with 6 additions and 2 deletions

View File

@ -58,6 +58,6 @@ func UpdateTheme(themeConfig config.ThemeConfig) {
OptionsColor = GetGocuiStyle(themeConfig.OptionsTextColor)
OptionsFgColor = GetTextStyle(themeConfig.OptionsTextColor, false)
DefaultTextColor = style.FgDefault
GocuiDefaultTextColor = gocui.ColorDefault
DefaultTextColor = GetTextStyle(themeConfig.DefaultFgColor, false)
GocuiDefaultTextColor = GetGocuiStyle(themeConfig.DefaultFgColor)
}