separate vimcolors from leaf

This commit is contained in:
Michael Chris Lopez
2021-10-31 08:35:07 +08:00
parent 6c3b373fff
commit 48af56f2c1
2 changed files with 4 additions and 4 deletions

View File

@@ -8,9 +8,9 @@ return lush.extends({ specs }).with(function()
---@diagnostic disable: undefined-global
-- selene: allow(undefined_variable)
return {
Number { fg = p.leaf.de(20).da(26), gui = "italic" },
Statement { fg = p.leaf.da(24), gui = "bold" },
PreProc { fg = p.leaf.de(31).da(24) },
Number { fg = p.vim.de(20).da(26), gui = "italic" },
Statement { fg = p.vim.da(24), gui = "bold" },
PreProc { fg = p.vim.de(31).da(24) },
}
-- selene: deny(undefined_variable)
---@diagnostic enable: undefined-global

View File

@@ -5,5 +5,5 @@ local hsluv = lush.hsluv
return util.palette_extend({
bg = hsluv(85.9, 27, 94),
fg = hsluv(0, 0, 22),
leaf = hsluv(131.8, 92, 51),
vim = hsluv(131.8, 92, 51),
}, "light")