-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
100 lines (98 loc) · 2.01 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const FARM_WITHDRAW_COLOR = "#FF4B47";
const THEME_BLUE = "#0576e2";
module.exports = {
mode: "jit",
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
cursor: {
auto: "auto",
default: "default",
pointer: "pointer",
wait: "wait",
text: "text",
move: "move",
"not-allowed": "not-allowed",
grab: "grab",
grabbing: "grabbing",
},
maxHeight: {
159: "36em",
160: "40em",
},
zIndex: {
"-1": "-1",
10: 10,
20: 20,
30: 30,
40: 40,
50: 50,
60: 60,
999: 999,
9998: 9998,
9999: 9999,
},
borderColor: (theme) => ({
...theme("colors"),
withdraw: FARM_WITHDRAW_COLOR,
}),
textColor: (theme) => ({
...theme("colors"),
withdraw: FARM_WITHDRAW_COLOR,
theme_blue: THEME_BLUE,
}),
backgroundColor: (theme) => ({
...theme("colors"),
withdraw: FARM_WITHDRAW_COLOR,
darkPearl: "#38DCDC",
}),
fontFamily: {
avenir: ["AvenirBlack"],
montserrat: ["Montserrat-Medium"],
aristotelica: ["AristotelicaBold"],
},
extend: {
gridTemplateColumns: {
// Simple 16 column grid
16: "repeat(16, minmax(0, 1fr))",
},
minWidth: {
xs: "15rem",
180: "180px",
},
maxWidth: {
canvas: "400px",
325: "325px",
},
height: {
canvas: "400px",
},
width: {
"7/10": "70%",
},
dropShadow: {
center: "0 0 5px rgba(0, 0, 0, 0.5)",
border: "0 0 1px rgba(0, 0, 0, 1)",
button: "0 2px 3px black",
},
spacing: {
"4%": "4%",
},
inset: {
"1/10": "10%",
},
},
},
variants: {
extend: {
//opacity: ["disabled"],
cursor: ["active"],
backdropBlur: ["hover"],
},
},
plugins: [require("daisyui")],
daisyui: {
base: false,
themes: ["emerald"],
},
};