Files
zenbones-theme/lua/zenbones/palette.lua
Michael Chris Lopez 47170c2a2c breaking: deprecate zenflesh and allow zenbones bg=dark
This is an interim change to prepare removing zenflesh. Please make use
of zenbones and set bg=dark to get the zenflesh colors.
2021-11-01 13:13:01 +08:00

9 lines
137 B
Lua

local util = require "zenbones.util"
local M = {}
M.light = util.palette_extend({}, "light")
M.dark = util.palette_extend {}
return M