diff --git a/lua/colors/integrations/syntax.lua b/lua/colors/integrations/syntax.lua index 82ae572..f0b394b 100644 --- a/lua/colors/integrations/syntax.lua +++ b/lua/colors/integrations/syntax.lua @@ -17,10 +17,12 @@ local bright_blue = theme.bright_blue local bright_magenta = theme.bright_magenta local bright_cyan = theme.bright_cyan local bright_white = theme.bright_white +local orange = theme.orange +local gray = theme.gray return { Boolean = { - fg = yellow, + fg = orange, }, Character = { @@ -41,7 +43,7 @@ return { }, Delimiter = { - fg = yellow, + fg = orange, }, Float = { @@ -74,7 +76,7 @@ return { }, Operator = { - fg = bright_black, + fg = gray, sp = "none", }, @@ -91,7 +93,7 @@ return { }, SpecialChar = { - fg = magenta, + fg = orange, }, Statement = { diff --git a/lua/colors/integrations/treesitter.lua b/lua/colors/integrations/treesitter.lua index dbe26c3..6530e09 100644 --- a/lua/colors/integrations/treesitter.lua +++ b/lua/colors/integrations/treesitter.lua @@ -16,10 +16,12 @@ local bright_blue = theme.bright_blue -- base0C local bright_magenta = theme.bright_magenta -- base0D local bright_cyan = theme.bright_cyan -- base0E local bright_white = theme.bright_white -- base0F +local orange = theme.orange +local gray = theme.gray return { TSAnnotation = { - fg = bright_magenta, + fg = orange, sp = "none", }, @@ -84,7 +86,7 @@ return { }, TSNone = { - fg = bright_black, + fg = gray, sp = "none", }, @@ -94,17 +96,17 @@ return { }, TSParameterReference = { - fg = yellow, + fg = gray, sp = "none", }, TSPunctDelimiter = { - fg = yellow, + fg = orange, sp = "none", }, TSPunctSpecial = { - fg = white, + fg = gray, sp = "none", }, @@ -124,12 +126,12 @@ return { }, TSTagDelimiter = { - fg = bright_red, + fg = orange, sp = "none", }, TSText = { - fg = white, + fg = gray, sp = "none", }, diff --git a/lua/colors/kdark.lua b/lua/colors/kdark.lua index 37a0028..8b7c273 100644 --- a/lua/colors/kdark.lua +++ b/lua/colors/kdark.lua @@ -18,7 +18,8 @@ M.colors= { bright_magenta = "#ff00ff", -- base0D bright_cyan = "#00ffff", -- base0E bright_white = "#ffffff", -- base0F - + orange = "#be5046", + gray = "#abb2bf", } -- M.colors= {