hestia/tailwind.config.ts
Benjamin Palko 783f0553f3 format
2024-12-19 21:00:31 -05:00

29 lines
519 B
TypeScript

import typography from '@tailwindcss/typography';
import daisyui from 'daisyui';
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, daisyui],
daisyui: {
logs: false,
},
} satisfies Config;