From ce455b41a2a3d520a2f37c2d4c69bf6ab33a65f7 Mon Sep 17 00:00:00 2001 From: Matt Kosarek Date: Wed, 18 Mar 2026 08:17:44 -0400 Subject: feature: add a light and dark theme --- astro.config.mjs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'astro.config.mjs') 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, + }, + }, +}); -- cgit v1.2.1