Skip to content

Commit

Permalink
fix(theme): update background color for tree views
Browse files Browse the repository at this point in the history
Updated the background color for NvimTree and NeoTree views to use
`colors.none` instead of `colors.active`. This change ensures a more
consistent appearance across different themes and configurations.
  • Loading branch information
karyanayandi committed Dec 23, 2024
1 parent 445c264 commit 1296af6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/aurora/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ function theme.highlights(colors, config)
NvimTreeOpenedFile = { fg = colors.none },
NvimTreeSpecialFile = { fg = colors.orange, style = "underline" },
NvimTreeImageFile = { fg = colors.purple, style = "bold" },
NvimTreeNormal = { fg = colors.fg, bg = colors.active },
NvimTreeNormal = { fg = colors.fg, bg = colors.none },
NvimTreeCursorLine = { link = "Visual" },
NvimTreeVertSplit = { fg = colors.active, bg = colors.active },
LspDiagnosticsError = { fg = colors.error },
Expand All @@ -753,8 +753,8 @@ function theme.highlights(colors, config)
NeoTreeGitConflict = { fg = colors.red },
NeoTreeGitModified = { fg = colors.yellow },
NeoTreeGitUntracked = { fg = colors.green },
NeoTreeNormal = { fg = colors.fg, bg = colors.active },
NeoTreeNormalNC = { fg = colors.fg, bg = colors.active },
NeoTreeNormal = { fg = colors.fg, bg = colors.none },
NeoTreeNormalNC = { fg = colors.fg, bg = colors.none },
NeoTreeSymbolicLinkTarget = { fg = colors.cyan, style = "bold" },
NeoTreeCursorLine = { link = "Visual" },

Expand Down

0 comments on commit 1296af6

Please sign in to comment.