mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-06-03 14:24:37 +00:00
fix: flatten SignColumn and GitSigns backgrounds to match Normal
This commit is contained in:
+4
-4
@@ -260,7 +260,7 @@ local function get_groups()
|
||||
Question = { link = "DarkboxOrangeBold" },
|
||||
WarningMsg = { link = "DarkboxRedBold" },
|
||||
LineNr = { fg = colors.background_4 },
|
||||
SignColumn = config.transparent_mode and { bg = nil } or { bg = colors.background_1 },
|
||||
SignColumn = { bg = nil },
|
||||
Folded = { fg = colors.gray, bg = colors.background_1, italic = config.italic.folds },
|
||||
FoldColumn = config.transparent_mode and { fg = colors.gray, bg = nil }
|
||||
or { fg = colors.gray, bg = colors.background_1 },
|
||||
@@ -340,9 +340,9 @@ local function get_groups()
|
||||
LspSignatureActiveParameter = { link = "Search" },
|
||||
gitcommitSelectedFile = { link = "DarkboxGreen" },
|
||||
gitcommitDiscardedFile = { link = "DarkboxRed" },
|
||||
GitSignsAdd = { link = "DarkboxGreen" },
|
||||
GitSignsChange = { link = "DarkboxOrange" },
|
||||
GitSignsDelete = { link = "DarkboxRed" },
|
||||
GitSignsAdd = { fg = colors.green },
|
||||
GitSignsChange = { fg = colors.orange },
|
||||
GitSignsDelete = { fg = colors.red },
|
||||
NvimTreeSymlink = { fg = colors.neutral_aqua },
|
||||
NvimTreeRootFolder = { fg = colors.neutral_purple, bold = true },
|
||||
NvimTreeFolderIcon = { fg = colors.neutral_blue, bold = true },
|
||||
|
||||
Reference in New Issue
Block a user