| 12345678910111213141516171819 |
- import { defineConfig, presetWind3 } from 'unocss'
- export default defineConfig({
- presets: [presetWind3()],
- shortcuts: {
- 'bg-page': 'bg-[var(--bg-page)]',
- 'bg-base': 'bg-[var(--bg-base)]',
- 'bg-container': 'bg-[var(--bg-container)]',
- 'bg-overlay': 'bg-[var(--bg-overlay)]',
- 'text-primary': 'text-[var(--text-primary)]',
- 'text-secondary': 'text-[var(--text-secondary)]',
- 'text-tertiary': 'text-[var(--text-tertiary)]',
- 'text-strong': 'text-[var(--text-strong)]',
- 'border-light': 'border-[var(--border-light)]',
- 'border-base': 'border-[var(--border-base)]',
- },
- rules: []
- })
|