Spaces:
Configuration error
Configuration error
File size: 1,291 Bytes
6140987 |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
/** @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: [],
} |