23 lines
706 B
Lua
23 lines
706 B
Lua
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()
|
|
---@diagnostic disable: undefined-global
|
|
-- selene: allow(undefined_variable)
|
|
return {
|
|
Statement { fg = p.blossom, gui = "bold" },
|
|
Number { fg = p.sky },
|
|
TSConstant { fg = p.orange },
|
|
TSKeyword { fg = p.blossom, gui = "italic" },
|
|
TSConstBuiltin { fg = p.sky1 },
|
|
PreProc { fg = p.blossom },
|
|
Special { fg = p.water },
|
|
}
|
|
-- selene: deny(undefined_variable)
|
|
---@diagnostic enable: undefined-global
|
|
end)
|