/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { gray: { 650: '#4b5563', 750: '#2d3748', 850: '#1a202c', } }, animation: { 'fadeIn': 'fadeIn 0.3s ease-out', }, keyframes: { fadeIn: { '0%': { opacity: '0', transform: 'translateY(10px)' }, '100%': { opacity: '1', transform: 'translateY(0)' }, } } }, }, plugins: [], }