-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
boxShadow: {
inner: "inset 0 0 3px rgba(0, 0, 0, 0.9)",
},
backgroundImage: {
home2bg: "./assets/homebg-2.svg",
"gradient-custom": "linear-gradient(180deg, #FFFFFF 0%, #CBECFC 100%)",
},
colors: {
mainBackgroundColor: "#CBECFC",
mainTextColor: "#000D49",
"navy-blue": "#000080", // Adjust this value to match your desired navy blue
"light-blue": "#E6F3FF", // Adjust this value to match the background in the image
"custom-blue": "#CBECFC",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
keyframes: {
slideDown: {
"0%": { opacity: 0, transform: "translateY(-10px)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
slideUp: {
"0%": { opacity: 1, transform: "translateY(0)" },
"100%": { opacity: 0, transform: "translateY(-10px)" },
},
fadeIn: {
"0%": { opacity: "0", transform: "translateY(-10px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
},
animation: {
"slide-down": "slideDown 0.3s ease-out forwards",
"slide-up": "slideUp 0.3s ease-in forwards",
"fade-in": "fadeIn 0.3s ease-out",
},
},
},
plugins: [],
};