2022-04-24 23:12:11 +02:00
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
|
|
],
|
|
|
|
theme: {
|
2022-04-25 22:59:07 +02:00
|
|
|
extend: {},
|
|
|
|
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['"Dancing Script"', 'cursive'],
|
|
|
|
},
|
|
|
|
|
|
|
|
letterSpacing: {
|
|
|
|
tightest: '-.075em',
|
|
|
|
tighter: '-.05em',
|
|
|
|
tight: '-.025em',
|
|
|
|
normal: '0.03em',
|
|
|
|
wide: '.045em',
|
|
|
|
wider: '.07em',
|
|
|
|
widest: '.1em',
|
|
|
|
widest: '.25em',
|
2022-04-25 22:51:45 +02:00
|
|
|
},
|
2022-04-24 23:12:11 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|