This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
86 lines (86 loc) · 3.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./backend/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
],
safelist: [
"bg-neutral-300",
"bg-yellow-300",
"border-neutral-400",
"border-yellow-500",
"bg-purple-300",
"border-purple-400",
],
theme: {
extend: {
transitionProperty: {
navBar: "margin-left, margin-right, border-radius, height",
blueBorderLeft: "left, right",
productCard: "width, height, transform",
},
keyframes: {
slidein: {
"0%": { height: "0.2rem", marginRight: "50rem", marginLeft: "50rem", display: "none" },
"50%": { height: "0.2rem" },
"75%": { height: "0.2rem" },
"85%": { height: "0.2rem" },
},
hideImage: {
"0%": { opacity: "0" },
"50%": { opacity: "0" },
"95%": { opacity: "1" },
},
hideBlueBorder: {
"0%": { opacity: "0" },
"50%": { opacity: "0" },
"95%": { opacity: "1" },
},
hideNavBarContent: {
"0%": { opacity: "0" },
"50%": { opacity: "0" },
"95%": { opacity: "1" },
},
textTransition: {
"0%": { transform: "translateY(400%)", opacity: "0" },
"100%": { transform: "translateY(0%)", opacity: "1" },
},
textTransition2: {
"0%": { transform: "translateY(30%)", opacity: "0" },
"50%": { transform: "translateY(30%)", opacity: "0" },
"100%": { transform: "translateY(0%)" },
},
imageTransition: {
"0%": { transform: "scale(0.5)" },
"100%": { transform: "scale(1)" },
},
starBackground: {
"0%": { transform: "scale(1)" },
"100%": { transform: "scale(1.5)" },
},
},
animation: {
slidein: "slidein 1.2s",
hideImage: "hideImage 1.9s",
hideNavBarContent: "hideNavBarContent 1.2s",
hideBlueBorder: "hideBlueBorder 0.6s",
textTransition: "textTransition 2.2s",
textTransition2: "textTransition2 0.8s",
imageTransition: "imageTransition 1s",
starBackground: "starBackground 10s alternate infinite",
},
backgroundImage: {
"roadmap-tunnel": "url(/static/images/roadmap/roadmap-tunnel.png)",
"roadmap-man-silouette": "url(/static/images/roadmap/roadmap-silouhette.png)",
"roadmap-hexagone-nft": "url(/static/images/roadmap/roadmap-nft.png)",
},
colors: {
whiteCyan: "#eafdff",
mvxCyan: "#3ef9f6",
},
},
},
plugins: [],
};