Skip to content

Commit f36af06

Browse files
authored
fix(telescope): respect transparency (#542)
* fix(telescope): respect transparency * fix(telescope): TelescopeResultsTitle same color as no transparent background
1 parent de4bc35 commit f36af06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/catppuccin/groups/integrations/telescope.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ function M.get()
3232
bg = O.transparent_background and C.none or C.red,
3333
},
3434
TelescopeResultsTitle = {
35-
fg = C.mantle,
35+
fg = O.transparent_background and C.lavender or C.mantle,
3636
bg = O.transparent_background and C.none or C.lavender,
3737
},
3838
TelescopeSelection = {
39-
fg = O.transparent_background and C.subtext0 or C.text,
39+
fg = O.transparent_background and C.flamingo or C.text,
4040
bg = O.transparent_background and C.none or C.surface0,
4141
style = { "bold" },
4242
},

0 commit comments

Comments
 (0)