Skip to content

Commit

Permalink
fix(lualine): match lualine mode colors for insert and terminal (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidke committed Oct 24, 2023
1 parent dcef0a0 commit ea52fe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/catppuccin/utils/lualine.lua
Expand Up @@ -13,12 +13,12 @@ return function(flavour)

catppuccin.insert = {
a = { bg = C.green, fg = C.base, gui = "bold" },
b = { bg = C.surface1, fg = C.teal },
b = { bg = C.surface1, fg = C.green },
}

catppuccin.terminal = {
a = { bg = C.green, fg = C.base, gui = "bold" },
b = { bg = C.surface1, fg = C.teal },
b = { bg = C.surface1, fg = C.green },
}

catppuccin.command = {
Expand Down

0 comments on commit ea52fe8

Please sign in to comment.