From e405981fa47ff29b281084d55815f7bc20437265 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Mon, 23 Aug 2021 11:47:29 +0800 Subject: [PATCH] adjust basic contrasts --- lua/lush_theme/zenbones.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lush_theme/zenbones.lua b/lua/lush_theme/zenbones.lua index 4bc4c36..8d7ade3 100644 --- a/lua/lush_theme/zenbones.lua +++ b/lua/lush_theme/zenbones.lua @@ -139,7 +139,7 @@ local theme = lush(function() -- default, -- Uncomment and edit if you want more specific syntax highlighting. - Constant { fg = stone.li(30), gui = "italic" }, -- (preferred) any constant + Constant { fg = stone.li(26), 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 @@ -147,9 +147,9 @@ local theme = lush(function() -- Float { }, -- a floating point constant: 2.3e10 Identifier { fg = stone.li(16) }, -- (preferred) any variable name - Function { fg = stone.da(20) }, -- function name (also: methods for classes) + Function { fg = stone }, -- function name (also: methods for classes) - Statement { gui = "bold" }, -- (preferred) any statement + Statement { fg = stone, gui = "bold" }, -- (preferred) any statement -- Conditional { }, -- if, then, else, endif, switch, etc. -- Repeat { }, -- for, do, while, etc. -- Label { }, -- case, default, etc. @@ -168,7 +168,7 @@ local theme = lush(function() -- Structure { }, -- struct, union, enum, etc. -- Typedef { }, -- A typedef - Special { fg = stone.li(28), gui="bold" }, -- (preferred) any special symbol + Special { fg = stone.li(24), gui="bold" }, -- (preferred) any special symbol -- SpecialChar { }, -- special character in a constant -- Tag { }, -- you can use CTRL-] on this Delimiter { fg = sand.da(40) }, -- character that needs attention