feat: use two styles

This commit is contained in:
Barrett Ruth 2025-11-09 15:26:34 -05:00
parent 1de9c3decb
commit 15a2355f05
2 changed files with 73 additions and 5 deletions

View file

@ -4,6 +4,70 @@ import remarkMath from "remark-math";
import rehypeKatex from "rehype-katex";
import path from "path";
const midnight = {
name: "midnight",
type: "dark",
colors: {
"editor.background": "#121212",
"editor.foreground": "#e0e0e0",
},
tokenColors: [
{
scope: [
"keyword",
"storage.type",
"storage.modifier",
"keyword.control",
"keyword.operator.new",
],
settings: { foreground: "#7aa2f7" },
},
{
scope: [
"string",
"constant",
"constant.numeric",
"constant.language",
"constant.character",
"number",
],
settings: { foreground: "#e5c07b" },
},
],
};
const daylight = {
name: "daylight",
type: "light",
colors: {
"editor.background": "#f5f5f5",
"editor.foreground": "#1a1a1a",
},
tokenColors: [
{
scope: [
"keyword",
"storage.type",
"storage.modifier",
"keyword.control",
"keyword.operator.new",
],
settings: { foreground: "#3b5bdb" },
},
{
scope: [
"string",
"constant",
"constant.numeric",
"constant.language",
"constant.character",
"number",
],
settings: { foreground: "#996800" },
},
],
};
export default defineConfig({
build: {
format: "file",
@ -23,7 +87,10 @@ export default defineConfig({
},
markdown: {
shikiConfig: {
theme: "github-light",
themes: {
light: daylight,
dark: midnight,
},
langs: [],
wrap: true,
},