tailwind.config.js 501 B

1234567891011121314151617181920212223242526
  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. },
  23. },
  24. },
  25. plugins: [],
  26. }