tailwind.config.js 535 B

123456789101112131415161718192021
  1. const themeConfig = require('./app/theme.config.coffee');
  2. module.exports = {
  3. content: [
  4. "./app/**/*.{pug,coffee,styl}",
  5. "./src/**/*.{html,js,vue}"
  6. ],
  7. darkMode: 'class',
  8. theme: {
  9. extend: {
  10. colors: themeConfig.colors,
  11. fontFamily: themeConfig.typography.fonts,
  12. fontSize: themeConfig.typography.sizes,
  13. fontWeight: themeConfig.typography.weights,
  14. spacing: themeConfig.spacing,
  15. borderRadius: themeConfig.borderRadius,
  16. boxShadow: themeConfig.shadows
  17. },
  18. },
  19. plugins: [],
  20. }