/** * The instant on-demand atomic CSS engine. * @see https://github.com/unocss/unocss */ import transformerDirectives from '@unocss/transformer-directives'; import { defineConfig, presetTypography, presetUno } from 'unocss'; export default defineConfig({ content: { pipeline: { exclude: ['node_modules', '.git', 'dist'], include: [ '**/*.md', '.vitepress/theme/**/*.{md,vue}', '.vitepress/@slidev/client/internals/SlideContainer.vue', '.vitepress/@slidev/client/layouts/*.vue', '.vitepress/@slidev/theme-default/layouts/*.vue', ], }, }, transformers: [transformerDirectives()], shortcuts: { 'bg-main': 'bg-white dark:bg-[#111]', }, theme: { colors: { primary: { DEFAULT: '#3AB9D4', deep: '#2082A6', }, }, fontFamily: { mono: "'IBM Plex Mono', source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace", }, }, presets: [presetUno(), presetTypography()], });