clustvirt/assets/tailwind.config.js
Matthew Stobbs 6e0198de35 fixed list icons
- instead of trying to change their colors in css, i created new svgs based on the ones I wanted
2024-03-14 01:54:41 -06:00

23 lines
577 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["../view/**/*.gohtml"],
theme: {
extend: {
listStyleImage: {
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")',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('tailwind-dracula')(),
],
}