fix(web): remove bg-muted/40 from Markdown code blocks

Quentin Gliech and Claude Opus 4.6 (1M context) created

The tinted background was washing out Shiki's light-colored tokens
(e.g. comments). Let Shiki's own theme background handle it — the
border alone provides enough visual separation.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Change summary

webui2/src/components/content/markdown.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

webui2/src/components/content/markdown.tsx 🔗

@@ -178,8 +178,8 @@ export function Markdown({ content, className, repoContext }: MarkdownProps) {
     <div
       className={cn(
         "prose prose-sm dark:prose-invert max-w-none",
-        // Code blocks: subtle border, tinted background, rounded corners
-        "prose-pre:rounded-md prose-pre:border prose-pre:border-border prose-pre:bg-muted/40 prose-pre:text-sm prose-pre:overflow-x-auto",
+        // Code blocks: subtle border, rounded corners — background comes from Shiki's theme
+        "prose-pre:rounded-md prose-pre:border prose-pre:border-border prose-pre:text-sm prose-pre:overflow-x-auto",
         // Inline code: muted background pill
         "prose-code:bg-muted prose-code:px-1 prose-code:py-0.5 prose-code:rounded-sm prose-code:text-sm prose-code:before:content-none prose-code:after:content-none",
         // Reset inline code styles inside highlighted code blocks