-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (42 loc) · 1.22 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
"color-dark-blue": "#06283D",
"color-dark-blue-2": "#144272",
"color-light-blue": "#1363DF",
"color-bg-transparent": "rgba(20, 66, 114, 0.11)",
"color-border": "#BDBDBD",
"color-white": "#fff",
"text-p-color": "#333333",
"color-red": "rgb(220 38 38)",
"color-btn": "#2F80ED",
"color-black": "#222",
},
screens: {
"2xl": { max: "1535px" },
// => @media (max-width: 1535px) { ... }
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
xlg: {max: "1150px"},
// => @media (max-width: 1150px) { ... }
lg: { max: "1024px" },
// => @media (max-width: 1023px) { ... }
xmd: { max: "950px" },
// => @media (max-width: 850px) { ... }
md: { max: "850px" },
// => @media (max-width: 850px) { ... }
xsm: { max: "750px" },
// => @media (max-width: 639px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
extend: {
backgroundImage: {
"main": "url(assets/RectLight.svg)"
}
},
},
plugins: [],
}