/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./assets/**/*.js", "./templates/**/*.html.twig", ], safelist: [ "bg-blue-300", "bg-orange-300", "bg-fuchsia-300", "bg-green-400", "bg-purple-400", "bg-orange-400", "bg-blue-600", "bg-rose-600", "alert-success", "alert-warning", "min-w-64", "rotate-180", "-rotate-180", "transition-opacity", "ease-in", "duration-700", "opacity-100" ], theme: { extend: { animation: { fade: 'fadeIn .3s ease-in-out', }, keyframes: { fadeIn: { from: { opacity: 0 }, to: { opacity: 1 }, }, }, }, }, plugins: [], }