-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
55 lines (54 loc) · 1.23 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
const colors = require("tailwindcss/colors");
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: ["./**/*.html", "./**/*.tsx"],
theme: {
colors: {
...colors,
transparent: "transparent",
litho: {
black: "#191B1D",
cream: "#FBF9F3",
red: "#D50031",
blue: "#1B019A",
mustard: "#F1AA3C",
pink: "#F5BDC2",
wallet: "rgba(0, 0, 0, 0.12)",
gray4: "#BDBDBD",
nft: "#F9F7F1",
green: "#45986F",
},
},
fontFamily: {
sans: ["quasimoda", "sans-serif"],
},
extend: {
backgroundImage: () => ({
noise: "url('/Noise.png')",
grid: "url('/grid.png')",
"image-loading": "url('/image-loading.jpg')",
"home-1": "url('/bg-home-1.png')",
"home-2": "url('/bg-home-2.png')",
}),
height: {
customScreen: "calc(100vh - 274px)",
},
minHeight: {
customScreen2: "calc(100vh - 354px)",
create: "900px",
"litho-app": "648px",
"litho-body": "598px",
},
zIndex: {
"-10": "-10",
},
},
},
variants: {
fill: ["hover"],
},
plugins: [],
};