tailwind.config.js 793 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,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. secondary: {
  23. 50: '#f8fafc',
  24. 100: '#f1f5f9',
  25. 200: '#e2e8f0',
  26. 300: '#cbd5e1',
  27. 400: '#94a3b8',
  28. 500: '#64748b',
  29. 600: '#475569',
  30. 700: '#334155',
  31. 800: '#1e293b',
  32. 900: '#0f172a',
  33. }
  34. }
  35. },
  36. },
  37. plugins: [],
  38. }