You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
926 B

2 years ago
  1. module.exports = {
  2. purge: ['./src/**/*.ejs', './src/**/*.md'],
  3. theme: {
  4. fontSize: {
  5. xs: '0.75rem',
  6. sm: '0.875rem',
  7. base: '1rem',
  8. lg: '1.125rem',
  9. xl: '1.25rem',
  10. '2xl': '1.5rem',
  11. '3xl': '1.875rem',
  12. '4xl': '2.25rem',
  13. '5xl': '3rem',
  14. '6xl': '4rem',
  15. },
  16. extend: {
  17. colors: {
  18. blue: {
  19. 100: '#ebf8ff',
  20. 200: '#bee3f8',
  21. 300: '#90cdf4',
  22. 400: '#63b3ed',
  23. 500: '#4299e1',
  24. 600: '#3182ce',
  25. 700: '#2b6cb0',
  26. 800: '#2c5282',
  27. 900: '#2a4365',
  28. },
  29. gray: {
  30. 100: '#f7fafc',
  31. 200: '#edf2f7',
  32. 300: '#e2e8f0',
  33. 400: '#cbd5e0',
  34. 500: '#a0aec0',
  35. 600: '#718096',
  36. 700: '#4a5568',
  37. 800: '#2d3748',
  38. 900: '#1a202c',
  39. },
  40. },
  41. },
  42. },
  43. variants: {},
  44. plugins: [],
  45. };