2022-05-23 15:57:15 +02:00
|
|
|
// See the Tailwind configuration guide for advanced usage
|
|
|
|
// https://tailwindcss.com/docs/configuration
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./js/**/*.js',
|
|
|
|
'../lib/*_web.ex',
|
|
|
|
'../lib/*_web/**/*.*ex'
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2022-07-25 11:05:55 +02:00
|
|
|
daisyui: {
|
|
|
|
themes: ["winter", "night"],
|
|
|
|
darkTheme: "night"
|
|
|
|
},
|
2022-05-23 15:57:15 +02:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
require("daisyui")
|
|
|
|
]
|
|
|
|
}
|