tailwind.config.js 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: {
  11. 50: '#eff6ff',
  12. 100: '#dbeafe',
  13. 200: '#bfdbfe',
  14. 300: '#93c5fd',
  15. 400: '#60a5fa',
  16. 500: '#3b82f6',
  17. 600: '#2563eb',
  18. 700: '#1d4ed8',
  19. 800: '#1e40af',
  20. 900: '#1e3a8a',
  21. },
  22. gray: {
  23. 50: '#f9fafb',
  24. 100: '#f3f4f6',
  25. 200: '#e5e7eb',
  26. 300: '#d1d5db',
  27. 400: '#9ca3af',
  28. 500: '#6b7280',
  29. 600: '#4b5563',
  30. 700: '#374151',
  31. 800: '#1f2937',
  32. 900: '#111827',
  33. },
  34. },
  35. fontFamily: {
  36. sans: ['Inter', 'system-ui', 'sans-serif'],
  37. },
  38. },
  39. },
  40. plugins: [],
  41. }