-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (73 loc) · 1.8 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
70
71
72
73
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
circle: "circle .5s alternate-reverse infinite ease",
shadow: "shadow .5s alternate infinite ease",
ellipsis: "ellipsis steps(4,end) 3000ms infinite",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--gradient-color-stops))",
},
colors: {
panel: "#020104",
"gray-background": "#212227",
"gray-number": "#2A2C33",
"gray-slot": "#313642",
"purple-slot": "#937bfd",
"dark-purple-500": "#76719B",
"lottery-bg": "#111014",
"gradient-1": "#937BFD",
"gradient-2": "#CA87FF",
"gradient-3": "#FF9CAE",
},
keyframes: {
ellipsis: {
to: {
width: "1.25em",
},
},
wiggle: {
"0%, 100%": { transform: "scale(1.05)" },
"50%": { transform: "scale(1)" },
},
circle: {
"0%": {
top: "60px",
height: "5px",
borderRadius: "50px 50px 25px 25px",
transform: "scaleX(1.7)",
},
"40%": {
height: "20px",
borderRadius: "50%",
transform: "scaleX(1)",
},
"100%": {
top: "0%",
},
shadow: {
"0%": {
transform: "scaleX(1.5)",
},
"40%": {
transform: "scaleX(1)",
opacity: 0.7,
},
"100%": {
transform: "scaleX(.2)",
opacity: 0.4,
},
},
},
},
},
},
plugins: [],
}