2024-03-14 01:12:48 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-03-14 20:39:26 +00:00
|
|
|
content: ["**/*.templ", "**/*.go"],
|
2024-03-15 03:56:49 +00:00
|
|
|
safelist: [
|
|
|
|
{
|
|
|
|
pattern: /(bg|text|shadow|divide|border)-(aro|blade|buffy|cullen|dracula|lincoln|marcelin|morbius|nosferatu|vanhelsing|voncount)-[0-9]+/,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pattern: /list-image-(accepted|informational|never|possible)/,
|
|
|
|
},
|
|
|
|
],
|
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
|
|
|
}
|
|
|
|
|