/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './templates/**/*.twig', './src/Twig/*.php', './src/Menu/*.php', ], safelist: ['rotate-90'], theme: { container: { center: true, padding: '2rem', }, extend: { fontFamily: { sans: ['Lato', 'sans-serif'], }, fontWeight: { semibold: '700', bold: '900', }, colors: { primary: '#3d8ccb', secondary: '#f9c700', } }, }, plugins: [ require('@tailwindcss/forms'), require('@tailwindcss/typography'), ], }