tailwind.config.js 527 B

123456789101112131415161718192021222324252627
  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. 950: '#172554',
  22. },
  23. },
  24. },
  25. },
  26. plugins: [],
  27. }