From 7be452ee067978cdc8b2c5f3411f0c71ffa612b9 Mon Sep 17 00:00:00 2001 From: Yi Ming Date: Sat, 5 Oct 2024 20:23:31 +0800 Subject: [PATCH] feat(render-markdown): change code block background to `mantle` (#774) --- lua/catppuccin/groups/integrations/render_markdown.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/catppuccin/groups/integrations/render_markdown.lua b/lua/catppuccin/groups/integrations/render_markdown.lua index 5a0e5df5..f1698575 100644 --- a/lua/catppuccin/groups/integrations/render_markdown.lua +++ b/lua/catppuccin/groups/integrations/render_markdown.lua @@ -5,8 +5,8 @@ local M = {} function M.get() local groups = { - RenderMarkdownCode = { bg = C.surface0 }, - RenderMarkdownCodeInline = { bg = C.surface1 }, + RenderMarkdownCode = { bg = C.mantle }, + RenderMarkdownCodeInline = { bg = C.surface0 }, RenderMarkdownBullet = { fg = C.sky }, RenderMarkdownTableHead = { fg = C.blue }, RenderMarkdownTableRow = { fg = C.lavender },