personal-website/tailwind.config.js

24 lines
357 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: []
};