/** @type {import('tailwindcss').Config} */ export default { darkMode: "class", content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], safelist: [ "bg-green-400", "bg-yellow-300", "bg-red-400", "bg-blue-100", "animate-pulse" ], theme: { extend: {}, }, plugins: [], }