-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"22346b": "#22346B",
EC6236: "#EC6236",
959595: "#959595",
FAFAFA: "#FAFAFA",
959595: "#959595",
DBDBDB: "#DBDBDB",
CF382D: "#CF382D",
191919: "#191919",
F1F1F1: "#F1F1F1",
C9C9C9: "#C9C9C9",
"4358DC": "#4358DC",
F49172: "#F49172",
"103DC6": "#103DC6",
"395AC1": "#395AC1",
595959: "#595959",
F7F7F8: "#F7F7F8",
EDEDED: "#EDEDED",
173591: "#173591",
},
fontFamily: {},
screens: {
xxl: { max: "1700px" },
// => @media (max-width: 1700px) { ... }
xl: { max: "1400px" },
// => @media (max-width: 1400px) { ... }
lg: { max: "1200px" },
// => @media (max-width: 1150px) { ... }
mlg: { max: "1024px" },
// => @media (max-width: 1024px) { ... }
md: { max: "768px" },
// => @media (max-width: 768px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
},
},
plugins: [require("tailwindcss-animated")],
};