summaryrefslogtreecommitdiff
path: root/.changeset/cold-crabs-arrive.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/cold-crabs-arrive.md')
-rw-r--r--.changeset/cold-crabs-arrive.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/.changeset/cold-crabs-arrive.md b/.changeset/cold-crabs-arrive.md
deleted file mode 100644
index 6bde11b6a..000000000
--- a/.changeset/cold-crabs-arrive.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-'@astrojs/markdown-remark': minor
-'astro': minor
----
-
-Adds support for [Shiki's `defaultColor` option](https://shiki.style/guide/dual-themes#without-default-color).
-
-This option allows you to override the values of a theme's inline style, adding only CSS variables to give you more flexibility in applying multiple color themes.
-
-Configure `defaultColor: false` in your Shiki config to apply throughout your site, or pass to Astro's built-in `<Code>` component to style an individual code block.
-
-```js title="astro.config.mjs"
-import { defineConfig } from 'astro/config';
-export default defineConfig({
- markdown: {
- shikiConfig: {
- themes: {
- light: 'github-light',
- dark: 'github-dark',
- },
- defaultColor: false,
- },
- },
-});
-```
-
-```astro
----
-import { Code } from 'astro:components';
----
-<Code code={`const useMyColors = true`} lang="js" defaultColor={false} />
-```