-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
41 lines (41 loc) · 988 Bytes
/
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
module.exports = {
mode: "jit",
content: ["./src/**/*.{html,js,svelte,ts}"],
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: [
{
dark: {
primary: "#43919b",
secondary: "#30aadd",
accent: "#00ffc6",
neutral: "#282828",
"base-content": "#ffffff",
"base-100": "#111111",
"--rounded-box": "2px",
"--rounded-btn": "2px",
"--rounded-badge": "2px",
"--tab-radius": "2px"
},
light : {
primary: "#43919b",
secondary: "#30aadd",
accent: "#00ffc6",
neutral: "#e5e5e5",
"base-content": "#000000",
"base-100": "#ffffff",
"--rounded-box": "2px",
"--rounded-btn": "2px",
"--rounded-badge": "2px",
"--tab-radius": "2px"
},
},
],
base: true,
utils: true,
logs: true,
rtl: false,
darkTheme: "dark",
},
};