/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { container: { center: true }, colors: { cirro: '#c4bef3' } }, container: { padding: { DEFAULT: '1rem', sm: '2rem', lg: '4rem', xl: '5rem', '2xl': '6rem' } } }, plugins: [require('@tailwindcss/typography')] };