From 1296af658448495cb1423ac81251bf9c66922044 Mon Sep 17 00:00:00 2001 From: karyanayandi Date: Mon, 23 Dec 2024 15:53:24 +0700 Subject: [PATCH] fix(theme): update background color for tree views 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. --- lua/aurora/theme.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/aurora/theme.lua b/lua/aurora/theme.lua index 2eb98f2..b11c3ad 100644 --- a/lua/aurora/theme.lua +++ b/lua/aurora/theme.lua @@ -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 }, @@ -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" },