20 lines
430 B
TypeScript
20 lines
430 B
TypeScript
|
|
import type { Config } from 'tailwindcss';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
fontFamily: {
|
||
|
|
display: ['"Cormorant Garamond"', 'Georgia', 'serif'],
|
||
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||
|
|
},
|
||
|
|
colors: {
|
||
|
|
cream: '#fdf6ec',
|
||
|
|
sage: '#a3b18a',
|
||
|
|
rose: '#d4a5a5',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
} satisfies Config;
|