breaking: move neobones and rosebones path

This commit is contained in:
Michael Chris Lopez
2021-10-10 13:42:55 +08:00
parent 4ccf1906cb
commit 79d7ffd17f
6 changed files with 8 additions and 8 deletions

20
lua/neobones/palette.lua Normal file
View File

@@ -0,0 +1,20 @@
local util = require "zenbones.util"
local lush = require "lush"
local hsluv = lush.hsluv
local M = {}
M.zenbones = util.palette_extend({
-- bg = hsluv "#d3e4db" -- --accent-bg-color
bg = hsluv "#e7eee8", -- --bg-color
fg = hsluv "#202e18", -- --accent-color
}, "zenbones")
M.zenbones.leaf = M.zenbones.leaf.sa(24).li(8) -- need to make green more prominent
M.zenflesh = util.palette_extend({
bg = hsluv "#0f191f", -- --bg-color
fg = hsluv "#c7d6d0", -- --fg-color
leaf = hsluv "#8fff6d", -- --accent-color
}, "zenflesh")
return M