-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
69 lines (69 loc) · 2.3 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
display: ["Sora"],
body: ['"Noto Sans"'],
},
extend: {
colors: {
bgDark100: "#272343",
bgDark70: "#413C73",
bgDark50: "#4E448F",
text100: "#F1F3FC",
text70: "#E5E9FA",
text50: "#D1D6F4",
lavender70: "#B4BAED",
tabContainer: "#1F1C33",
productDark: "#131121",
canvas: "#19181f",
cardColor: "#5B4EAD",
dark: "#120F1A",
deepPurple: "#12131C",
},
backgroundImage: {
buttonGradient:
"linear-gradient(90deg, rgba(77,63,176,0.95) 0%, rgba(112,99,203,0.85) 100%)",
heroGradient:
"linear-gradient(calc(atan2(1080, 1920) + 0deg), #1C2336 5%, #12131C 35%, #12131C 50%, #35185C 100% )",
heroContGradient:
"linear-gradient(calc(atan2(1080, -1920) + 0deg), #1C2336 5%, #12131C 35%)",
aboutUsGradient: "linear-gradient(180deg, #12131C 0%, #120F1A 100%)",
moreAboutUsGradient:
"linear-gradient(calc(atan2(1080, 1920) + 0deg), #1C2336 5%, #12131C 35%, #12131C 50%, #35185C 100% )",
moreAboutUsContGradient:
"linear-gradient(calc(atan2(1080, -1920) + 0deg), #1C2336 5%, #12131C 35%, #12131C 50%, #35185C 100% )",
cardGradient:
"linear-gradient(180deg, rgba(79, 70, 138, .15) 0%, rgba(132, 125, 176, .15) 100%)",
faqGradient:
"linear-gradient(160deg, #120F1A 40%, #120F1A 55%, #3F3776 95%)",
ctaGradient:
"linear-gradient(20deg, #120F1A 40%, #120F1A 55%, #3F3776 95%)",
},
boxShadow: {
cardGlowEffect:
"inset 3px 3px 12px 0 rgb(255 255 255 / 0.12), inset -3px -3px 12px 0 rgb(255 255 255 / 0.12)",
},
animation: {
progress: "progress 1s infinite linear",
},
keyframes: {
progress: {
"0%": { transform: " translateX(0) scaleX(0)" },
"40%": { transform: "translateX(0) scaleX(0.4)" },
"100%": { transform: "translateX(100%) scaleX(0.5)" },
},
},
transformOrigin: {
"left-right": "0% 50%",
},
},
screens: {
xs: "480px",
sm: "768px",
md: "1060px",
},
},
plugins: [],
};