-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (52 loc) · 1.56 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
baseBlue: "#000E23",
baseBlueMid: "#011433",
baseBlueDark: "#010E23",
primaryBlue: "#3780FF",
primaryWhite: "#EEF1FC",
blueSilver: "#E2E8FF",
bodyGray: "#EEF1FC",
mediumGray: "#838383",
},
fontFamily: {
inter: ["Inter", ...defaultTheme.fontFamily.sans],
spaceGrotesk: ["Space Grotesk", ...defaultTheme.fontFamily.sans],
montserrat: ["Montserrat", ...defaultTheme.fontFamily.sans],
},
boxShadow: {
tooltipLight: "0px 0px 5px #A2C4FF",
tooltipDark: "0px 0px 5px #3780FF",
},
animation: {
shiny: "shimmer 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
shimmer: {
"0%, 100%": { opacity: 1 },
"50%": { opacity: 0.6 },
},
},
},
backgroundImage: {
"bg-pattern": "url('/Landing.png')",
"bg-pattern-sm": "url('/landing-sm.png')",
"bg-pattern-md": "url('/landing-md.png')",
"hero-gradient":
"linear-gradient(180deg, rgba(0, 14, 35, 0) 8.54%, #01050D 100%)",
"hero-gradient-mob":
"linear-gradient(180deg, rgba(3, 14, 33, 0) -21.54%, #01060F 100%)",
"safety-scale":
"linear-gradient(270deg, #67C84B 0%, #F5AF46 48.46%, #C8524B 102.25%)",
},
},
plugins: [],
};