-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
31 lines (29 loc) · 1.03 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { type Config } from "tailwindcss";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [require("daisyui"), require("tailwind-scrollbar")],
daisyui: {
themes: [
// "business",
{
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
smartapply: {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-var-requires
...require("daisyui/src/colors/themes")["[data-theme=corporate]"],
"--rounded-box": "0.5rem", // border radius rounded-box utility class, used in card and other large boxes
"--rounded-btn": "0.5rem", // border radius rounded-btn utility class, used in buttons and similar element
// secondary: "#93c5fd",
primary: "#0ea5e9",
secondary: "#67CBA0",
accent: "#fb923c",
error: "#ef4444",
succcess: "#22c55e",
// "base-100": "#ffffff",
},
},
],
},
} satisfies Config;