2024-03-14 01:12:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-03-14 18:23:05 +00:00
|
|
|
content: ["view/**/*.templ"],
|
2024-03-14 01:12:48 +00:00
|
|
|
theme: {
|
2024-03-14 04:21:01 +00:00
|
|
|
extend: {
|
|
|
|
listStyleImage: {
|
2024-03-14 07:54:41 +00:00
|
|
|
never: 'url("/static/icons/list-never.svg")',
|
|
|
|
accepted: 'url("/static/icons/list-accepted.svg")',
|
|
|
|
possible: 'url("/static/icons/list-possible.svg")',
|
|
|
|
informational: 'url("/static/icons/list-informational.svg")',
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
link: 'url("/static/icons/link.svg")',
|
2024-03-14 04:21:01 +00:00
|
|
|
},
|
|
|
|
},
|
2024-03-14 01:12:48 +00:00
|
|
|
},
|
2024-03-14 07:54:41 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
require('tailwind-dracula')(),
|
|
|
|
],
|
2024-03-14 01:12:48 +00:00
|
|
|
}
|
|
|
|
|