Skip to content

Instantly share code, notes, and snippets.

@hamzamu
Created October 28, 2021 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamzamu/9782f642efe6c43133d91054000e18d0 to your computer and use it in GitHub Desktop.
Save hamzamu/9782f642efe6c43133d91054000e18d0 to your computer and use it in GitHub Desktop.
tailwind.config.js
module.exports = {
purge: [
"./client/**/*.html",
"./client/**/*.vue",
"./client/**/*.jsx",
"./client/**/*.js",
"./imports/ui/**/*.js",
"./imports/ui/**/*.jsx"
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [
require('daisyui'),
// require('@tailwindcss/forms')
],
daisyui: {
styled: true,
themes: ['emerald'],
base: true,
utils: true,
logs: false,
rtl: false,
},
themes: [
'emerald', // first one will be the default theme
'dark',
'forest',
'synthwave'
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment