add tokyobones flavor

This commit is contained in:
Michael Chris Lopez
2021-10-15 18:08:31 +08:00
parent c85a215c19
commit 5523715e19
3 changed files with 52 additions and 0 deletions

15
lua/tokyobones/init.lua Normal file
View File

@@ -0,0 +1,15 @@
local lush = require "lush"
local generator = require "zenbones.specs"
local bg = vim.opt.background:get()
local p = require("tokyobones.palette")[bg]
local specs = generator.generate(p, bg, generator.get_global_config("tokyobones", bg))
return lush.extends({ specs }).with(function()
return {
Statement { fg = p.blossom, gui = "bold" },
TSKeyword { fg = p.blossom, gui = "italic" },
PreProc { fg = p.sky },
Special { fg = p.water },
}
end)