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: '#f0f9ff',
  13. 100: '#e0f2fe',
  14. 200: '#bae6fd',
  15. 300: '#7dd3fc',
  16. 400: '#38bdf8',
  17. 500: '#0ea5e9',
  18. 600: '#0284c7',
  19. 700: '#0369a1',
  20. 800: '#075985',
  21. 900: '#0c4a6e',
  22. },
  23. },
  24. },
  25. },
  26. plugins: [],
  27. }