/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { 'slate-900': '#0f172a', 'slate-800': '#1e293b', 'emerald-500': '#10b981', 'rose-500': '#f43f5e', 'blue-500': '#3b82f6', } }, }, plugins: [], }