-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (35 loc) · 947 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (35 loc) · 947 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./index.html"],
theme: {
extend: {
fontFamily: {
sf: ["'SF Pro Display'", "sans-serif"]
},
colors: {
"pri-blue": "#0071BC",
"grey-89": "#898989",
"grey-d9": "#D9D9D9",
"dark-19": "#191919",
"bright-blue": "#049BFF"
},
backgroundImage: {
homeHero: "linear-gradient(180deg, rgba(0, 113, 188, 0.01) 0%, rgba(166, 213, 243, 0.09) 100%)"
},
boxShadow: {
reviewBox: "0px 4px 15px 0px rgba(0, 113, 188, 0.17)",
service: "0px 4px 4px 0px rgba(0, 0, 0, 0.25)"
},
animation: {
marquee: "marquee 30s linear infinite"
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-100%)' },
}
}
},
},
plugins: [],
}