import type { Config } from "tailwindcss"; export default { content: ["./index.html", "./src/**/*.{ts,tsx}"], theme: { extend: { colors: { bg: "#0f172a", panel: "#111827", accent: "#14b8a6", text: "#e5e7eb" } } }, plugins: [] } satisfies Config;