summaryrefslogtreecommitdiff
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-03-18 08:17:44 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-03-18 08:17:44 -0400
commitce455b41a2a3d520a2f37c2d4c69bf6ab33a65f7 (patch)
treed5ed04d3c1ec4d4a2b18ee57faf6bad659065f2e /astro.config.mjs
parent5256e50987e8173080bb84cfe881ac0e5f089847 (diff)
feature: add a light and dark themeHEADmaster
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs11
1 files changed, 10 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs
index 069c438..64eb8c6 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -6,4 +6,13 @@ export default defineConfig({
output: 'static',
site: 'https://matthewkosarek.xyz',
integrations: [sitemap()],
-}); \ No newline at end of file
+ markdown: {
+ shikiConfig: {
+ themes: {
+ light: 'github-light',
+ dark: 'dracula',
+ },
+ defaultColor: false,
+ },
+ },
+});