46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
module.exports = {
|
|
content: [
|
|
"../templates/**/*.html",
|
|
|
|
"../../../templates/**/*.html",
|
|
|
|
"../../../**/templates/**/*.html",
|
|
|
|
/**
|
|
* JS: If you use Tailwind CSS in JavaScript, uncomment the following lines and make sure
|
|
* patterns match your project structure.
|
|
*/
|
|
/* JS 1: Ignore any JavaScript in node_modules folder. */
|
|
// '!../../**/node_modules',
|
|
/* JS 2: Process all JavaScript files in the project. */
|
|
// '../../**/*.js',
|
|
|
|
/**
|
|
* Python: If you use Tailwind CSS classes in Python, uncomment the following line
|
|
* and make sure the pattern below matches your project structure.
|
|
*/
|
|
"../../../core/templatetags/*.py",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
header: '#e0fcfc',
|
|
footer: '#e0fcfc',
|
|
base: '#ebffeb',
|
|
article: '#006fde'
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
/**
|
|
* '@tailwindcss/forms' is the forms plugin that provides a minimal styling
|
|
* for forms. If you don't like it or have own styling for forms,
|
|
* comment the line below to disable '@tailwindcss/forms'.
|
|
*/
|
|
require("@tailwindcss/forms"),
|
|
require("@tailwindcss/typography"),
|
|
require("@tailwindcss/line-clamp"),
|
|
require("@tailwindcss/aspect-ratio"),
|
|
],
|
|
};
|