import path from "path"; import { fileURLToPath } from "url"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** @type {import('tailwindcss').Config} */ export default { content: [ path.join(__dirname, "index.html"), path.join(__dirname, "src/**/*.{js,jsx}"), ], theme: { extend: { colors: { radio: { bg: "#0f1419", card: "#1a1f2e", border: "#2a3040", accent: "#f59e0b", "accent-dim": "#b45309", text: "#e2e8f0", muted: "#64748b", success: "#22c55e", danger: "#ef4444", }, }, }, }, plugins: [], };