-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
59 lines (51 loc) · 1.22 KB
/
tailwind.config.cjs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import daisyui from "daisyui";
/** @type {import('tailwindcss').Config}*/
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
boxShadow: {
center: "0 0 12px -2px rgb(0 0 0 / 0.05)"
}
}
},
daisyui: {
themes: [
{
light: {
primary: "#93BBFB",
"primary-content": "#212638",
secondary: "#DAE8FF",
"secondary-content": "#212638",
accent: "#93BBFB",
"accent-content": "#212638",
neutral: "#212638",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#f4f8ff",
"base-300": "#DAE8FF",
"base-content": "#212638",
info: "#93BBFB",
success: "#34EEB6",
warning: "#FFCF72",
error: "#FF8863",
"--rounded-btn": "9999rem",
".tooltip": {
"--tooltip-tail": "6px"
},
".link": {
textUnderlineOffset: "2px"
},
".link:hover": {
opacity: "80%"
},
".bg-green-ai": {
"background-color": "#DDFAE4"
}
}
}
]
},
plugins: [daisyui]
};
export default config;