-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
46 lines (45 loc) · 1.04 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
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
maxWidth: {
"12xl": "120rem",
},
minHeight: {
header: "calc(100vh - 88px)",
},
colors: {
brand: {
50: "#F1F6FE",
100: "#E3EEFD",
200: "#C2DAFA",
300: "#9CC3F6",
400: "#6DA7F2",
500: "#2F80ED",
600: "#1471EB",
700: "#1161CA",
800: "#0F52A9",
900: "#0A3671",
},
},
keyframes: {
bounceIn: {
"0%": { opacty: "0", transform: "translateY(8px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
"dialog-reveal": {
"0%": { opacty: "0", transform: "translateY(30px)" },
"100%": { opacty: "1", transform: "translateY(0)" },
},
},
animation: {
bounceIn: "bounceIn 300ms ease",
"dialog-reveal": "dialog-reveal 200ms ease",
},
},
fontFamily: {
sans: ["Roboto"],
},
},
plugins: [],
};