/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: '#3B82F6', success: '#10B981', warning: '#F59E0B', error: '#EF4444', }, animation: { scroll: 'scroll 30s linear infinite', }, keyframes: { scroll: { '0%': { transform: 'translateX(0)' }, '100%': { transform: 'translateX(-50%)' }, }, }, }, }, plugins: [], }