-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (36 loc) · 823 Bytes
/
tailwind.config.ts
File metadata and controls
38 lines (36 loc) · 823 Bytes
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
32
33
34
35
36
37
38
const baseTheme = {
"primary": "#0056aa",
"primary-focus": "#000f75",
"secondary": "#f07f3c",
"secondary-focus": "#fa4f29",
"accent": "#7c3aed",
"neutral": "#3d4451",
"base-100": "#fff",
"base-200": "#f5faff",
"info": "#3abff8",
"success": "#36d399",
"warning": "#fbbd23",
"error": "#f87272",
"--rounded-box": "0.5rem",
"--rounded-btn": "0.25rem",
"--rounded-badge": "1.9rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-text-case": "uppercase",
"--btn-focus-scale": "0.95",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.5rem",
};
module.exports = {
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
styled: true,
logs: false,
themes: [
{
iris: baseTheme,
},
],
},
};