// setup/index.ts import { resolve } from 'path' import { defineShikiSetup } from '@slidev/types' import { fileURLToPath } from 'url' const __dirname = fileURLToPath(new URL('.', import.meta.url)) export default { name: 'sykehuspartner', // Allow the theme to be extended extends: { theme: '@slidev/theme-seriph', }, // Define the default configurations for the theme defaults: { fonts: { sans: 'Nunito Sans', mono: 'Fira Code', }, colorSchema: 'both', }, // Define any transformers for the slides here transformers: [], // Add Katex support by default katex: true, // Add highlighter configurations highlighter: { themes: { light: 'one-light', dark: 'one-dark-pro', }, }, }