/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{js,jsx,ts,tsx}'], theme: { extend: { animation: { wiggle: 'wiggle 1s ease-in-out infinite', 'spin-slow': 'spin 3s linear infinite', }, scale: { 200: '2.00', }, }, }, plugins: [], }