improve seoulbones

This commit is contained in:
Michael Chris Lopez
2021-11-13 08:21:43 +08:00
parent 4c8f050f12
commit a0325e737a
2 changed files with 14 additions and 12 deletions

View File

@@ -11,14 +11,15 @@ if bg == "light" then
-- selene: allow(undefined_variable) -- selene: allow(undefined_variable)
return { return {
Comment { specs.Comment, fg = p.leaf }, Comment { specs.Comment, fg = p.leaf },
Statement { specs.Statement, fg = p.water },
Keyword { fg = p.rose.de(25), gui = "bold" }, Keyword { fg = p.rose.de(25), gui = "bold" },
Exception { Keyword },
PreProc { fg = p.rose.de(40) }, PreProc { fg = p.rose.de(40) },
Conditional { fg = p.water }, Identifier { fg = p.fg },
Type { fg = lush.hsluv "#727100" }, Function { fg = lush.hsluv("#727100").de(12).da(5) },
Special { specs.Special, fg = p.blossom }, Special { fg = p.blossom.de(30).da(10) },
Number { specs.Number, fg = p.orange }, Number { specs.Number, fg = p.orange },
Delimiter { fg = p.wood.de(40).da(10) }, String { specs.Constant, fg = p.water.de(40).da(8) },
String { specs.Constant, fg = p.water.de(40).da(10) },
} }
-- selene: deny(undefined_variable) -- selene: deny(undefined_variable)
---@diagnostic enable: undefined-global ---@diagnostic enable: undefined-global
@@ -29,14 +30,15 @@ else
-- selene: allow(undefined_variable) -- selene: allow(undefined_variable)
return { return {
Comment { specs.Comment, fg = lush.hsluv "#719872" }, Comment { specs.Comment, fg = lush.hsluv "#719872" },
Statement { specs.Statement, fg = p.water },
Keyword { fg = p.rose.de(12), gui = "bold" }, Keyword { fg = p.rose.de(12), gui = "bold" },
Exception { Keyword },
PreProc { fg = p.rose.de(25) }, PreProc { fg = p.rose.de(25) },
Conditional { fg = p.water }, Identifier { fg = p.fg },
Type { fg = lush.hsluv "#dfdebd" }, Function { fg = lush.hsluv("#dfdebd").de(12) },
Special { specs.Special, fg = p.blossom.li(36) }, Special { fg = p.blossom.li(26) },
Number { specs.Number, fg = p.wood.de(20) }, Number { specs.Number, fg = p.wood.de(30) },
Delimiter { fg = p.wood.de(50).da(30) }, String { specs.Constant, fg = p.water.de(20).li(10) },
String { specs.Constant, fg = p.water.de(20).li(12) },
} }
-- selene: deny(undefined_variable) -- selene: deny(undefined_variable)
---@diagnostic enable: undefined-global ---@diagnostic enable: undefined-global

View File

@@ -23,7 +23,7 @@ M.dark = util.palette_extend({
leaf = hsluv "#98bc99", leaf = hsluv "#98bc99",
wood = hsluv "#ffde99", wood = hsluv "#ffde99",
water = hsluv "#98bede", water = hsluv "#98bede",
blossom = hsluv "#999abd", blossom = hsluv("#999abd").li(10),
sky = hsluv "#6fbcbd", sky = hsluv "#6fbcbd",
orange = hsluv "#e19972", orange = hsluv "#e19972",
}, "dark") }, "dark")