breaking: standardize palette

vimbones and nordbones follow standard palatte table:

require("nordbones.palette").dark instead of "derived"
This commit is contained in:
Michael Chris Lopez
2021-11-05 15:43:29 +08:00
parent 635f71ae81
commit a5bd4b1bb2
4 changed files with 9 additions and 5 deletions

View File

@@ -2,8 +2,12 @@ local util = require "zenbones.util"
local lush = require "lush"
local hsluv = lush.hsluv
return util.palette_extend({
local M = {}
M.light = util.palette_extend({
bg = hsluv(85.9, 27, 94),
fg = hsluv(0, 0, 22),
vim = hsluv(131.8, 92, 51),
}, "light")
return M