Skip to content

Commit

Permalink
fix: wrong colors on diffAdded and diffRemoved (closes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisiacc committed Jan 2, 2022
1 parent af0042d commit 26ee992
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/gruvbox-baby/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function M.setup(config)
Directory = { fg = c.dark_gray },

DiffAdd = { bg = c.diff.add },
DiffChange = { style = "NONE", bg = c.diff.change },
DiffChange = { bg = c.diff.change },
DiffDelete = { bg = c.diff.delete },
DiffText = { bg = c.diff.text },

Expand Down Expand Up @@ -229,9 +229,9 @@ function M.setup(config)
WhichKeyGroup = { fg = c.orange },
WhichKeyDesc = { fg = c.forest_green },

diffAdded = { fg = c.diff.add },
diffRemoved = { fg = c.diff.delete },
diffFileId = { fg = c.blue_gray, style = "bold" },
diffAdded = { fg = c.forest_green },
diffRemoved = { fg = c.red },
diffFileId = { fg = c.magenta },
diffFile = { fg = c.comment },
diffNewFile = { fg = c.soft_yellow },
diffOldFile = { fg = c.orange },
Expand Down

0 comments on commit 26ee992

Please sign in to comment.