Options

Change option for css from tailwind.config.js

How to settings?

You can change setting about Tailwindcss from this file. For example: Change Google fonts from tailwind.config.js

                
                  // tailwind.config.js
module.exports = {
  content: ['*.html/','./src/js/*.js',
    './docs/**/*.html','./snippets/*.html'],
  darkMode: 'class', // or 'media' or false
  theme: {
    extend: {},
    fontFamily: {
      sans: ['Nunito', 'sans-serif'],
      serif: ['Merriweather', 'serif'],
    },
  },
  variants: {
    extend: {
       backgroundOpacity: ['dark']
    }
  },
  plugins: [],
}
                
              

For more information about Theme configuration please read in here

You can editing more build system from gulpfile.js file