-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
87 lines (87 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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: "#555555",
// "base-content": "#ffffff",
// "base-100": "#414141",
// "--rounded-box": "3px",
// "--rounded-btn": "3px",
// "--rounded-badge": "3px",
// "--tab-radius": "3px"
// },
// light : {
// primary: "#43919b",
// secondary: "#30aadd",
// accent: "#00ffc6",
// neutral: "#e5e5e5",
// "base-content": "#000000",
// "base-100": "#ffffff",
// "--rounded-box": "3px",
// "--rounded-btn": "3px",
// "--rounded-badge": "3px",
// "--tab-radius": "3px"
// },
mytheme: {
primary: "#e24a6e",
secondary: "#83f42c",
accent: "#c1e053",
neutral: "#1D2125",
"base-300": "#EAEFF5",
"base-200": "#FAFAFA",
"base-100": "#FFFFFF",
info: "#A7B5E2",
success: "#3FE97D",
warning: "#EDB807",
error: "#EB735C",
},
},
],
base: true,
utils: true,
logs: true,
rtl: false,
darkTheme: "dark",
},
theme: {
extend: {
animation: {
'gradient-x':'gradient-x 5s ease infinite',
'gradient-xy':'gradient-xy 5s ease infinite',
},
keyframes: {
'gradient-x': {
'0%, 100%': {
'background-size':'200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
},
'gradient-xy': {
'0%, 100%': {
'background-size':'400% 400%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
}
},
height: {
'full-no-header': 'calc(100vh - 89px)',
},
},
},
};