From 0ebfc713ab4713106bf2b43913970377077831ad Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Mon, 13 Sep 2021 16:43:50 +0800 Subject: [PATCH] fine-tune Constant and Identifier contrast --- lua/zenbones/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 6295312..7a836ea 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -114,14 +114,14 @@ local theme = lush(function() -- default, -- Uncomment and edit if you want more specific syntax highlighting. - Constant { fg = c.stone.li(24), gui = "italic" }, -- (preferred) any constant + Constant { fg = c.stone.li(25), gui = "italic" }, -- (preferred) any constant -- String { }, -- a string constant: "this is a string" -- Character { }, -- a character constant: 'c', '\n' Number { gui = "italic" }, -- a number constant: 234, 0xff Boolean { Number }, -- a boolean constant: TRUE, false -- Float { }, -- a floating point constant: 2.3e10 - Identifier { fg = c.stone.li(16) }, -- (preferred) any variable name + Identifier { fg = c.stone.li(15) }, -- (preferred) any variable name Function { fg = c.stone }, -- function name (also: methods for classes) Statement { fg = c.stone, gui = "bold" }, -- (preferred) any statement