adjust tokyobones specs

This commit is contained in:
Michael Chris Lopez
2021-10-17 05:59:39 +08:00
parent cad8c0f447
commit 82984a9070
2 changed files with 8 additions and 1 deletions

View File

@@ -8,8 +8,11 @@ local specs = generator.generate(p, bg, generator.get_global_config("tokyobones"
return lush.extends({ specs }).with(function() return lush.extends({ specs }).with(function()
return { return {
Statement { fg = p.blossom, gui = "bold" }, Statement { fg = p.blossom, gui = "bold" },
Number { fg = p.sky },
TSConstant { fg = p.orange },
TSKeyword { fg = p.blossom, gui = "italic" }, TSKeyword { fg = p.blossom, gui = "italic" },
PreProc { fg = p.sky }, TSConstBuiltin { fg = p.sky1 },
PreProc { fg = p.blossom },
Special { fg = p.water }, Special { fg = p.water },
} }
end) end)

View File

@@ -13,6 +13,8 @@ M.light = util.palette_extend({
water = hsluv "#34548a", water = hsluv "#34548a",
blossom = hsluv "#5a4a78", blossom = hsluv "#5a4a78",
sky = hsluv "#166775", sky = hsluv "#166775",
orange = hsluv "#965027",
sky1 = hsluv "#33635c",
}, "light") }, "light")
M.dark = util.palette_extend { M.dark = util.palette_extend {
@@ -25,6 +27,8 @@ M.dark = util.palette_extend {
water = hsluv "#7aa2f7", water = hsluv "#7aa2f7",
blossom = hsluv "#bb9af7", blossom = hsluv "#bb9af7",
sky = hsluv "#2ac3de", sky = hsluv "#2ac3de",
orange = hsluv "#ff9e64",
sky1 = hsluv "#73daca",
} }
return M return M