diff options
Diffstat (limited to 'lua/onedarker/highlights.lua')
-rw-r--r-- | lua/onedarker/highlights.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/onedarker/highlights.lua b/lua/onedarker/highlights.lua index e4b9eeac..d8facdd3 100644 --- a/lua/onedarker/highlights.lua +++ b/lua/onedarker/highlights.lua @@ -13,7 +13,7 @@ local highlights = { PmenuSel = { fg = C.alt_bg, bg = C.blue }, WildMenu = { fg = C.alt_bg, bg = C.blue }, CursorLineNr = { fg = C.light_gray, style = "bold" }, - Comment = { fg = C.green, style = "italic" }, + Comment = { fg = C.gray, style = "italic" }, Folded = { fg = C.accent, bg = C.alt_bg }, FoldColumn = { fg = C.accent, bg = C.alt_bg }, LineNr = { fg = C.context }, @@ -54,7 +54,7 @@ local highlights = { Question = { fg = C.orange }, EndOfBuffer = { fg = C.bg }, NonText = { fg = C.bg }, - Variable = { fg = C.cyan }, + Variable = { fg = C.fg }, String = { fg = C.green }, Character = { fg = C.green }, Constant = { fg = C.orange }, @@ -64,15 +64,15 @@ local highlights = { Identifier = { fg = C.fg }, Function = { fg = C.blue }, Operator = { fg = C.purple }, - Type = { fg = C.cyan }, - StorageClass = { fg = C.cyan }, + Type = { fg = C.yellow }, + StorageClass = { fg = C.yellow }, Structure = { fg = C.purple }, Typedef = { fg = C.purple }, Keyword = { fg = C.purple }, Statement = { fg = C.purple }, Conditional = { fg = C.purple }, Repeat = { fg = C.purple }, - Label = { fg = C.cyan }, + Label = { fg = C.blue }, Exception = { fg = C.purple }, Include = { fg = C.purple }, PreProc = { fg = C.purple }, |