-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.44 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
72
73
74
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: {
enabled: process.env.NODE_ENV === "production",
content: ["./src/**/*.html", "./src/**/*.svelte"],
},
theme: {
extend: {
colors: {
primary: "#404040",
danger: "#BF1323",
dangerDark: "#97000E",
brown: "#6c4725",
brownLight: "#cd9e6c",
gray: "#404040",
grayLight: "#9b9ba1",
offWhite: "#E4E5E9",
orangeLight: "#FFCD98",
purpleLight: "#C6B1FF",
cyanLight: "#A6FFEA",
white: "#ffffff",
},
spacing: {
11: "2.75rem",
36: "9rem",
},
borderRadius: {
xl: "0.65rem",
},
maxWidth: {
xxs: "16rem",
"1_5xl": "45rem",
},
width: {
28: "7rem",
},
margin: {
"-14": "-3.5rem",
"1/8": "8%",
"1/10": "10%",
"1/20": "20%",
"1/30": "30%",
"1/35": "35%",
},
scale: {
103: "1.03",
200: "2",
300: "3",
},
inset: {
"1/2": "50%",
},
borderWidth: {
3: "3px",
},
maxHeight: {
xs: "20rem",
sm: "24rem",
md: "28rem",
lg: "32rem",
},
transitionDuration: {
250: "250ms",
350: "350ms",
400: "400ms",
},
},
},
variants: {},
plugins: [],
};