29 lines
588 B
JavaScript
29 lines
588 B
JavaScript
module.exports = {
|
|
content: [
|
|
'./_site/index.html', './_site/**/*.html',
|
|
'.eleventy.js',
|
|
],
|
|
theme: {
|
|
screens: {
|
|
'xs': '320px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
},
|
|
backgroundSize: {
|
|
'auto': 'auto',
|
|
'cover': 'cover',
|
|
'contain': 'contain',
|
|
'105%': '105%',
|
|
},
|
|
fontFamily: {
|
|
'serif': ['Sora', 'serif'],
|
|
'sans': ['Inter', 'sans-serif'],
|
|
'mono': ['VictorMono', 'monospace']
|
|
}
|
|
},
|
|
plugins: [
|
|
require("@catppuccin/tailwindcss"),
|
|
require("tailwindcss-animated"),
|
|
],
|
|
}
|