Skip to content

Commit

Permalink
Merge pull request #217 from satler-git/fix-tab
Browse files Browse the repository at this point in the history
fix(neovim): gray text in tab bar(unselected  tabs)
  • Loading branch information
daltonmenezes authored Aug 26, 2024
2 parents 3f7557a + 505b6e2 commit c607be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/neovim/lua/aura-theme/groups/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local function createEditorGroup(palette, aura)
SpellCap = aura.OrangeUnderline,
SpellLocal = aura.BlueUnderline,
SpellRare = aura.PurpleUnderline,
TabLine = { fg = palette.black, bg = palette.black },
TabLine = { fg = palette.gray, bg = palette.black },
TabLineFill = { fg = palette.black, bg = palette.black },
TabLineSel = { fg = palette.green, bg = palette.black, gui = "inverse" },
Title = aura.GreenBold,
Expand Down
2 changes: 1 addition & 1 deletion src/ports/neovim/extra/lua/aura-theme/groups/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local function createEditorGroup(palette, aura)
SpellCap = aura.OrangeUnderline,
SpellLocal = aura.BlueUnderline,
SpellRare = aura.PurpleUnderline,
TabLine = { fg = palette.black, bg = palette.black },
TabLine = { fg = palette.gray, bg = palette.black },
TabLineFill = { fg = palette.black, bg = palette.black },
TabLineSel = { fg = palette.green, bg = palette.black, gui = "inverse" },
Title = aura.GreenBold,
Expand Down

0 comments on commit c607be7

Please sign in to comment.