Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

tailwind.config.js 1.1KB

1 ano atrás
1 ano atrás
123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. mode: 'jit',
  3. content: [
  4. '../templates/*.html'
  5. ],
  6. theme: {
  7. extend: {
  8. fontSize: {
  9. // xs: ['0.95rem', { lineHeight: '1.35' }],
  10. sm: ['0.85rem', { lineHeight: '1.35' }],
  11. base: ['1.1rem', { lineHeight: '1.22' }],
  12. lg: ['1.24rem', { lineHeight: '1.1' }],
  13. xl: ['1.5rem', { lineHeight: '1.1' }],
  14. '2xl': ['1.85rem', { lineHeight: '1' }],
  15. '3xl': ['2rem', { lineHeight: '1' }],
  16. '4xl': ['3rem', { lineHeight: '1' }],
  17. '5xl': ['4.2rem', { lineHeight: '0.9' }],
  18. // '6xl': ['3.75rem', { lineHeight: '1.04' }],
  19. // '7xl': ['4.5rem', { lineHeight: '1.1' }],
  20. // '8xl': ['6rem', { lineHeight: '1' }],
  21. // '9xl': ['8rem', { lineHeight: '1' }],
  22. },
  23. colors: {
  24. 'expurple': {
  25. DEFAULT: 'rgba(103, 48, 255,0.8)'
  26. }
  27. // 'ggreen': {
  28. // light: '#67e8f9',
  29. // DEFAULT: 'var(--primary-color)',
  30. // dark: '#0e7490',
  31. // },
  32. },
  33. }
  34. },
  35. variants: {
  36. extend: {},
  37. },
  38. plugins: [],
  39. }