fix: don't use dark fg in floats

This commit is contained in:
Folke Lemaitre 2022-11-15 17:15:27 +01:00
parent ec144d94a8
commit 4370d3de58
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040

View File

@ -81,6 +81,7 @@ M.moon = function()
red = "#ff757f", --
red1 = "#c53b53", --
}
ret.comment = util.blend(ret.comment, ret.bg, "bb")
ret.git = {
change = util.blend(ret.blue, ret.bg, "ee"),
add = util.blend(ret.green, ret.bg, "ee"),
@ -141,7 +142,7 @@ function M.setup(opts)
colors.bg_search = colors.blue0
colors.fg_sidebar = colors.fg_dark
-- colors.fg_float = config.options.styles.floats == "dark" and colors.fg_dark or colors.fg
colors.fg_float = colors.fg_dark
colors.fg_float = colors.fg
colors.error = colors.red1
colors.warning = colors.yellow