1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/tailwind.config.js

55 lines
981 B
JavaScript
Raw Normal View History

2022-08-15 06:53:14 +02:00
module.exports = {
content: [
"./renderer/pages/**/*.{js,ts,jsx,tsx}",
"./renderer/components/**/*.{js,ts,jsx,tsx}",
],
2022-12-16 17:20:46 +01:00
safelist: [
2022-12-21 11:32:45 +01:00
"group-hover:scale-[100%]",
"group-hover:scale-[125%]",
"group-hover:scale-[150%]",
"group-hover:scale-[175%]",
"group-hover:scale-[200%]",
2022-12-16 17:20:46 +01:00
],
2022-11-15 15:42:20 +01:00
theme: {
extend: {
spacing: {
128: "28rem",
},
},
},
2022-11-11 22:32:24 +01:00
plugins: [require("daisyui"), require("tailwind-scrollbar")],
2022-12-08 04:25:26 +01:00
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",
],
},
2022-08-15 06:53:14 +02:00
};