/** @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', 233: '2.33', 250: '2.50', 266: '2.66', 300: '3.00', }, }, }, plugins: [], }