From 6e00cc84553d6f893e47488c3865f487728af5d8 Mon Sep 17 00:00:00 2001 From: Patrick Barsanti Date: Thu, 6 Jun 2024 22:38:44 +0200 Subject: [PATCH] template: setup: Change code blocks theme Change the theme of shiki plugin, which is in charge of the code blocks. Change it from vitesse to github in both dark and light, to make it easier on the eyes and more pretty. Signed-off-by: Patrick Barsanti --- template/setup/shiki.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/setup/shiki.ts b/template/setup/shiki.ts index d68852c..4fb1a2a 100644 --- a/template/setup/shiki.ts +++ b/template/setup/shiki.ts @@ -4,8 +4,8 @@ import { defineShikiSetup } from '@slidev/types' export default defineShikiSetup((): ShikiSetupReturn => { return { themes: { - dark: 'vitesse-dark', - light: 'vitesse-light', + dark: 'github-dark-dimmed', + light: 'github-light', }, } })