rename colors -> palette

This commit is contained in:
Michael Chris Lopez
2021-09-12 14:19:33 +08:00
parent aba7fec9e0
commit 6fe184ee3f
5 changed files with 7 additions and 9 deletions

13
lua/zenbones/palette.lua Normal file
View File

@@ -0,0 +1,13 @@
local lush = require "lush"
local hsluv = lush.hsluv
return {
sand = hsluv(39, 12, 94),
stone = hsluv(230, 30, 22),
leaf = hsluv(103, 72, 46),
water = hsluv(236, 84, 40),
rose = hsluv(4, 70, 40),
wood = hsluv(26, 80, 40),
blossom = hsluv(318, 42, 42),
sky = hsluv(204, 80, 53),
}