Change `@property` highlighting (fix #66)
authorR Gibim <9031589+Drowze@users.noreply.github.com>
Wed, 21 Dec 2022 22:02:04 +0000 (22:02 +0000)
committerGitHub <noreply@github.com>
Wed, 21 Dec 2022 22:02:04 +0000 (22:02 +0000)
lua/dracula/groups.lua

index 0f5330734fe4961b3d80451647259264e00a38ac..5128019b92b05ebd377c270a1c6f53d8feb67d69 100644 (file)
@@ -133,7 +133,7 @@ local function setup(configs)
 
       ['@constant'] = { fg = colors.purple, },
       ['@constant.builtin'] = { fg = colors.purple, },
-      ['@symbol'] = { fg = colors.purple },
+      ['@symbol'] = { fg = colors.purple, },
 
       ['@constant.macro'] = { fg = colors.cyan, },
       ['@string.regex'] = { fg = colors.red, },
@@ -154,7 +154,7 @@ local function setup(configs)
       ['@parameter.reference'] = { fg = colors.orange, },
       ['@method'] = { fg = colors.green, },
       ['@field'] = { fg = colors.orange, },
-      ['@property'] = { fg = colors.fg, },
+      ['@property'] = { fg = colors.purple, },
       ['@constructor'] = { fg = colors.cyan, },
 
       ['@conditional'] = { fg = colors.pink, },