Skip to content

Commit 016c89d

Browse files
authored
refactor: update tsconfig.json formatting and adjust CodeBlock theme (#342)
- Reformatted `tsconfig.json` for improved readability by aligning array elements and paths. - Changed the theme in `CodeBlock.tsx` from "dark-plus" to "github-dark" for consistency with the light theme.
1 parent 7538bc8 commit 016c89d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ui/CodeBlock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function CodeBlock({
3030
.map(async () => {
3131
const out = await codeToHast(code || "", {
3232
lang: lang,
33-
theme: theme == "dark" ? "dark-plus" : "github-light",
33+
theme: theme == "dark" ? "github-dark" : "github-light",
3434
});
3535
return toJsxRuntime(out, {
3636
Fragment,

0 commit comments

Comments
 (0)