Skip to content

Commit

Permalink
feat(lualine): darken lualine b section for better readability (#606)
Browse files Browse the repository at this point in the history
* style(lualine): darken lualine `b` section for better readability

* chore: change from surface1 to surface0

---------

Co-authored-by: Null Chilly <nullchilly@gmail.com>
  • Loading branch information
msc5 and nullchilly authored Dec 15, 2023
1 parent 1b40f07 commit 32ee05d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lua/catppuccin/utils/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@ return function(flavour)

catppuccin.normal = {
a = { bg = C.blue, fg = C.mantle, gui = "bold" },
b = { bg = C.surface1, fg = C.blue },
b = { bg = C.surface0, fg = C.blue },
c = { bg = transparent_bg, fg = C.text },
}

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

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

catppuccin.command = {
a = { bg = C.peach, fg = C.base, gui = "bold" },
b = { bg = C.surface1, fg = C.peach },
b = { bg = C.surface0, fg = C.peach },
}

catppuccin.visual = {
a = { bg = C.mauve, fg = C.base, gui = "bold" },
b = { bg = C.surface1, fg = C.mauve },
b = { bg = C.surface0, fg = C.mauve },
}

catppuccin.replace = {
a = { bg = C.red, fg = C.base, gui = "bold" },
b = { bg = C.surface1, fg = C.red },
b = { bg = C.surface0, fg = C.red },
}

catppuccin.inactive = {
Expand Down

0 comments on commit 32ee05d

Please sign in to comment.