opengoal-launcher/tailwind.config.cjs

20 lines
341 B
JavaScript
Raw Permalink Normal View History

const config = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
],
theme: {
extend: {
dropShadow: {
text: "5px 5px 5px rgba(0, 0, 0, 1)",
},
},
},
plugins: [require("flowbite/plugin")],
darkMode: "class",
};
module.exports = config;