| 12345678910111213141516171819202122232425262728293031323334 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: ['./index.html', './src/**/*.{js,ts}'],
- darkMode: 'class',
- theme: {
- extend: {
- colors: {
- primary: {
- 50: '#eff6ff',
- 500: '#3b82f6',
- 600: '#2563eb',
- 700: '#1d4ed8',
- },
- gray: {
- 50: '#f9fafb',
- 100: '#f3f4f6',
- 200: '#e5e7eb',
- 300: '#d1d5db',
- 400: '#9ca3af',
- 500: '#6b7280',
- 600: '#4b5563',
- 700: '#374151',
- 800: '#1f2937',
- 900: '#111827',
- }
- },
- animation: {
- 'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
- 'bounce-slow': 'bounce 2s infinite',
- }
- },
- },
- plugins: [],
- }
|