import type { Config } from "tailwindcss" export default { content: [ "./index.html", "./src/**/*.{ts,tsx}" ], darkMode: 'class', theme: { extend: { colors: { ember: { 500: "#f97316", 600: "#ea580c" } } } }, plugins: [] } satisfies Config