2021-10-15 16:27:08 +08:00
|
|
|
local lush = require "lush"
|
|
|
|
|
local generator = require "zenbones.specs"
|
|
|
|
|
local p = require "nordbones.palette"
|
|
|
|
|
|
2021-11-05 15:43:29 +08:00
|
|
|
local specs = generator.generate(p.dark, "dark", generator.get_global_config("nordbones", "dark"))
|
2021-10-15 16:27:08 +08:00
|
|
|
|
|
|
|
|
return lush.extends({ specs }).with(function()
|
2021-10-29 15:00:22 +08:00
|
|
|
---@diagnostic disable: undefined-global
|
|
|
|
|
-- selene: allow(undefined_variable)
|
2021-10-15 16:27:08 +08:00
|
|
|
return {
|
|
|
|
|
Number { fg = p.base.nord7, gui = "italic" },
|
2024-02-04 01:55:08 +01:00
|
|
|
Identifier { fg = p.dark.fg },
|
2021-10-15 16:27:08 +08:00
|
|
|
Function { fg = p.base.nord8 },
|
|
|
|
|
Statement { fg = p.base.nord9 },
|
|
|
|
|
Type { fg = p.base.nord10 },
|
|
|
|
|
}
|
2021-10-29 15:00:22 +08:00
|
|
|
-- selene: deny(undefined_variable)
|
|
|
|
|
---@diagnostic enable: undefined-global
|
2021-10-15 16:27:08 +08:00
|
|
|
end)
|