From d612bc45f5e3ebd42269af88af5e88cbc897bdae Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 1 Jan 2026 22:15:26 +0100 Subject: [PATCH] Fix markdown code block default color to use --text not --mdCodeBlock The mdCodeBlock color was being applied to all text in code blocks, overriding hljs syntax highlighting for unspanned text. --- packages/coding-agent/src/core/export-html/template.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/coding-agent/src/core/export-html/template.css b/packages/coding-agent/src/core/export-html/template.css index e6f6dad1..1e8ab138 100644 --- a/packages/coding-agent/src/core/export-html/template.css +++ b/packages/coding-agent/src/core/export-html/template.css @@ -620,7 +620,7 @@ .markdown-content pre code { display: block; background: none; - color: var(--mdCodeBlock); + color: var(--text); } .markdown-content blockquote {