Skip to content

Commit 9693f1a

Browse files
committed
fix
1 parent a908d67 commit 9693f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CodeTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default function CodeTabs() {
9898

9999
useEffect(() => {
100100
const { code, lang } = FILES[active];
101-
codeToHtml(code, { lang, theme: "dracula" }).then((html) => {
101+
codeToHtml(code, { lang, theme: "nord" }).then((html) => {
102102
const clean = html.replace(/background-color:[^;"]+;?/g, "");
103103
setHighlighted(clean);
104104
});

0 commit comments

Comments
 (0)