tailwind.config.js 660 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./src/**/*.{tsx,css}'],
  4. corePlugins: {
  5. preflight: false
  6. },
  7. theme: {
  8. fontFamily: {
  9. sans: ['Inter', 'sans-serif'],
  10. mono: [
  11. 'Monaco',
  12. 'ui-monospace',
  13. 'SFMono-Regular',
  14. 'Menlo',
  15. 'Consolas',
  16. 'Liberation Mono',
  17. 'Courier New',
  18. 'monospace'
  19. ]
  20. },
  21. container: {
  22. center: true,
  23. screens: {
  24. sm: '50rem'
  25. }
  26. },
  27. extend: {
  28. colors: {
  29. slate: {
  30. 850: 'hsl(222deg 47% 16%)'
  31. },
  32. primary: '#5fc3e7'
  33. }
  34. }
  35. },
  36. plugins: []
  37. };