2023-02-19 15:13:01 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2022-11-19 15:55:01 +01:00
|
|
|
module.exports = {
|
2023-01-13 11:19:01 +01:00
|
|
|
content: [
|
2022-11-19 15:55:01 +01:00
|
|
|
'../../config/**/*.yaml',
|
|
|
|
'../../pages/**/*.md',
|
|
|
|
'./blueprints/**/*.yaml',
|
|
|
|
'./js/**/*.js',
|
|
|
|
'./templates/**/*.twig',
|
|
|
|
'./{{ component.name|hyphenize }}.yaml',
|
|
|
|
'./{{ component.name|hyphenize }}.php'
|
|
|
|
],
|
|
|
|
darkMode: 'class', //false or 'media' or 'class'
|
2023-02-19 15:13:01 +01:00
|
|
|
theme: {},
|
2022-11-19 15:55:01 +01:00
|
|
|
variants: {
|
2023-02-19 15:13:01 +01:00
|
|
|
extend: {}
|
2022-11-19 15:55:01 +01:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
2023-01-13 11:19:01 +01:00
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
require('tailwindcss-debug-screens')
|
2023-02-19 15:13:01 +01:00
|
|
|
]
|
2022-11-19 15:55:01 +01:00
|
|
|
}
|