diff --git a/lua/tokyonight/colors.lua b/lua/tokyonight/colors.lua index 048a441..ee0cc6e 100644 --- a/lua/tokyonight/colors.lua +++ b/lua/tokyonight/colors.lua @@ -41,7 +41,7 @@ function M.setup(config) teal = "#1abc9c", red = "#f7768e", red1 = "#db4b4b", - git = { change = "#6183bb", add = "#449dab", delete = "#f7768e" }, + git = { change = "#6183bb", add = "#449dab", delete = "#914c54", conflict = "#bb7a61" }, } if config.style == "night" or vim.o.background == "light" then colors.bg = "#1a1b26" end util.bg = colors.bg diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 8ab8395..8c6359d 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -281,6 +281,7 @@ function M.setup(config) NvimTreeRootFolder = { fg = c.blue, style = "bold" }, NvimTreeGitDirty = { fg = c.git.change }, NvimTreeGitNew = { fg = c.git.add }, + NvimTreeGitDeleted = { fg = c.git.delete }, NvimTreeSpecialFile = { fg = c.purple, style = "underline" }, LspDiagnosticsError = { fg = c.error }, LspDiagnosticsWarning = { fg = c.warning },