/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: { 400: '#33f3ff', 500: '#00f0ff', 600: '#00b8cc', 700: '#009fb3', }, secondary: { 500: '#ff0080', 600: '#cc0066', }, }, animation: { 'float': 'float 3s ease-in-out infinite', 'float-slow': 'floatSlow 6s ease-in-out infinite', 'glow': 'glow 2s ease-in-out infinite', 'pulse-slow': 'pulse 3s ease-in-out infinite', }, keyframes: { float: { '0%, 100%': { transform: 'translateY(0px)' }, '50%': { transform: 'translateY(-15px)' }, }, floatSlow: { '0%, 100%': { transform: 'translateY(0px) rotate(0deg)' }, '50%': { transform: 'translateY(-10px) rotate(5deg)' }, }, glow: { '0%, 100%': { boxShadow: '0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3)', }, '50%': { boxShadow: '0 0 30px rgba(0, 240, 255, 0.8), 0 0 60px rgba(0, 240, 255, 0.5)', }, }, }, }, }, plugins: [], }