/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], darkMode: 'class', theme: { extend: { fontFamily: { sans: ['Inter', 'ui-sans-serif', 'system-ui'], mono: ['JetBrains Mono', 'ui-monospace', 'monospace'], }, colors: { // Accent color driven by CSS variables set by the theme store. accent: { 400: 'rgb(var(--accent-400) / )', 500: 'rgb(var(--accent-500) / )', 600: 'rgb(var(--accent-600) / )', 700: 'rgb(var(--accent-700) / )', }, }, }, }, plugins: [], }