-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
69 lines (68 loc) · 2.33 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
69
import daisyui from "daisyui";
const config = {
content: ["./src/**/*.{ts,tsx}"],
daisyui: {
darkTheme: "dracula",
themes: [
{
lemonade: {
...require("daisyui/src/theming/themes")["lemonade"],
neutral: "#212221",
primary: "#D48389",
secondary: "#6ECBC3",
error: "#FF0000",
success: "#49E949",
warning: "#F9FF50",
body: {
"border-radius": "11px",
},
"#root": {
"border-radius": "11px",
},
"#main": {
"--gradient-light":
"linear-gradient(187deg, rgba(248,253,239,1) 2%, rgba(203,110,118,0.05) 24%, rgba(203,110,118,0.05) 83%, rgba(248,253,239,1) 95%)",
"--bg-light": "url(/src/assets/texture-light.svg)",
background: "var(--bg-light)",
"background-repeat": "no-repeat",
"background-size": "cover ",
"background-blend-mode": "multiply",
"min-height": "100vh",
padding: "4rem 0.5rem 0.5rem 0.5rem",
"border-bottom-width": "2px",
"--tw-border-opacity": "1",
"border-bottom-color":
"var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))",
},
},
dracula: {
...require("daisyui/src/theming/themes")["dracula"],
primary: "#3caba2",
body: {
"border-radius": "11px",
},
"#root": {
"border-radius": "11px",
},
"#main": {
"--gradient-dark":
"linear-gradient(185deg, rgba(40,42,54,0.90) 2%, rgba(59,168,159,0) 24%, rgba(60,171,162,0.0) 80%, rgba(40,42,54,0.95) 95%)",
"--bg-dark": "url(/src/assets/texture-dark.svg)",
background: "var(--bg-dark)",
"background-repeat": "no-repeat",
"background-size": "cover ",
"background-blend-mode": "multiply",
"min-height": "100vh",
padding: "4rem 0.5rem 0.5rem 0.5rem",
"border-bottom-width": "2px",
"--tw-border-opacity": "1",
"border-bottom-color":
"var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))",
},
},
},
],
},
plugins: [require("@tailwindcss/typography"), daisyui],
};
export default config;