generated from deco-sites/start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
26 lines (24 loc) · 1.15 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
export const theme = {
"primary": "hsl(180 100% 10%)",
"secondary": "hsl(0 39% 39%)",
"accent": "hsl(150 100% 50%)",
"neutral": "hsl(0 0% 20%)",
"base-100": "hsl(0 0% 100%)",
"success": "hsl(150 62% 95%)",
"warning": "hsl(43 100% 95%)",
"error": "hsl(9 100% 95%)",
"info": "hsl(220 100% 97%)",
"--rounded-box": "1rem", // 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
"--rounded-badge": "1.9rem", // border radius rounded-badge utility class, used in badges and similar
"--animation-btn": "0.25s", // duration of animation when you click on button
"--animation-input": "0.2s", // 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
};
export default {
content: ["./**/*.tsx"],
};