personal-website/tailwind.config.js
2024-04-21 08:07:35 -04:00

24 lines
391 B
JavaScript

/** @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')]
};