forked from BibliothecaDAO/eternum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
123 lines (123 loc) · 3.05 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
xxs: ".625rem",
},
cursor: {
'fancy': 'url(./cursor.png), pointer',
},
strokeWidth: {
8: "8px",
},
colors: {
gold: "#E0AF65",
crimson: "#89192D",
brilliance: "#7DFFBA",
orange: "#FE993C",
yellow: "#FAFF00",
red: "#FF0000",
"anger-light": "#CD8290",
"gray-gold": "#776756",
"light-pink": "#CAB1A6",
gray: "#1B1B1B",
brown: "#24130A",
"light-red": "#EF5858",
dark: "#48413C",
"dark-brown": "#54433A",
danger: "#C84444",
"dark-green": "#064105",
"dark-green-accent": "#3A3D23",
green: "#33FF00",
lightest: "#FFF5EA",
order: {
power: "#F4B547",
giants: "#EB544D",
titans: "#EC68A8",
skill: "#706DFF",
perfection: "#8E35FF",
twins: "#0020C6",
reflection: "#00A2AA",
detection: "#139757",
fox: "#D47230",
vitriol: "#59A509",
brilliance: "#7DFFBA",
enlightenment: "#1380FF",
protection: "#00C3A1",
fury: "#82005E",
rage: "#C74800",
anger: "#89192D",
},
},
},
},
safelist: [
"bg-order-power",
"bg-order-giants",
"bg-order-titans",
"bg-order-brilliance",
"bg-order-skill",
"bg-order-perfection",
"bg-order-twins",
"bg-order-reflection",
"bg-order-detection",
"bg-order-fox",
"bg-order-vitriol",
"bg-order-enlightenment",
"bg-order-protection",
"bg-order-fury",
"bg-order-rage",
"bg-order-anger",
"fill-order-power",
"fill-order-giants",
"fill-order-titans",
"fill-order-brilliance",
"fill-order-skill",
"fill-order-perfection",
"fill-order-twins",
"fill-order-reflection",
"fill-order-detection",
"fill-order-fox",
"fill-order-vitriol",
"fill-order-enlightenment",
"fill-order-protection",
"fill-order-fury",
"fill-order-rage",
"fill-order-anger",
"stroke-order-power",
"stroke-order-giants",
"stroke-order-titans",
"stroke-order-brilliance",
"stroke-order-skill",
"stroke-order-perfection",
"stroke-order-twins",
"stroke-order-reflection",
"stroke-order-detection",
"stroke-order-fox",
"stroke-order-vitriol",
"stroke-order-enlightenment",
"stroke-order-protection",
"stroke-order-fury",
"stroke-order-rage",
"stroke-order-anger",
"text-order-power",
"text-order-giants",
"text-order-titans",
"text-order-brilliance",
"text-order-skill",
"text-order-perfection",
"text-order-twins",
"text-order-reflection",
"text-order-detection",
"text-order-fox",
"text-order-vitriol",
"text-order-enlightenment",
"text-order-protection",
"text-order-fury",
"text-order-rage",
"text-order-anger",
],
plugins: [],
};