mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 11:49:34 +00:00
66 lines
No EOL
1.1 KiB
JavaScript
66 lines
No EOL
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/templates/**/*.html",
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require("daisyui"),
|
|
],
|
|
safelist: [
|
|
'h-3',
|
|
'w-3',
|
|
'inline-block',
|
|
'mr-1',
|
|
'text-info',
|
|
'bottom-4',
|
|
'right-4',
|
|
'w-80',
|
|
'z-50',
|
|
'translate-y-4',
|
|
'translate-y-0',
|
|
'opacity-0',
|
|
'opacity-100',
|
|
'pointer-events-none',
|
|
'pointer-events-auto',
|
|
'space-y-1',
|
|
'shrink-0',
|
|
],
|
|
daisyui: {
|
|
themes: [
|
|
"light",
|
|
"dark",
|
|
"cupcake",
|
|
"bumblebee",
|
|
"emerald",
|
|
"corporate",
|
|
"synthwave",
|
|
"retro",
|
|
"cyberpunk",
|
|
"valentine",
|
|
"halloween",
|
|
"garden",
|
|
"forest",
|
|
"aqua",
|
|
"lofi",
|
|
"pastel",
|
|
"fantasy",
|
|
"wireframe",
|
|
"black",
|
|
"luxury",
|
|
"dracula",
|
|
"cmyk",
|
|
"autumn",
|
|
"business",
|
|
"acid",
|
|
"lemonade",
|
|
"night",
|
|
"coffee",
|
|
"winter",
|
|
],
|
|
},
|
|
} |