fix(lualine): change fg of section a in onedarker (#1909)

This commit is contained in:
Xavier Young 2021-11-17 01:49:27 +08:00 committed by GitHub
parent abc9f2764d
commit b3538b63ce
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,14 +19,14 @@ local colors = {
-- LuaFormatter on
return {
normal = {
a = { fg = colors.fg, bg = colors.blue, gui = "bold" },
a = { fg = colors.gray2, bg = colors.blue, gui = "bold" },
b = { fg = colors.fg, bg = colors.bg },
c = { fg = colors.fg, bg = colors.bg },
},
insert = { a = { fg = colors.fg, bg = colors.green, gui = "bold" } },
visual = { a = { fg = colors.fg, bg = colors.purple, gui = "bold" } },
command = { a = { fg = colors.fg, bg = colors.yellow, gui = "bold" } },
replace = { a = { fg = colors.fg, bg = colors.red1, gui = "bold" } },
insert = { a = { fg = colors.gray2, bg = colors.green, gui = "bold" } },
visual = { a = { fg = colors.gray2, bg = colors.purple, gui = "bold" } },
command = { a = { fg = colors.gray2, bg = colors.yellow, gui = "bold" } },
replace = { a = { fg = colors.gray2, bg = colors.red1, gui = "bold" } },
inactive = {
a = { fg = colors.gray1, bg = colors.bg, gui = "bold" },
b = { fg = colors.gray1, bg = colors.bg },