-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1.66 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
blackish: "#6A6A6A",
lightblack: "rgb(49, 49, 49)",
translucent: "rgba(1, 1, 1, 0.142)",
pinkish: "#8bd3dd",
deep: "#6ae8f9",
navyblue: "#001858",
},
animation: {
"spin-slow": "spin 5s linear infinite",
"slide-out-red": "slide-out-red 1s forwards",
"slide-out-yellow": "slide-out-yellow 1s forwards",
"fade-in": "fade-in 1s cubic-bezier(0.4, 0, 0.2, 1)",
},
keyframes: {
"slide-out-red": {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-100%)" },
},
"slide-out-yellow": {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(100%)" },
},
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
corePlugins: {
preflight: false,
},
fontFamily: {
GoogleSans: ["Google-Sans", "sans-serif", "Helvetica", "Arial"],
},
backgroundImage: {
home: "url('/Assets/BG/home.png')",
about: "url('/Assets/BG/about.png')",
team: "url('/Assets/BG/team.png')",
faq: "url('/Assets/BG/faq.svg')",
management:
"https://pixabay.com/get/g054eff88dcb7865573af3e92e6a2a20c8b95ad013a526f15e99d2b0deacde4964bcccc89fff4be5091526aed417c4eb8e8458eb7e81de02c37f82a202631638bbadfbd9b2cdfe952061a7382457fb157_640.jpg",
},
},
},
plugins: [],
};