-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
68 lines (41 loc) · 1.23 KB
/
tailwind.config.js
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
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
daisyui: {
themes: [
{
cupcake: {
primary: "#65c3c8",
"primary-focus": "#42b2b8",
"primary-content": "#ffffff",
secondary: "#ef9fbc",
"secondary-focus": "#e7739e",
"secondary-content": "#ffffff",
accent: "#eeaf3a",
"accent-focus": "#e09915",
"accent-content": "#ffffff",
neutral: "#261230",
"neutral-focus": "#200f29",
"neutral-content": "#ffffff",
"base-100": "#faf7f5",
"base-200": "#efeae6",
"base-300": "#e7e2df",
"base-content": "#261230",
info: "#1c92f2",
success: "#009485",
warning: "#ff9900",
error: "#ff5724",
"--rounded-box": "1rem",
"--rounded-btn": "1.9rem",
"--rounded-badge": "1.9rem",
"--animation-btn": ".25s",
"--animation-input": ".2s",
"--btn-text-case": "uppercase",
"--navbar-padding": ".5rem",
"--border-btn": "1px",
},
},
],
},
plugins: [require("daisyui")],
};