| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], | |
| theme: { | |
| extend: { | |
| fontFamily: { | |
| display: ['"Cinzel Decorative"', 'cursive'], | |
| script: ['"Great Vibes"', 'cursive'], | |
| body: ['"Cormorant Garamond"', 'serif'], | |
| }, | |
| colors: { | |
| 'gold-accent': '#d4af37', | |
| 'deep-purple': '#2e0f35', | |
| 'midnight': '#0a0a12', | |
| }, | |
| animation: { | |
| 'fade-in': 'fadeIn 0.5s ease-out', | |
| 'fade-in-up': 'fadeInUp 0.8s ease-out', | |
| 'spin-slow': 'spin 3s linear infinite', | |
| }, | |
| keyframes: { | |
| fadeIn: { | |
| '0%': { opacity: '0' }, | |
| '100%': { opacity: '1' }, | |
| }, | |
| fadeInUp: { | |
| '0%': { opacity: '0', transform: 'translateY(20px)' }, | |
| '100%': { opacity: '1', transform: 'translateY(0)' }, | |
| }, | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| }; | |