-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
71 lines (71 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// tailwind.config.js
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: "class",
theme: {
extend: {
colors: {
dark: {
primary: "#0B0B0B",
secondary: "rgba(242, 242, 242, 0.1)",
},
light: {
primary: "#4B6989",
},
grey: {
dark: "#BFC6D1",
light: "#B6B6B6",
},
"white-bg": "rgba(250, 250, 250, 1)",
"off-white": "#f2f2f2",
CardBg: "rgba(191, 198, 209, 1)",
},
maxWidth: {
container: "1200px",
"2xl": "688px",
170: "170px",
268: "268px",
},
maxHeight: {
700: "700px",
},
minHeight: {
400: "400px",
min: "min-content",
},
margin: {},
width: {},
backgroundImage: {},
borderWidth: {},
fontSize: {
70: "70px",
32: "32px",
50: "50px",
30: "30px",
22: "22px",
38: "38px",
},
boxShadow: {
box: "0px 4px 8px rgba(0, 0, 0, 0.25)",
smooth: "0px 20px 45px rgba(0, 0, 0, 0.1)",
media: "0 0 0 0 rgba(44,177,188,.8)",
},
fontFamily: {
sans: ['"TTNorms-Regular"', "system-ui"],
serif: ['"TTNorms-Regular"', "system-ui"],
body: ["sans"],
display: ["sans"],
},
keyframes: {},
animation: {},
scale: {},
},
},
variants: {
extend: {
scale: ["group-hover, hover"],
transform: ["group-hover, hover"],
},
},
plugins: [],
};