/** @type {import('tailwindcss').Config} */ export default { content: ['src/assets/app/**/*.{js,ts,jsx,tsx}'], theme: { fontFamily: { sans: [ '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Helvetica', 'Arial', 'sans-serif', ], mono: ['Monaco', 'mono'], }, extend: { colors: { brand: 'rgb(var(--color-brand) / )', error: 'rgb(var(--color-error) / )', warning: 'rgb(var(--color-warning) / )', }, }, }, plugins: [], }