react-code-dataset / AnimeWaifuss /tailwind.config.js
Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
543 Bytes
/** @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: [],
}