From 8da3aab41db35f06640ad251eab53825b8256f7d Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 8 Mar 2023 12:06:42 +0100 Subject: [PATCH] fix: set proper fg for @variable. Fixes #331 --- lua/tokyonight/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index e70c290f..9b4a4d21 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -235,7 +235,7 @@ function M.setup() ["@property"] = { fg = c.green1 }, --- Identifiers - ["@variable"] = { style = options.styles.variables }, -- Any variable name that does not have another highlight. + ["@variable"] = { fg = c.fg, style = options.styles.variables }, -- Any variable name that does not have another highlight. ["@variable.builtin"] = { fg = c.red }, -- Variable names that are defined by the languages, like `this` or `self`. --- Text