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.

33 lines
646 B

3 years ago
  1. module.exports = {
  2. mode: 'jit',
  3. enabled: true,
  4. purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
  5. darkMode: 'media', // class, 'media' or boolean
  6. theme: {
  7. cursor: {
  8. auto: 'auto',
  9. default: 'default',
  10. pointer: 'pointer',
  11. },
  12. extend: {
  13. colors: {
  14. },
  15. gray: {
  16. 900: '#202225',
  17. 800: '#2f3136',
  18. 700: '#36393f',
  19. 600: '#4f545c',
  20. 400: '#d4d7dc',
  21. 300: '#e3e5e8',
  22. 200: '#ebedef',
  23. 100: '#f2f3f5',
  24. },
  25. spacing: {
  26. 88: '22rem',
  27. },
  28. },
  29. },
  30. variants: {},
  31. plugins: [],
  32. };