tailwind.config.js 773 B

12345678910111213141516171819202122232425262728293031323334
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{js,ts}'],
  4. darkMode: 'class',
  5. theme: {
  6. extend: {
  7. colors: {
  8. primary: {
  9. 50: '#eff6ff',
  10. 500: '#3b82f6',
  11. 600: '#2563eb',
  12. 700: '#1d4ed8',
  13. },
  14. gray: {
  15. 50: '#f9fafb',
  16. 100: '#f3f4f6',
  17. 200: '#e5e7eb',
  18. 300: '#d1d5db',
  19. 400: '#9ca3af',
  20. 500: '#6b7280',
  21. 600: '#4b5563',
  22. 700: '#374151',
  23. 800: '#1f2937',
  24. 900: '#111827',
  25. }
  26. },
  27. animation: {
  28. 'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
  29. 'bounce-slow': 'bounce 2s infinite',
  30. }
  31. },
  32. },
  33. plugins: [],
  34. }