separate file for palette and terminal

This commit is contained in:
Michael Chris Lopez
2021-09-13 16:31:09 +08:00
parent b9caa4189f
commit e0ce4a3068
4 changed files with 54 additions and 19 deletions

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

@@ -0,0 +1,13 @@
local lush = require "lush"
local hsluv = lush.hsluv
return {
sand = hsluv(39, 10, 10),
stone = hsluv(230, 7, 75),
leaf = hsluv(103, 65, 54),
water = hsluv(236, 80, 53),
rose = hsluv(4, 40, 53),
wood = hsluv(26, 58, 54),
blossom = hsluv(318, 34, 56),
sky = hsluv(204, 76, 58),
}