add zenwritten to build
This commit is contained in:
34
lua/lualine/themes/zenwritten_dark.lua
Normal file
34
lua/lualine/themes/zenwritten_dark.lua
Normal file
@@ -0,0 +1,34 @@
|
||||
-- This file is auto-generated from lua/zenbones/template/lualine.lua
|
||||
local common_fg = "#B0B0B0"
|
||||
local inactive_bg = "#2E2E2E"
|
||||
local inactive_fg = "#CFCFCF"
|
||||
|
||||
return {
|
||||
normal = {
|
||||
a = { bg = "#6A6A6A", fg = common_fg, gui = "bold" },
|
||||
b = { bg = "#494949", fg = common_fg },
|
||||
c = { bg = "#393939", fg = "#BBBBBB" },
|
||||
},
|
||||
|
||||
insert = {
|
||||
a = { bg = "#455C6F", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
command = {
|
||||
a = { bg = "#73516C", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
visual = {
|
||||
a = { bg = "#393939", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
replace = {
|
||||
a = { bg = "#5B2E33", 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 },
|
||||
},
|
||||
}
|
||||
34
lua/lualine/themes/zenwritten_light.lua
Normal file
34
lua/lualine/themes/zenwritten_light.lua
Normal file
@@ -0,0 +1,34 @@
|
||||
-- This file is auto-generated from lua/zenbones/template/lualine.lua
|
||||
local common_fg = "#505050"
|
||||
local inactive_bg = "#D4D4D4"
|
||||
local inactive_fg = "#686868"
|
||||
|
||||
return {
|
||||
normal = {
|
||||
a = { bg = "#A6A6A6", fg = common_fg, gui = "bold" },
|
||||
b = { bg = "#B9B9B9", fg = common_fg },
|
||||
c = { bg = "#C9C9C9", fg = "#353535" },
|
||||
},
|
||||
|
||||
insert = {
|
||||
a = { bg = "#99C6E9", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
command = {
|
||||
a = { bg = "#D2A6C8", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
visual = {
|
||||
a = { bg = "#DDDDDD", fg = common_fg, gui = "bold" },
|
||||
},
|
||||
|
||||
replace = {
|
||||
a = { bg = "#E7CBCE", 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 },
|
||||
},
|
||||
}
|
||||
@@ -83,6 +83,16 @@ function M.run()
|
||||
package.loaded["neobones"] = nil
|
||||
vim.opt.background = "dark"
|
||||
build("neobones_dark", require "neobones", require("neobones.palette").dark, { exclude = { "vim" } })
|
||||
|
||||
-- zenwritten light
|
||||
package.loaded["zenwritten"] = nil
|
||||
vim.opt.background = "light"
|
||||
build("zenwritten_light", require "zenwritten", require("zenwritten.palette").light, { exclude = { "vim" } })
|
||||
|
||||
-- zenwritten dark
|
||||
package.loaded["zenwritten"] = nil
|
||||
vim.opt.background = "dark"
|
||||
build("zenwritten_dark", require "zenwritten", require("zenwritten.palette").dark, { exclude = { "vim" } })
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
Reference in New Issue
Block a user