Skip to content

Commit

Permalink
change some highlight colors
Browse files Browse the repository at this point in the history
  • Loading branch information
zootedb0t committed Dec 4, 2023
1 parent e1f7e91 commit a5512cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/citruszest/highlights/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ M.theme = function(C, O)

Comment = { fg = C.bright_black }, -- just comments
SpecialComment = { link = "Special" }, -- special things inside a comment
Constant = { fg = C.orange }, -- (preferred) any constant
Constant = { fg = C.turquoise_blue }, -- (preferred) any constant
String = { fg = C.aurora }, -- a string constant: "this is a string"
Character = { fg = C.yellow }, -- a character constant: 'c', '\n'
Number = { fg = C.bright_blue }, -- a number constant: 234, 0xff
Expand All @@ -71,7 +71,7 @@ M.theme = function(C, O)
Identifier = { fg = C.bright_orange, italic = O.italic }, -- (preferred) any variable name
Function = { fg = C.bright_green }, -- function name (also: methods for classes)
Statement = { fg = C.blue }, -- (preferred) any statement
Conditional = { fg = C.turquoise_blue }, -- if, then, else, endif, switch, etc.
Conditional = { fg = C.blue }, -- if, then, else, endif, switch, etc.
Repeat = { fg = C.bright_yellow }, -- for, do, while, etc.
Label = { fg = C.bright_green }, -- case, default, etc.
Operator = { fg = C.orange }, -- "sizeof", "+", "*", etc.
Expand Down

0 comments on commit a5512cd

Please sign in to comment.