custom-purge-config.js 370 B

123456789101112131415161718192021
  1. module.exports = {
  2. content: ['./tests/fixtures/*.html'],
  3. theme: {
  4. extend: {
  5. colors: {
  6. 'black!': '#000',
  7. },
  8. spacing: {
  9. 1.5: '0.375rem',
  10. '(1/2+8)': 'calc(50% + 2rem)',
  11. },
  12. minHeight: {
  13. '(screen-4)': 'calc(100vh - 1rem)',
  14. },
  15. fontFamily: {
  16. '%#$@': 'Comic Sans',
  17. },
  18. },
  19. },
  20. }