use hsluv

This commit is contained in:
2023-12-06 21:38:38 +01:00
parent 6580d46751
commit 08510eed7c
4 changed files with 14 additions and 16 deletions

View File

@@ -1,14 +1,14 @@
local lush = require('lush')
local hsl = lush.hsl
local hsluv = lush.hsluv
local M = {}
local default = {
dark = {
base = hsl(210, 40, 75),
base = hsluv(210, 40, 75),
},
light = {
base = hsl(210, 50, 35),
base = hsluv(210, 70, 50),
}
}