Files
zenbones-theme/lua/zenflesh/palette.lua

19 lines
406 B
Lua
Raw Normal View History

2021-09-13 16:31:09 +08:00
local lush = require "lush"
local hsluv = lush.hsluv
2021-10-02 17:48:22 +08:00
local sand = hsluv(39, 9, 9) -- sand
local stone = hsluv(230, 10, 76) -- stone
2021-09-13 16:31:09 +08:00
return {
2021-10-02 17:48:22 +08:00
bg = sand,
bg_stark = sand.abs_da(3).sa(8),
bg_warm = sand.abs_li(3).de(12),
fg = stone,
2021-09-16 19:24:32 +08:00
rose = hsluv(6, 62, 60),
leaf = hsluv(111, 47, 61),
wood = hsluv(32, 47, 58),
water = hsluv(236, 64, 61),
blossom = hsluv(318, 32, 58),
sky = hsluv(204, 61, 64),
2021-09-13 16:31:09 +08:00
}