Files
zenbones-theme/lua/lualine/themes/zenflesh.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-14 14:51:22 +08:00
local common_fg = "#9E918A"
local inactive_bg = "#302B29"
local inactive_fg = "#C8CDD0"
2021-09-14 05:54:36 +08:00
return {
normal = {
2021-09-14 14:51:22 +08:00
a = { bg = "#514A46", fg = common_fg, gui = "bold" },
b = { bg = "#403A37", fg = common_fg },
c = { bg = "#3C3633", fg = "#B3BABF" },
2021-09-14 05:54:36 +08:00
},
insert = {
a = { bg = "#384126", fg = common_fg, gui = "bold" },
},
command = {
2021-09-14 14:51:22 +08:00
a = { bg = "#714F6A", fg = common_fg, gui = "bold" },
2021-09-14 05:54:36 +08:00
},
visual = {
a = { bg = "#303B41", fg = common_fg, gui = "bold" },
},
replace = {
a = { bg = "#5D383D", fg = common_fg, gui = "bold" },
},
inactive = {
a = { bg = inactive_bg, fg = inactive_fg, gui = "bold" },
b = { bg = inactive_bg, fg = inactive_fg },
c = { bg = inactive_bg, fg = inactive_fg },
},
}