From a2f4bb71e74b95a29f56de57966a5122f413fbc8 Mon Sep 17 00:00:00 2001 From: Niverton Date: Sat, 27 Jul 2024 12:53:53 +0200 Subject: [PATCH] feat(syntax): make numbers purple to better differentiates with types --- lua/astrobox/highlights/modules/syntax.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrobox/highlights/modules/syntax.lua b/lua/astrobox/highlights/modules/syntax.lua index 593c797..74e0b01 100644 --- a/lua/astrobox/highlights/modules/syntax.lua +++ b/lua/astrobox/highlights/modules/syntax.lua @@ -20,7 +20,7 @@ return function(theme, palette) Keyword = { fg = palette.red, bg = palette.none }, Label = { link = "Keyword" }, Macro = { fg = palette.orange, bg = palette.none }, - Number = { fg = palette.yellow, bg = palette.none }, + Number = { fg = palette.purple, bg = palette.none }, Operator = { fg = palette.orange, bg = palette.none }, PreCondit = { link = "PreProc" }, PreProc = { fg = palette.bg_gradiant[4], bg = palette.none },