/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { telegram: { bg: '#0e1621', sidebar: '#17212b', message: '#182533', blue: '#2b5278', accent: '#0088cc', text: '#f5f5f5', secondary: '#6c7883', incoming: '#182533', outgoing: '#2b5278', }, }, animation: { 'fade-in': 'fadeIn 0.3s ease-out', }, keyframes: { fadeIn: { '0%': { opacity: '0', transform: 'translateY(10px)' }, '100%': { opacity: '1', transform: 'translateY(0)' }, }, }, }, }, plugins: [], };