-
Notifications
You must be signed in to change notification settings - Fork 179
/
tailwind.config.js
61 lines (60 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/*.html"],
theme: {
extend: {
fontSize: {
xs: ["0.75rem", "1.125rem"]
},
colors: {
primary: {
25: "#F5FEFF",
50: "#ECFDFF",
100: "#CFF9FE",
200: "#A5F0FC",
300: "#67E3F9",
400: "#22CCEE",
500: "#06AED4",
600: "#088AB2",
700: "#0E7090",
800: "#155B75",
900: "#164C63"
}
},
animation: {
speaking: "speaking 0.5s infinite cubic-bezier(.36, .11, .89, .32) alternate",
zoomIn: "zoomIn 0.2s ease-in forwards"
},
keyframes: {
zoomIn: {
from: {
transform: `scale(0.2)`
},
to: {
transform: `scale(1)`
}
},
fadeInUp: {
from: {
opacity: 0,
transform: `translate3d(0, 100%, 0)`
},
to: {
opacity: 1,
transform: `translate3d(0, 0, 0)`
}
},
speaking: {
from: {
opacity: 0.8
},
to: {
opacity: 0
}
}
}
}
},
plugins: []
};