14 lines
301 B
Lua
14 lines
301 B
Lua
local lush = require "lush"
|
|
local hsluv = lush.hsluv
|
|
|
|
return {
|
|
bg = hsluv(39, 12, 94), -- sand
|
|
fg = hsluv(230, 30, 22), -- stone
|
|
leaf = hsluv(112, 72, 42),
|
|
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),
|
|
}
|