19 lines
508 B
JavaScript
19 lines
508 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pkg/appview/templates/**/*.html",
|
|
"./pkg/appview/public/js/**/*.js",
|
|
"./pkg/hold/admin/templates/**/*.html",
|
|
],
|
|
// Enable dark: variant based on 'dark' class (already toggled in head.html)
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mono: ['Monaco', 'Menlo', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
// DaisyUI is added via @plugin in CSS
|
|
}
|