Skip to content

Commit

Permalink
fix: set proper fg for @variable. Fixes #331
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 8, 2023
1 parent 663657d commit 8da3aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/tokyonight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8da3aab

Please sign in to comment.