tailwind.config.js 560 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. // mode: 'jit',
  3. // jit document: https://tailwindcss.com/docs/just-in-time-mode
  4. purge: ['./src/**/*.html', './src/**/*.tsx', './src/**/*.ts'],
  5. darkMode: false, // or 'media' or 'class'
  6. theme: {
  7. extend: {
  8. spacing: {
  9. '5px': '5px',
  10. '10px': '10px',
  11. '20px': '20px',
  12. },
  13. colors: {
  14. ccc: '#ccc',
  15. ddd: '#ddd',
  16. },
  17. },
  18. },
  19. variants: {
  20. extend: {},
  21. },
  22. plugins: [],
  23. };