File size: 543 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
height: {
'128': '26rem',
'130': '500px'
},
colors: {
'san': '#D4145A',
'guine': '#FBB03B'
},
fontFamily: {
'Beauty': ['Allura', 'cursive'],
'Dance': [ 'Pacifico', 'cursive'],
},
scale: {
'128': '2',
},
width: {
'128': '500px',
},
},
},
plugins: [],
}
|