Files
zenbones-theme/lua/lualine/themes/zenbones.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
721 B
Lua
Raw Normal View History

2021-09-04 17:01:40 +08:00
local common_fg = "#564E4A"
2021-09-06 13:54:38 +08:00
local inactive_bg = "#DAD3CF"
local inactive_fg = "#596A76"
return {
normal = {
2021-09-04 17:01:40 +08:00
a = { bg = "#B2A39B", fg = common_fg, gui = "bold" },
b = { bg = "#C4B6AF", fg = common_fg },
c = { bg = "#D1C7C3", fg = "#2C363C" },
},
insert = {
2021-09-04 17:01:40 +08:00
a = { bg = "#DDE6CD", fg = common_fg, gui = "bold" },
},
command = {
2021-09-04 17:01:40 +08:00
a = { bg = "#D2A6C8", fg = common_fg, gui = "bold" },
},
visual = {
2021-09-04 17:01:40 +08:00
a = { bg = "#D2DFE7", fg = common_fg, gui = "bold" },
},
replace = {
2021-09-04 17:01:40 +08:00
a = { bg = "#E9CACE", fg = common_fg, gui = "bold" },
},
inactive = {
2021-09-06 13:54:38 +08:00
a = { bg = inactive_bg, fg = inactive_fg, gui = "bold" },
b = { bg = inactive_bg, fg = inactive_fg },
c = { bg = inactive_bg, fg = inactive_fg },
},
}