From 557007194a3cf95084b41e5f7df4762c422473ae Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Mon, 23 Aug 2021 12:39:45 +0800 Subject: [PATCH] adjust contrast --- lua/lush_theme/zenbones.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/lush_theme/zenbones.lua b/lua/lush_theme/zenbones.lua index 6aaaebf..4c91db6 100644 --- a/lua/lush_theme/zenbones.lua +++ b/lua/lush_theme/zenbones.lua @@ -46,7 +46,7 @@ local lush = require "lush" local hsluv = lush.hsluv local sand = hsluv(39, 12, 90) -local stone = hsluv(230, 30, 24) +local stone = hsluv(230, 30, 26) local leaf = hsluv(103, 72, 46) local water = hsluv(236, 84, 40) local rose = hsluv(5, 76, 46) @@ -139,14 +139,14 @@ local theme = lush(function() -- default, -- Uncomment and edit if you want more specific syntax highlighting. - Constant { fg = stone.li(26), gui = "italic" }, -- (preferred) any constant + Constant { fg = stone.li(24), gui = "italic" }, -- (preferred) any constant -- String { }, -- a string constant: "this is a string" -- Character { }, -- a character constant: 'c', '\n' -- Number { }, -- a number constant: 234, 0xff -- Boolean { }, -- a boolean constant: TRUE, false -- Float { }, -- a floating point constant: 2.3e10 - Identifier { fg = stone.li(16) }, -- (preferred) any variable name + Identifier { fg = stone.li(14) }, -- (preferred) any variable name Function { fg = stone }, -- function name (also: methods for classes) Statement { fg = stone, gui = "bold" }, -- (preferred) any statement