tailwind.config.js 522 B

123456789101112131415161718192021222324252627
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{js,ts,jsx,tsx}",
  6. ],
  7. darkMode: 'class',
  8. theme: {
  9. extend: {
  10. colors: {
  11. primary: {
  12. 50: '#eff6ff',
  13. 100: '#dbeafe',
  14. 200: '#bfdbfe',
  15. 300: '#93c5fd',
  16. 400: '#60a5fa',
  17. 500: '#3b82f6',
  18. 600: '#2563eb',
  19. 700: '#1d4ed8',
  20. 800: '#1e40af',
  21. 900: '#1e3a8a',
  22. },
  23. },
  24. },
  25. },
  26. plugins: [],
  27. }