Skip to content

Commit

Permalink
Improvements to bufferline colors and modifiers
Browse files Browse the repository at this point in the history
Removing `"ui.bufferline.background" = { bg = "surface1" }` in this case makes the active tab "italic" which is not expected. This could be a bug.
  • Loading branch information
txtyash authored Sep 20, 2022
1 parent 559cc76 commit ce6f944
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions runtime/themes/catppuccin_latte.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@
"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] }
"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] }

"ui.bufferline" = { fg = "overlay2", bg = "surface1" }
"ui.bufferline.active" = { fg = "text", bg = "surface0" }
"ui.bufferline" = { fg = "overlay2", bg = "surface1", modifiers = ["italic"] }
"ui.bufferline.active" = { fg = "text", bg = "surface0", modifiers = ["bold"] }
"ui.bufferline.background" = { bg = "surface1" }

"ui.popup" = { fg = "text", bg = "surface0" }
"ui.window" = { fg = "crust" }
Expand Down

0 comments on commit ce6f944

Please sign in to comment.