-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
width: {
'1440px': '90rem',
},
maxHeight: {
'2130px': '132rem'
},
fontFamily: {
sans: ["var(--font-urbanist)"],
},
colors: {
"primary-lite": "#E8EDF6",
primary: "#2D65B4",
"primary-dark": "#02102E",
secondary: "#F1E18E",
"grey-lite": "#F4F4F2",
"grey-dark": "#1C1C1C",
"gradient-dark-blue": "#182978",
"gradient-lite-blue": "#2D65B4",
"gradient-lite-grey": "#E8EDF6",
"gradient-dark-grey": "#02102E",
"gradient-red": "#B8A540",
"gradient-yellow": "#7ECE3F",
"gradient-green": "#25DAE5",
"accent-red": "#B42D2D",
"accent-green": "#53BA02",
"accent-blue": "#31B8EE",
"logo-blue": " #3181DF",
"footer-gray": "rgba(255, 255, 255, 0.4)",
"gray-lite": "#D9D9D9",
},
backgroundImage: {
'blue-background': "url('/bkgd-overlay-image.png')",
"menu-icon" : "url('/icons8-menu.svg')",
"close-icon" : "url('/icons8-close.svg')",
}
},
},
plugins: [],
};