-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
63 lines (63 loc) · 2.19 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
module.exports = {
theme: {
extend: {
fontFamily: {
inconsolata: ["Inconsolata", "monospace"],
display: ["Major Mono Display", "monospace"]
},
colors: {
black: {
default: "#000",
"10": "rgba(0, 0, 0, 0.1)",
"20": "rgba(0, 0, 0, 0.2)",
"30": "rgba(0, 0, 0, 0.3)",
"40": "rgba(0, 0, 0, 0.4)",
"50": "rgba(0, 0, 0, 0.5)",
"60": "rgba(0, 0, 0, 0.6)",
"70": "rgba(0, 0, 0, 0.7)",
"80": "rgba(0, 0, 0, 0.8)",
"90": "rgba(0, 0, 0, 0.9)"
},
white: {
default: "#fff",
"10": "rgba(255, 255, 255, 0.1)",
"20": "rgba(255, 255, 255, 0.2)",
"30": "rgba(255, 255, 255, 0.3)",
"40": "rgba(255, 255, 255, 0.4)",
"50": "rgba(255, 255, 255, 0.5)",
"60": "rgba(255, 255, 255, 0.6)",
"70": "rgba(255, 255, 255, 0.7)",
"80": "rgba(255, 255, 255, 0.8)",
"90": "rgba(255, 255, 255, 0.9)"
},
primary: {
default: "#ffdc34",
"10": "#ffdc3419",
"20": "#ffdc3432",
"30": "#ffdc344b",
"40": "#ffdc3464",
"50": "#ffdc347d",
"60": "#ffdc3496",
"70": "#ffdc34af",
"80": "#ffdc34c8",
"90": "#ffdc34e1"
},
"dark-brown": "#0e0101",
"light-brown": "#543107"
},
height: {
"72": "18rem",
"96": "24rem",
},
translate: {
'full': '100%',
'1/2': '50%',
}
}
},
variants: {
textColor: ["responsive", "hover", "focus", "group-hover"],
borderColor: ["responsive", "hover", "focus", "group-hover"]
},
plugins: []
};