-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
78 lines (78 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,ts}"],
theme: {
extend: {
colors: {
Explosion: "#9b291f",
Pierce: "#aa712c",
Mystic: "#4a7ca3",
Sonic: "#9431a5",
LightArmor: "#9b291f",
HeavyArmor: "#aa712c",
Unarmed: "#4a7ca3",
ElasticArmor: "#9431a5",
Main: "#cc1a25",
Support: "#006bff",
Eleph: "#dd6dd5",
Terrain: "#22c55e",
},
fontFamily: {
sans: [
'"Helvetica Neue"',
"Helvetica",
'"PingFang SC"',
'"Hiragino Sans GB"',
'"Microsoft YaHei"',
'"微软雅黑"',
"Arial",
"sans-serif",
],
},
fontSize: {
"2xs": ["0.625rem", "0.75rem"],
},
width: {
7.5: "1.875rem",
12.5: "3.125rem",
25: "6.25rem",
},
maxWidth: {
bounded: "100rem",
},
height: {
7.5: "1.875rem",
12.5: "3.125rem",
22.5: "5.625rem",
25: "6.25rem",
},
minHeight: {
9: "2.25rem",
72: "18rem",
},
opacity: {
12: "12%",
15: "15%",
},
rotate: {
35: "35deg",
},
skew: {
10: "10deg",
},
},
},
safelist: [
"bg-Explosion",
"bg-Pierce",
"bg-Mystic",
"bg-Sonic",
"bg-LightArmor",
"bg-HeavyArmor",
"bg-Unarmed",
"bg-ElasticArmor",
"bg-Main",
"bg-Support",
],
plugins: [],
};