-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 944 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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
"./components/**/*.tsx",
"./components/**/*.ts",
"./pages/**/*.tsx",
"./pages/**/*.ts",
],
theme: {
fontFamily: {
sans: ["Quattrocento Sans", "sans-serif"],
},
extend: {
spacing: {
9: "2.25rem",
11: "2.75rem",
},
colors: {
black: "#2f2e41",
white: "#ffffff",
primary: {
100: "#eeedff",
200: "#dcdbff",
300: "#a6a0ff",
400: "#8881ff",
500: "#6a61ff",
600: "#554ecc",
700: "#403a99",
800: "#2a2766",
900: "#151333",
},
},
},
},
variants: {
opacity: ["responsive", "hover", "focus", "group-hover", "group-focus"],
textColor: ["responsive", "hover", "focus", "group-hover", "group-focus"],
},
plugins: [],
};