hestia/tailwind.config.ts
Dan Mihailescu ce0d940953 pretty
2024-12-15 18:17:02 -05:00

25 lines
441 B
TypeScript

import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
display: ['Baskervville SC']
},
animation: {
fade: 'fadeIn .5s ease-in-out'
},
keyframes: {
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' }
}
}
}
},
plugins: [typography]
} satisfies Config;