21 lines
No EOL
377 B
JavaScript
21 lines
No EOL
377 B
JavaScript
// 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: {
|
|
colors: {
|
|
brand: "#FD4F00",
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/forms"),
|
|
require("daisyui")
|
|
]
|
|
} |