tailwind.config.js 628 B

123456789101112131415161718192021222324252627282930
  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. fontFamily: {
  10. sans: ['Fira Sans', 'system-ui', 'sans-serif'],
  11. mono: ['Fira Code', 'monospace'],
  12. },
  13. colors: {
  14. primary: {
  15. 50: '#eff6ff',
  16. 100: '#dbeafe',
  17. 200: '#bfdbfe',
  18. 300: '#93c5fd',
  19. 400: '#60a5fa',
  20. 500: '#3b82f6',
  21. 600: '#2563eb',
  22. 700: '#1d4ed8',
  23. 800: '#1e40af',
  24. 900: '#1e3a8a',
  25. },
  26. },
  27. },
  28. },
  29. plugins: [],
  30. }