https-huggingface-co-davidkrk / tailwind.config.js
DavidKRK's picture
Upload folder using huggingface_hub
6140987 verified
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./bio.html",
"./music.html",
"./src/**/*.{css,js}"
],
theme: {
extend: {
fontFamily: {
'russo': ['Russo One', 'sans-serif'],
},
colors: {
'primary': '#FF0000',
'secondary': '#141414',
'text': '#FFFFFF',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out forwards',
'fade-in-down': 'fadeInDown 0.5s ease-in-out forwards',
'gradient': 'gradient 10s ease infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInDown: {
'0%': {
opacity: '0',
transform: 'translateY(-20px)'
},
'100%': {
opacity: '1',
transform: 'translateY(0)'
},
},
gradient: {
'0%, 100%': {
'background-position': '0% 50%'
},
'50%': {
'background-position': '100% 50%'
},
},
},
backgroundSize: {
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
'200%': '200%',
},
},
},
plugins: [],
}