Skip to content

Commit

Permalink
fix(noice): respect transparency (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
emxxjnm authored Dec 21, 2023
1 parent 079500a commit 4fbab1f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion lua/catppuccin/groups/integrations/noice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,16 @@ function M.get()
NoiceCmdlinePopupBorder = { fg = C.lavender },
NoiceCmdlinePopupBorderSearch = { fg = C.yellow },
NoiceConfirmBorder = { fg = C.blue },
NoiceMini = { fg = C.text, blend = 0 },
NoiceMini = { fg = C.subtext0, blend = 0 },
NoiceFormatProgressDone = {
bg = O.transparent_background and C.none or U.darken(C.sky, 0.30, C.base),
fg = C.subtext0,
},
NoiceFormatProgressTodo = {
bg = O.transparent_background and C.none
or U.vary_color({ latte = U.lighten(C.mantle, 0.70, C.base) }, U.darken(C.surface0, 0.64, C.base)),
fg = C.subtext0,
},
}
end

Expand Down

0 comments on commit 4fbab1f

Please sign in to comment.