深浅色模式
Vivian 使用 VitePress 默认使用的。 Shiki 进行代码高亮,默认配置了 everforest-light 和 everforest-dark 主题。
everforest-light
everforest-dark
在完成环境搭建后
前往 .vitepress/config.mjs 设置
.vitepress/config.mjs
markdown: { theme: { light: 'everforest-light', // 浅色模式主题 dark: 'everforest-dark' // 深色模式主题 }, lineNumbers: true // 显示行号 }