-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (78 loc) · 1.12 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} */
export default {
content: ["./backend/routes/**/*.ejs"],
theme: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
safelist: [
"W",
"Y",
"R",
"B",
"G",
"downCard",
"black13",
"yellow13",
"red13",
"blue13",
"green13",
"black14",
"yellow14",
"red14",
"blue14",
"green14",
"red0",
"red1",
"red2",
"red3",
"red4",
"red5",
"red6",
"red7",
"red8",
"red9",
"redDraw2",
"redSkip",
"redRev",
"yellow0",
"yellow1",
"yellow2",
"yellow3",
"yellow4",
"yellow5",
"yellow6",
"yellow7",
"yellow8",
"yellow9",
"yellowDraw2",
"yellowSkip",
"yellowRev",
"blue0",
"blue1",
"blue2",
"blue3",
"blue4",
"blue5",
"blue6",
"blue7",
"blue8",
"blue9",
"blueDraw2",
"blueSkip",
"blueRev",
"green0",
"green1",
"green2",
"green3",
"green4",
"green5",
"green6",
"green7",
"green8",
"green9",
"greenDraw2",
"greenSkip",
"greenRev",
],
};