Skip to content

Commit

Permalink
docs: update theme code
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-ub committed Oct 22, 2024
1 parent b87b6cd commit c24ebd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default defineConfig({
],
markdown: {
shikiConfig: {
theme: 'github-dark-default',
theme: 'github-dark',
transformers: [transformerMetaHighlight()],
},
rehypePlugins: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const allComponents = componentUi?.files?.flatMap((file) => {
<CodeAstro
code={code}
lang="angular-ts"
theme="github-dark-default"
theme="github-dark"
class="mb-4 mt-6 max-h-[650px] overflow-x-auto rounded-lg border !bg-zinc-950 py-4 dark:!bg-zinc-900 px-4"
/>
<CopyButton client:load {...{ rawString: code, withMeta: false }} />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/component-preview/RawCode.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { code } = Astro.props
<CodeAstro
code={code}
lang="angular-ts"
theme="github-dark-default"
theme="github-dark"
class="mb-4 mt-6 max-h-[650px] overflow-x-auto rounded-lg border !bg-zinc-950 py-4 dark:!bg-zinc-900 px-4"
/>
<CopyButton client:load {...{ rawString: code, withMeta: false }} />
Expand Down

0 comments on commit c24ebd6

Please sign in to comment.