/** @type {import('tailwindcss').Config} */ module.exports = { darkMode: 'class', content: [ "./app/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}" ], theme: { container: { center: true, padding: '2rem' }, extend: {}, }, plugins: [], }