2022-08-15 10:23:14 +05:30
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
"./renderer/pages/**/*.{js,ts,jsx,tsx}",
|
|
|
|
"./renderer/components/**/*.{js,ts,jsx,tsx}",
|
|
|
|
],
|
2022-12-16 21:50:46 +05:30
|
|
|
safelist: [
|
2024-01-23 14:24:08 +05:30
|
|
|
...[...Array(101).keys()].flatMap((index) => [
|
2024-01-23 14:14:32 +05:30
|
|
|
`group-hover:scale-[${index * 10}%]`,
|
|
|
|
`group-hover:scale-[${index * 10}%]`,
|
|
|
|
]),
|
2022-12-16 21:50:46 +05:30
|
|
|
],
|
2022-11-15 20:12:20 +05:30
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
spacing: {
|
|
|
|
128: "28rem",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-11-26 13:34:03 +05:30
|
|
|
plugins: [
|
|
|
|
require("daisyui"),
|
|
|
|
require("tailwind-scrollbar"),
|
|
|
|
require("@tailwindcss/typography"),
|
|
|
|
],
|
2022-12-08 08:55:26 +05:30
|
|
|
daisyui: {
|
2023-09-16 16:04:35 +05:30
|
|
|
darkTheme: "upscayl",
|
2022-12-08 08:55:26 +05:30
|
|
|
themes: [
|
2023-08-26 12:57:15 +05:30
|
|
|
{
|
|
|
|
upscayl: {
|
|
|
|
primary: "#334155",
|
|
|
|
secondary: "#4f46e5",
|
|
|
|
accent: "#6d28d9",
|
|
|
|
neutral: "#475569",
|
|
|
|
"base-100": "#1e293b",
|
|
|
|
"base-200": "#0f172a",
|
|
|
|
"base-300": "#020617",
|
|
|
|
"--rounded-btn": "2rem", // border radius rounded-btn utility class, used in buttons and similar element
|
|
|
|
"--rounded-badge": "2rem", // border radius rounded-badge utility class, used in badges and similar
|
|
|
|
"--animation-btn": "0.5s", // duration of animation when you click on button
|
|
|
|
"--animation-input": "0.5s", // duration of animation for inputs like checkbox, toggle, radio, etc
|
|
|
|
"--btn-text-case": "uppercase", // set default text transform for buttons
|
|
|
|
"--btn-focus-scale": "0.95", // scale transform of button when you focus on it
|
|
|
|
"--border-btn": "1px", // border width of buttons
|
|
|
|
"--tab-border": "1px", // border width of tabs
|
|
|
|
"--tab-radius": "0.5rem", // border radius of tabs
|
|
|
|
},
|
|
|
|
},
|
2022-12-08 08:55:26 +05:30
|
|
|
"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 10:23:14 +05:30
|
|
|
};
|