From e85a65587754124ea6293444091225f7a22d9ec6 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Thu, 26 Aug 2021 16:11:28 +0800 Subject: [PATCH] config -> colors --- lua/zenbones/colors.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/zenbones/colors.lua b/lua/zenbones/colors.lua index 819f078..78da246 100644 --- a/lua/zenbones/colors.lua +++ b/lua/zenbones/colors.lua @@ -1,7 +1,7 @@ local lush = require "lush" local hsluv = lush.hsluv -local config = { +local colors = { sand = hsluv(39, 12, 94), stone = hsluv(230, 30, 22), leaf = hsluv(103, 72, 46), @@ -12,6 +12,6 @@ local config = { sky = hsluv(204, 80, 53), } -config.white = config.sand.li(58) +colors.white = colors.sand.li(58) -return config +return colors