-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (63 loc) · 1.59 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{jsx,tsx}"],
theme: {
screens: {
xs: "380px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1400px",
"3xl": "1600px",
},
extend: {
colors: {
darkBackground: "#070B1A",
darkText: "#fff",
lightBackground: "#EEEEEE",
lightText: "#000"
},
keyframes: {
bounceslow: {
"0%": {
transform: "translateY(0)",
},
"20%": {
transform: "translateY(15px)",
},
"40%": {
transform: "translateY(30px)",
},
"50%": {
transform: "translateY(40px)",
},
"60%": {
transform: "translateY(30px)",
},
"80%": {
transform: "translateY(15px)",
},
"100%": {
transform: "translateY(0px)",
},
},
scroll: {
'0%': { opacity: '1' },
'50%': { transform: 'translateY(0)', opacity: '1' },
'100%': { transform: 'translateY(16px)', opacity: '1' },
},
},
animation: {
'spin-slow': 'spin 100s linear infinite',
'spin-medium': 'spin 50s linear infinite',
"bounce-slow": "bounceslow 12s linear infinite",
"bounce-medium": "bounceslow 8s linear infinite",
"scroll": 'scroll 2.2s cubic-bezier(.15,.41,.69,.94) infinite',
},
display: ["group-hover"],
},
},
plugins: [],
};