-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtailwind.config.js
46 lines (46 loc) · 979 Bytes
/
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
module.exports = {
content: [
'./**/*.html', './**/**/*.html', './**/**/*.html', './**/**/**/*.html'
],
theme: {
gradientColorStops: (theme) => ({
...theme("colors"),
purpleone: "#6947E7",
purpletwo: "#9D7BE5",
}),
extend: {
fontFamily: {
leading: ["Darker Grotesque"],
reading: ["Poppins"],
},
colors: {
darkpurple: "#2e296d",
midgrey: "#858393",
purple: "#4C3FE4",
lightbg: "#F5F5F5",
mildgrey: "#8D8D8D",
darkgrey: "#848393",
midblack: "#251F54",
},
spacing: {
138: "8.62rem",
90: "5.62rem",
75: "4.68rem",
222: "13.9rem",
68: "4.25rem",
249: "15.5rem",
},
padding: {
15: "1rem",
30: "1.5rem",
},
inset: {
"-30": "-8rem",
},
gridTemplateRows: {
'10': 'repeat(10, minmax(0, 1fr))',
}
},
},
plugins: [],
}