Files
memer/frontend/tailwind.config.ts
2026-03-28 01:06:30 -05:00

33 lines
733 B
TypeScript

import type { Config } from 'tailwindcss';
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
accent: {
DEFAULT: '#a855f7',
hover: '#9333ea',
muted: '#7c3aed33',
},
},
animation: {
'fade-in': 'fadeIn 0.2s ease-out',
'scale-in': 'scaleIn 0.15s ease-out',
},
keyframes: {
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' },
},
scaleIn: {
from: { opacity: '0', transform: 'scale(0.95)' },
to: { opacity: '1', transform: 'scale(1)' },
},
},
},
},
plugins: [],
} satisfies Config;