🎨 style: Update background color of CodeBlock component to gray-900 (#6540)

This commit is contained in:
Ruben Talstra 2025-03-26 12:51:56 +01:00 committed by GitHub
parent aed468ce1a
commit 8fb6c38a89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,7 +119,7 @@ const CodeBlock: React.FC<CodeBlockProps> = ({
const language = isNonCode ? 'json' : lang;
return (
<div className="w-full rounded-md bg-surface-primary text-xs text-white/80">
<div className="w-full rounded-md bg-gray-900 text-xs text-white/80">
<CodeBar
lang={lang}
error={error}