/** @type {import('tailwindcss').Config} */ import type { Config } from 'tailwindcss' export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { extend: { keyframes: { 'rainbow-scroll': { '0%': { backgroundPosition: '0% 50%' }, '100%': { backgroundPosition: '200% 50%' }, }, }, animation: { 'rainbow-scroll': 'rainbow-scroll .25s linear infinite', }, } }, plugins: [], } satisfies Config