/** @type {import('tailwindcss').Config} */ export default { content: [ "./src/**/*.{js,jsx,ts,tsx}", "./examples/**/*.{js,jsx,ts,tsx}" ], theme: { extend: { colors: { 'maya': { primary: '#3B82F6', secondary: '#64748B', success: '#10B981', danger: '#EF4444', warning: '#F59E0B' } } }, }, plugins: [], }