-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
tailwind.config.js
55 lines (55 loc) · 1.08 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"wave-scale": "waveScale 1s infinite",
},
animationDelay: {
100: "100ms",
200: "200ms",
300: "300ms",
400: "400ms",
500: "500ms",
600: "600ms",
700: "700ms",
800: "800ms",
900: "900ms",
1000: "1000ms",
},
colors: {
slate: {
920: "#191C3C",
960: "#191730",
},
},
padding: {
25: "7.3rem",
},
backdropBlur: {
none: "0",
blur: "blur(2px)",
"blur-lg": "blur(4px)",
"blur-xl": "blur(8px)",
"blur-2xl": "blur(12px)",
"blur-3xl": "blur(16px)",
},
boxShadow: {
bottom: "0 13px 10px -10px rgba(0.8, 0.8, 0.8, 0.8)",
},
font: {
primary: "Ysabeau Infant, sans-serif",
},
fontSize: {
xxs: "0.55rem",
},
},
},
variants: {
extend: {},
},
plugins: [],
};