personal-website/tailwind.config.js

25 lines
357 B
JavaScript
Raw Normal View History

2024-04-11 11:53:39 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2024-04-12 18:27:54 +00:00
extend: {
container: {
center: true
2024-04-21 03:08:53 +00:00
},
colors: {
cirro: '#c4bef3'
2024-04-12 18:27:54 +00:00
}
},
2024-04-11 11:53:39 +00:00
container: {
2024-04-12 18:27:54 +00:00
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem'
}
2024-04-11 11:53:39 +00:00
}
},
plugins: []
};