@lobehub/ui 1.9.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/ActionIcon/index.js +2 -2
- package/es/ActionIcon/style.js +1 -1
- package/es/EditableMessageList/index.js +6 -6
- package/es/EditableText/index.js +1 -4
- package/es/Highlighter/style.js +1 -2
- package/es/Icon/index.d.ts +1 -0
- package/es/Icon/index.js +5 -2
- package/es/Input/index.d.ts +13 -0
- package/es/Input/index.js +38 -0
- package/es/Input/style.d.ts +6 -0
- package/es/Input/style.js +12 -0
- package/es/Markdown/style.js +1 -1
- package/es/MessageInput/index.d.ts +2 -0
- package/es/MessageInput/index.js +10 -8
- package/es/SearchBar/index.d.ts +1 -2
- package/es/SearchBar/index.js +9 -18
- package/es/SearchBar/style.d.ts +1 -3
- package/es/SearchBar/style.js +6 -8
- package/es/Snippet/style.js +1 -2
- package/es/StroyBook/style.js +1 -1
- package/es/ThemeProvider/index.d.ts +2 -6
- package/es/ThemeProvider/index.js +8 -18
- package/es/components/ControlInput.d.ts +1 -1
- package/es/components/ControlInput.js +20 -23
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/styles/algorithms/generateColorPalette.d.ts +11 -0
- package/es/styles/algorithms/generateColorPalette.js +31 -0
- package/es/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
- package/es/styles/{customStylish.js → algorithms/generateCustomStylish.js} +1 -1
- package/es/styles/algorithms/generateCustomToken.d.ts +3 -0
- package/es/styles/algorithms/generateCustomToken.js +57 -0
- package/es/styles/algorithms/generateTheme.d.ts +5 -0
- package/es/styles/algorithms/generateTheme.js +18 -0
- package/es/styles/colors.d.ts +38 -0
- package/es/styles/colors.js +176 -0
- package/es/styles/index.d.ts +3 -3
- package/es/styles/index.js +3 -3
- package/es/styles/theme/base.d.ts +2 -2
- package/es/styles/theme/base.js +8 -14
- package/es/styles/theme/dark.d.ts +3 -4
- package/es/styles/theme/dark.js +40 -71
- package/es/styles/theme/light.d.ts +3 -4
- package/es/styles/theme/light.js +41 -32
- package/es/types/customToken.d.ts +1027 -0
- package/es/types/global.d.ts +12 -0
- package/es/types/index.d.ts +5 -17
- package/es/types/index.js +1 -0
- package/lib/ActionIcon/index.js +2 -2
- package/lib/ActionIcon/style.js +2 -2
- package/lib/EditableMessageList/index.js +6 -6
- package/lib/EditableText/index.js +1 -1
- package/lib/Highlighter/style.js +1 -2
- package/lib/Icon/index.d.ts +1 -0
- package/lib/Icon/index.js +5 -2
- package/lib/Input/index.d.ts +13 -0
- package/lib/Input/index.js +45 -0
- package/lib/Input/style.d.ts +6 -0
- package/lib/Input/style.js +70 -0
- package/lib/Markdown/style.js +5 -1
- package/lib/MessageInput/index.d.ts +2 -0
- package/lib/MessageInput/index.js +6 -5
- package/lib/SearchBar/index.d.ts +1 -2
- package/lib/SearchBar/index.js +8 -26
- package/lib/SearchBar/style.d.ts +1 -3
- package/lib/SearchBar/style.js +1 -20
- package/lib/Snippet/style.js +1 -2
- package/lib/StroyBook/style.js +6 -1
- package/lib/ThemeProvider/index.d.ts +2 -6
- package/lib/ThemeProvider/index.js +12 -23
- package/lib/components/ControlInput.d.ts +1 -1
- package/lib/components/ControlInput.js +9 -19
- package/lib/index.d.ts +1 -0
- package/lib/index.js +5 -0
- package/lib/styles/algorithms/generateColorPalette.d.ts +11 -0
- package/lib/styles/algorithms/generateColorPalette.js +72 -0
- package/lib/styles/{customStylish.d.ts → algorithms/generateCustomStylish.d.ts} +1 -1
- package/lib/styles/{customStylish.js → algorithms/generateCustomStylish.js} +11 -7
- package/lib/styles/algorithms/generateCustomToken.d.ts +3 -0
- package/lib/styles/{customToken.js → algorithms/generateCustomToken.js} +42 -17
- package/lib/styles/algorithms/generateTheme.d.ts +5 -0
- package/lib/styles/algorithms/generateTheme.js +59 -0
- package/lib/styles/colors.d.ts +38 -0
- package/lib/styles/colors.js +1828 -0
- package/lib/styles/index.d.ts +3 -3
- package/lib/styles/index.js +18 -4
- package/lib/styles/theme/base.d.ts +2 -2
- package/lib/styles/theme/base.js +10 -16
- package/lib/styles/theme/dark.d.ts +3 -4
- package/lib/styles/theme/dark.js +46 -96
- package/lib/styles/theme/light.d.ts +3 -4
- package/lib/styles/theme/light.js +48 -38
- package/lib/types/customToken.d.ts +1027 -0
- package/lib/types/global.d.ts +12 -0
- package/lib/types/index.d.ts +5 -17
- package/lib/{styles/theme → types}/index.js +3 -18
- package/package.json +1 -1
- package/es/styles/algorithms/colorRelationship.d.ts +0 -6
- package/es/styles/algorithms/colorRelationship.js +0 -88
- package/es/styles/algorithms/index.d.ts +0 -15
- package/es/styles/algorithms/index.js +0 -66
- package/es/styles/algorithms/paletteGenerator.d.ts +0 -51
- package/es/styles/algorithms/paletteGenerator.js +0 -74
- package/es/styles/antdTheme.d.ts +0 -2
- package/es/styles/antdTheme.js +0 -4
- package/es/styles/customToken.d.ts +0 -65
- package/es/styles/customToken.js +0 -24
- package/es/styles/theme/index.d.ts +0 -2
- package/es/styles/theme/index.js +0 -2
- package/lib/styles/algorithms/colorRelationship.d.ts +0 -6
- package/lib/styles/algorithms/colorRelationship.js +0 -87
- package/lib/styles/algorithms/index.d.ts +0 -15
- package/lib/styles/algorithms/index.js +0 -81
- package/lib/styles/algorithms/paletteGenerator.d.ts +0 -51
- package/lib/styles/algorithms/paletteGenerator.js +0 -91
- package/lib/styles/antdTheme.d.ts +0 -2
- package/lib/styles/antdTheme.js +0 -30
- package/lib/styles/customToken.d.ts +0 -65
- package/lib/styles/theme/index.d.ts +0 -2
|
@@ -0,0 +1,1027 @@
|
|
|
1
|
+
export interface LobeCustomToken {
|
|
2
|
+
headerHeight: number;
|
|
3
|
+
footerHeight: number;
|
|
4
|
+
sidebarWidth: number;
|
|
5
|
+
tocWidth: number;
|
|
6
|
+
contentMaxWidth: number;
|
|
7
|
+
colorSolid: string;
|
|
8
|
+
gradientColor1: string;
|
|
9
|
+
gradientColor2: string;
|
|
10
|
+
gradientColor3: string;
|
|
11
|
+
gradientHeroBgG: string;
|
|
12
|
+
colorTomato1: string;
|
|
13
|
+
colorTomato2: string;
|
|
14
|
+
colorTomato3: string;
|
|
15
|
+
colorTomato4: string;
|
|
16
|
+
colorTomato5: string;
|
|
17
|
+
colorTomato6: string;
|
|
18
|
+
colorTomato7: string;
|
|
19
|
+
colorTomato8: string;
|
|
20
|
+
colorTomato9: string;
|
|
21
|
+
colorTomato10: string;
|
|
22
|
+
colorTomato11: string;
|
|
23
|
+
colorTomato12: string;
|
|
24
|
+
colorTomato13: string;
|
|
25
|
+
colorTomato1A: string;
|
|
26
|
+
colorTomato2A: string;
|
|
27
|
+
colorTomato3A: string;
|
|
28
|
+
colorTomato4A: string;
|
|
29
|
+
colorTomato5A: string;
|
|
30
|
+
colorTomato6A: string;
|
|
31
|
+
colorTomato7A: string;
|
|
32
|
+
colorTomato8A: string;
|
|
33
|
+
colorTomato9A: string;
|
|
34
|
+
colorTomato10A: string;
|
|
35
|
+
colorTomato11A: string;
|
|
36
|
+
colorTomato12A: string;
|
|
37
|
+
colorTomato13A: string;
|
|
38
|
+
colorTomatoBg: string;
|
|
39
|
+
colorTomatoBgHover: string;
|
|
40
|
+
colorTomatoBorder: string;
|
|
41
|
+
colorTomatoBorderHover: string;
|
|
42
|
+
colorTomatoHover: string;
|
|
43
|
+
colorTomato: string;
|
|
44
|
+
colorTomatoActive: string;
|
|
45
|
+
colorTomatoTextHover: string;
|
|
46
|
+
colorTomatoText: string;
|
|
47
|
+
colorRed1: string;
|
|
48
|
+
colorRed2: string;
|
|
49
|
+
colorRed3: string;
|
|
50
|
+
colorRed4: string;
|
|
51
|
+
colorRed5: string;
|
|
52
|
+
colorRed6: string;
|
|
53
|
+
colorRed7: string;
|
|
54
|
+
colorRed8: string;
|
|
55
|
+
colorRed9: string;
|
|
56
|
+
colorRed10: string;
|
|
57
|
+
colorRed11: string;
|
|
58
|
+
colorRed12: string;
|
|
59
|
+
colorRed13: string;
|
|
60
|
+
colorRed1A: string;
|
|
61
|
+
colorRed2A: string;
|
|
62
|
+
colorRed3A: string;
|
|
63
|
+
colorRed4A: string;
|
|
64
|
+
colorRed5A: string;
|
|
65
|
+
colorRed6A: string;
|
|
66
|
+
colorRed7A: string;
|
|
67
|
+
colorRed8A: string;
|
|
68
|
+
colorRed9A: string;
|
|
69
|
+
colorRed10A: string;
|
|
70
|
+
colorRed11A: string;
|
|
71
|
+
colorRed12A: string;
|
|
72
|
+
colorRed13A: string;
|
|
73
|
+
colorRedBg: string;
|
|
74
|
+
colorRedBgHover: string;
|
|
75
|
+
colorRedBorder: string;
|
|
76
|
+
colorRedBorderHover: string;
|
|
77
|
+
colorRedHover: string;
|
|
78
|
+
colorRed: string;
|
|
79
|
+
colorRedActive: string;
|
|
80
|
+
colorRedTextHover: string;
|
|
81
|
+
colorRedText: string;
|
|
82
|
+
colorCrimson1: string;
|
|
83
|
+
colorCrimson2: string;
|
|
84
|
+
colorCrimson3: string;
|
|
85
|
+
colorCrimson4: string;
|
|
86
|
+
colorCrimson5: string;
|
|
87
|
+
colorCrimson6: string;
|
|
88
|
+
colorCrimson7: string;
|
|
89
|
+
colorCrimson8: string;
|
|
90
|
+
colorCrimson9: string;
|
|
91
|
+
colorCrimson10: string;
|
|
92
|
+
colorCrimson11: string;
|
|
93
|
+
colorCrimson12: string;
|
|
94
|
+
colorCrimson13: string;
|
|
95
|
+
colorCrimson1A: string;
|
|
96
|
+
colorCrimson2A: string;
|
|
97
|
+
colorCrimson3A: string;
|
|
98
|
+
colorCrimson4A: string;
|
|
99
|
+
colorCrimson5A: string;
|
|
100
|
+
colorCrimson6A: string;
|
|
101
|
+
colorCrimson7A: string;
|
|
102
|
+
colorCrimson8A: string;
|
|
103
|
+
colorCrimson9A: string;
|
|
104
|
+
colorCrimson10A: string;
|
|
105
|
+
colorCrimson11A: string;
|
|
106
|
+
colorCrimson12A: string;
|
|
107
|
+
colorCrimson13A: string;
|
|
108
|
+
colorCrimsonBg: string;
|
|
109
|
+
colorCrimsonBgHover: string;
|
|
110
|
+
colorCrimsonBorder: string;
|
|
111
|
+
colorCrimsonBorderHover: string;
|
|
112
|
+
colorCrimsonHover: string;
|
|
113
|
+
colorCrimson: string;
|
|
114
|
+
colorCrimsonActive: string;
|
|
115
|
+
colorCrimsonTextHover: string;
|
|
116
|
+
colorCrimsonText: string;
|
|
117
|
+
colorPink1: string;
|
|
118
|
+
colorPink2: string;
|
|
119
|
+
colorPink3: string;
|
|
120
|
+
colorPink4: string;
|
|
121
|
+
colorPink5: string;
|
|
122
|
+
colorPink6: string;
|
|
123
|
+
colorPink7: string;
|
|
124
|
+
colorPink8: string;
|
|
125
|
+
colorPink9: string;
|
|
126
|
+
colorPink10: string;
|
|
127
|
+
colorPink11: string;
|
|
128
|
+
colorPink12: string;
|
|
129
|
+
colorPink13: string;
|
|
130
|
+
colorPink1A: string;
|
|
131
|
+
colorPink2A: string;
|
|
132
|
+
colorPink3A: string;
|
|
133
|
+
colorPink4A: string;
|
|
134
|
+
colorPink5A: string;
|
|
135
|
+
colorPink6A: string;
|
|
136
|
+
colorPink7A: string;
|
|
137
|
+
colorPink8A: string;
|
|
138
|
+
colorPink9A: string;
|
|
139
|
+
colorPink10A: string;
|
|
140
|
+
colorPink11A: string;
|
|
141
|
+
colorPink12A: string;
|
|
142
|
+
colorPink13A: string;
|
|
143
|
+
colorPinkBg: string;
|
|
144
|
+
colorPinkBgHover: string;
|
|
145
|
+
colorPinkBorder: string;
|
|
146
|
+
colorPinkBorderHover: string;
|
|
147
|
+
colorPinkHover: string;
|
|
148
|
+
colorPink: string;
|
|
149
|
+
colorPinkActive: string;
|
|
150
|
+
colorPinkTextHover: string;
|
|
151
|
+
colorPinkText: string;
|
|
152
|
+
colorPlum1: string;
|
|
153
|
+
colorPlum2: string;
|
|
154
|
+
colorPlum3: string;
|
|
155
|
+
colorPlum4: string;
|
|
156
|
+
colorPlum5: string;
|
|
157
|
+
colorPlum6: string;
|
|
158
|
+
colorPlum7: string;
|
|
159
|
+
colorPlum8: string;
|
|
160
|
+
colorPlum9: string;
|
|
161
|
+
colorPlum10: string;
|
|
162
|
+
colorPlum11: string;
|
|
163
|
+
colorPlum12: string;
|
|
164
|
+
colorPlum13: string;
|
|
165
|
+
colorPlum1A: string;
|
|
166
|
+
colorPlum2A: string;
|
|
167
|
+
colorPlum3A: string;
|
|
168
|
+
colorPlum4A: string;
|
|
169
|
+
colorPlum5A: string;
|
|
170
|
+
colorPlum6A: string;
|
|
171
|
+
colorPlum7A: string;
|
|
172
|
+
colorPlum8A: string;
|
|
173
|
+
colorPlum9A: string;
|
|
174
|
+
colorPlum10A: string;
|
|
175
|
+
colorPlum11A: string;
|
|
176
|
+
colorPlum12A: string;
|
|
177
|
+
colorPlum13A: string;
|
|
178
|
+
colorPlumBg: string;
|
|
179
|
+
colorPlumBgHover: string;
|
|
180
|
+
colorPlumBorder: string;
|
|
181
|
+
colorPlumBorderHover: string;
|
|
182
|
+
colorPlumHover: string;
|
|
183
|
+
colorPlum: string;
|
|
184
|
+
colorPlumActive: string;
|
|
185
|
+
colorPlumTextHover: string;
|
|
186
|
+
colorPlumText: string;
|
|
187
|
+
colorPurple1: string;
|
|
188
|
+
colorPurple2: string;
|
|
189
|
+
colorPurple3: string;
|
|
190
|
+
colorPurple4: string;
|
|
191
|
+
colorPurple5: string;
|
|
192
|
+
colorPurple6: string;
|
|
193
|
+
colorPurple7: string;
|
|
194
|
+
colorPurple8: string;
|
|
195
|
+
colorPurple9: string;
|
|
196
|
+
colorPurple10: string;
|
|
197
|
+
colorPurple11: string;
|
|
198
|
+
colorPurple12: string;
|
|
199
|
+
colorPurple13: string;
|
|
200
|
+
colorPurple1A: string;
|
|
201
|
+
colorPurple2A: string;
|
|
202
|
+
colorPurple3A: string;
|
|
203
|
+
colorPurple4A: string;
|
|
204
|
+
colorPurple5A: string;
|
|
205
|
+
colorPurple6A: string;
|
|
206
|
+
colorPurple7A: string;
|
|
207
|
+
colorPurple8A: string;
|
|
208
|
+
colorPurple9A: string;
|
|
209
|
+
colorPurple10A: string;
|
|
210
|
+
colorPurple11A: string;
|
|
211
|
+
colorPurple12A: string;
|
|
212
|
+
colorPurple13A: string;
|
|
213
|
+
colorPurpleBg: string;
|
|
214
|
+
colorPurpleBgHover: string;
|
|
215
|
+
colorPurpleBorder: string;
|
|
216
|
+
colorPurpleBorderHover: string;
|
|
217
|
+
colorPurpleHover: string;
|
|
218
|
+
colorPurple: string;
|
|
219
|
+
colorPurpleActive: string;
|
|
220
|
+
colorPurpleTextHover: string;
|
|
221
|
+
colorPurpleText: string;
|
|
222
|
+
colorViolet1: string;
|
|
223
|
+
colorViolet2: string;
|
|
224
|
+
colorViolet3: string;
|
|
225
|
+
colorViolet4: string;
|
|
226
|
+
colorViolet5: string;
|
|
227
|
+
colorViolet6: string;
|
|
228
|
+
colorViolet7: string;
|
|
229
|
+
colorViolet8: string;
|
|
230
|
+
colorViolet9: string;
|
|
231
|
+
colorViolet10: string;
|
|
232
|
+
colorViolet11: string;
|
|
233
|
+
colorViolet12: string;
|
|
234
|
+
colorViolet13: string;
|
|
235
|
+
colorViolet1A: string;
|
|
236
|
+
colorViolet2A: string;
|
|
237
|
+
colorViolet3A: string;
|
|
238
|
+
colorViolet4A: string;
|
|
239
|
+
colorViolet5A: string;
|
|
240
|
+
colorViolet6A: string;
|
|
241
|
+
colorViolet7A: string;
|
|
242
|
+
colorViolet8A: string;
|
|
243
|
+
colorViolet9A: string;
|
|
244
|
+
colorViolet10A: string;
|
|
245
|
+
colorViolet11A: string;
|
|
246
|
+
colorViolet12A: string;
|
|
247
|
+
colorViolet13A: string;
|
|
248
|
+
colorVioletBg: string;
|
|
249
|
+
colorVioletBgHover: string;
|
|
250
|
+
colorVioletBorder: string;
|
|
251
|
+
colorVioletBorderHover: string;
|
|
252
|
+
colorVioletHover: string;
|
|
253
|
+
colorViolet: string;
|
|
254
|
+
colorVioletActive: string;
|
|
255
|
+
colorVioletTextHover: string;
|
|
256
|
+
colorVioletText: string;
|
|
257
|
+
colorIndigo1: string;
|
|
258
|
+
colorIndigo2: string;
|
|
259
|
+
colorIndigo3: string;
|
|
260
|
+
colorIndigo4: string;
|
|
261
|
+
colorIndigo5: string;
|
|
262
|
+
colorIndigo6: string;
|
|
263
|
+
colorIndigo7: string;
|
|
264
|
+
colorIndigo8: string;
|
|
265
|
+
colorIndigo9: string;
|
|
266
|
+
colorIndigo10: string;
|
|
267
|
+
colorIndigo11: string;
|
|
268
|
+
colorIndigo12: string;
|
|
269
|
+
colorIndigo13: string;
|
|
270
|
+
colorIndigo1A: string;
|
|
271
|
+
colorIndigo2A: string;
|
|
272
|
+
colorIndigo3A: string;
|
|
273
|
+
colorIndigo4A: string;
|
|
274
|
+
colorIndigo5A: string;
|
|
275
|
+
colorIndigo6A: string;
|
|
276
|
+
colorIndigo7A: string;
|
|
277
|
+
colorIndigo8A: string;
|
|
278
|
+
colorIndigo9A: string;
|
|
279
|
+
colorIndigo10A: string;
|
|
280
|
+
colorIndigo11A: string;
|
|
281
|
+
colorIndigo12A: string;
|
|
282
|
+
colorIndigo13A: string;
|
|
283
|
+
colorIndigoBg: string;
|
|
284
|
+
colorIndigoBgHover: string;
|
|
285
|
+
colorIndigoBorder: string;
|
|
286
|
+
colorIndigoBorderHover: string;
|
|
287
|
+
colorIndigoHover: string;
|
|
288
|
+
colorIndigo: string;
|
|
289
|
+
colorIndigoActive: string;
|
|
290
|
+
colorIndigoTextHover: string;
|
|
291
|
+
colorIndigoText: string;
|
|
292
|
+
colorBlue1: string;
|
|
293
|
+
colorBlue2: string;
|
|
294
|
+
colorBlue3: string;
|
|
295
|
+
colorBlue4: string;
|
|
296
|
+
colorBlue5: string;
|
|
297
|
+
colorBlue6: string;
|
|
298
|
+
colorBlue7: string;
|
|
299
|
+
colorBlue8: string;
|
|
300
|
+
colorBlue9: string;
|
|
301
|
+
colorBlue10: string;
|
|
302
|
+
colorBlue11: string;
|
|
303
|
+
colorBlue12: string;
|
|
304
|
+
colorBlue13: string;
|
|
305
|
+
colorBlue1A: string;
|
|
306
|
+
colorBlue2A: string;
|
|
307
|
+
colorBlue3A: string;
|
|
308
|
+
colorBlue4A: string;
|
|
309
|
+
colorBlue5A: string;
|
|
310
|
+
colorBlue6A: string;
|
|
311
|
+
colorBlue7A: string;
|
|
312
|
+
colorBlue8A: string;
|
|
313
|
+
colorBlue9A: string;
|
|
314
|
+
colorBlue10A: string;
|
|
315
|
+
colorBlue11A: string;
|
|
316
|
+
colorBlue12A: string;
|
|
317
|
+
colorBlue13A: string;
|
|
318
|
+
colorBlueBg: string;
|
|
319
|
+
colorBlueBgHover: string;
|
|
320
|
+
colorBlueBorder: string;
|
|
321
|
+
colorBlueBorderHover: string;
|
|
322
|
+
colorBlueHover: string;
|
|
323
|
+
colorBlue: string;
|
|
324
|
+
colorBlueActive: string;
|
|
325
|
+
colorBlueTextHover: string;
|
|
326
|
+
colorBlueText: string;
|
|
327
|
+
colorCyan1: string;
|
|
328
|
+
colorCyan2: string;
|
|
329
|
+
colorCyan3: string;
|
|
330
|
+
colorCyan4: string;
|
|
331
|
+
colorCyan5: string;
|
|
332
|
+
colorCyan6: string;
|
|
333
|
+
colorCyan7: string;
|
|
334
|
+
colorCyan8: string;
|
|
335
|
+
colorCyan9: string;
|
|
336
|
+
colorCyan10: string;
|
|
337
|
+
colorCyan11: string;
|
|
338
|
+
colorCyan12: string;
|
|
339
|
+
colorCyan13: string;
|
|
340
|
+
colorCyan1A: string;
|
|
341
|
+
colorCyan2A: string;
|
|
342
|
+
colorCyan3A: string;
|
|
343
|
+
colorCyan4A: string;
|
|
344
|
+
colorCyan5A: string;
|
|
345
|
+
colorCyan6A: string;
|
|
346
|
+
colorCyan7A: string;
|
|
347
|
+
colorCyan8A: string;
|
|
348
|
+
colorCyan9A: string;
|
|
349
|
+
colorCyan10A: string;
|
|
350
|
+
colorCyan11A: string;
|
|
351
|
+
colorCyan12A: string;
|
|
352
|
+
colorCyan13A: string;
|
|
353
|
+
colorCyanBg: string;
|
|
354
|
+
colorCyanBgHover: string;
|
|
355
|
+
colorCyanBorder: string;
|
|
356
|
+
colorCyanBorderHover: string;
|
|
357
|
+
colorCyanHover: string;
|
|
358
|
+
colorCyan: string;
|
|
359
|
+
colorCyanActive: string;
|
|
360
|
+
colorCyanTextHover: string;
|
|
361
|
+
colorCyanText: string;
|
|
362
|
+
colorTeal1: string;
|
|
363
|
+
colorTeal2: string;
|
|
364
|
+
colorTeal3: string;
|
|
365
|
+
colorTeal4: string;
|
|
366
|
+
colorTeal5: string;
|
|
367
|
+
colorTeal6: string;
|
|
368
|
+
colorTeal7: string;
|
|
369
|
+
colorTeal8: string;
|
|
370
|
+
colorTeal9: string;
|
|
371
|
+
colorTeal10: string;
|
|
372
|
+
colorTeal11: string;
|
|
373
|
+
colorTeal12: string;
|
|
374
|
+
colorTeal13: string;
|
|
375
|
+
colorTeal1A: string;
|
|
376
|
+
colorTeal2A: string;
|
|
377
|
+
colorTeal3A: string;
|
|
378
|
+
colorTeal4A: string;
|
|
379
|
+
colorTeal5A: string;
|
|
380
|
+
colorTeal6A: string;
|
|
381
|
+
colorTeal7A: string;
|
|
382
|
+
colorTeal8A: string;
|
|
383
|
+
colorTeal9A: string;
|
|
384
|
+
colorTeal10A: string;
|
|
385
|
+
colorTeal11A: string;
|
|
386
|
+
colorTeal12A: string;
|
|
387
|
+
colorTeal13A: string;
|
|
388
|
+
colorTealBg: string;
|
|
389
|
+
colorTealBgHover: string;
|
|
390
|
+
colorTealBorder: string;
|
|
391
|
+
colorTealBorderHover: string;
|
|
392
|
+
colorTealHover: string;
|
|
393
|
+
colorTeal: string;
|
|
394
|
+
colorTealActive: string;
|
|
395
|
+
colorTealTextHover: string;
|
|
396
|
+
colorTealText: string;
|
|
397
|
+
colorGreen1: string;
|
|
398
|
+
colorGreen2: string;
|
|
399
|
+
colorGreen3: string;
|
|
400
|
+
colorGreen4: string;
|
|
401
|
+
colorGreen5: string;
|
|
402
|
+
colorGreen6: string;
|
|
403
|
+
colorGreen7: string;
|
|
404
|
+
colorGreen8: string;
|
|
405
|
+
colorGreen9: string;
|
|
406
|
+
colorGreen10: string;
|
|
407
|
+
colorGreen11: string;
|
|
408
|
+
colorGreen12: string;
|
|
409
|
+
colorGreen13: string;
|
|
410
|
+
colorGreen1A: string;
|
|
411
|
+
colorGreen2A: string;
|
|
412
|
+
colorGreen3A: string;
|
|
413
|
+
colorGreen4A: string;
|
|
414
|
+
colorGreen5A: string;
|
|
415
|
+
colorGreen6A: string;
|
|
416
|
+
colorGreen7A: string;
|
|
417
|
+
colorGreen8A: string;
|
|
418
|
+
colorGreen9A: string;
|
|
419
|
+
colorGreen10A: string;
|
|
420
|
+
colorGreen11A: string;
|
|
421
|
+
colorGreen12A: string;
|
|
422
|
+
colorGreen13A: string;
|
|
423
|
+
colorGreenBg: string;
|
|
424
|
+
colorGreenBgHover: string;
|
|
425
|
+
colorGreenBorder: string;
|
|
426
|
+
colorGreenBorderHover: string;
|
|
427
|
+
colorGreenHover: string;
|
|
428
|
+
colorGreen: string;
|
|
429
|
+
colorGreenActive: string;
|
|
430
|
+
colorGreenTextHover: string;
|
|
431
|
+
colorGreenText: string;
|
|
432
|
+
colorGrass1: string;
|
|
433
|
+
colorGrass2: string;
|
|
434
|
+
colorGrass3: string;
|
|
435
|
+
colorGrass4: string;
|
|
436
|
+
colorGrass5: string;
|
|
437
|
+
colorGrass6: string;
|
|
438
|
+
colorGrass7: string;
|
|
439
|
+
colorGrass8: string;
|
|
440
|
+
colorGrass9: string;
|
|
441
|
+
colorGrass10: string;
|
|
442
|
+
colorGrass11: string;
|
|
443
|
+
colorGrass12: string;
|
|
444
|
+
colorGrass13: string;
|
|
445
|
+
colorGrass1A: string;
|
|
446
|
+
colorGrass2A: string;
|
|
447
|
+
colorGrass3A: string;
|
|
448
|
+
colorGrass4A: string;
|
|
449
|
+
colorGrass5A: string;
|
|
450
|
+
colorGrass6A: string;
|
|
451
|
+
colorGrass7A: string;
|
|
452
|
+
colorGrass8A: string;
|
|
453
|
+
colorGrass9A: string;
|
|
454
|
+
colorGrass10A: string;
|
|
455
|
+
colorGrass11A: string;
|
|
456
|
+
colorGrass12A: string;
|
|
457
|
+
colorGrass13A: string;
|
|
458
|
+
colorGrassBg: string;
|
|
459
|
+
colorGrassBgHover: string;
|
|
460
|
+
colorGrassBorder: string;
|
|
461
|
+
colorGrassBorderHover: string;
|
|
462
|
+
colorGrassHover: string;
|
|
463
|
+
colorGrass: string;
|
|
464
|
+
colorGrassActive: string;
|
|
465
|
+
colorGrassTextHover: string;
|
|
466
|
+
colorGrassText: string;
|
|
467
|
+
colorOrange1: string;
|
|
468
|
+
colorOrange2: string;
|
|
469
|
+
colorOrange3: string;
|
|
470
|
+
colorOrange4: string;
|
|
471
|
+
colorOrange5: string;
|
|
472
|
+
colorOrange6: string;
|
|
473
|
+
colorOrange7: string;
|
|
474
|
+
colorOrange8: string;
|
|
475
|
+
colorOrange9: string;
|
|
476
|
+
colorOrange10: string;
|
|
477
|
+
colorOrange11: string;
|
|
478
|
+
colorOrange12: string;
|
|
479
|
+
colorOrange13: string;
|
|
480
|
+
colorOrange1A: string;
|
|
481
|
+
colorOrange2A: string;
|
|
482
|
+
colorOrange3A: string;
|
|
483
|
+
colorOrange4A: string;
|
|
484
|
+
colorOrange5A: string;
|
|
485
|
+
colorOrange6A: string;
|
|
486
|
+
colorOrange7A: string;
|
|
487
|
+
colorOrange8A: string;
|
|
488
|
+
colorOrange9A: string;
|
|
489
|
+
colorOrange10A: string;
|
|
490
|
+
colorOrange11A: string;
|
|
491
|
+
colorOrange12A: string;
|
|
492
|
+
colorOrange13A: string;
|
|
493
|
+
colorOrangeBg: string;
|
|
494
|
+
colorOrangeBgHover: string;
|
|
495
|
+
colorOrangeBorder: string;
|
|
496
|
+
colorOrangeBorderHover: string;
|
|
497
|
+
colorOrangeHover: string;
|
|
498
|
+
colorOrange: string;
|
|
499
|
+
colorOrangeActive: string;
|
|
500
|
+
colorOrangeTextHover: string;
|
|
501
|
+
colorOrangeText: string;
|
|
502
|
+
colorBrown1: string;
|
|
503
|
+
colorBrown2: string;
|
|
504
|
+
colorBrown3: string;
|
|
505
|
+
colorBrown4: string;
|
|
506
|
+
colorBrown5: string;
|
|
507
|
+
colorBrown6: string;
|
|
508
|
+
colorBrown7: string;
|
|
509
|
+
colorBrown8: string;
|
|
510
|
+
colorBrown9: string;
|
|
511
|
+
colorBrown10: string;
|
|
512
|
+
colorBrown11: string;
|
|
513
|
+
colorBrown12: string;
|
|
514
|
+
colorBrown13: string;
|
|
515
|
+
colorBrown1A: string;
|
|
516
|
+
colorBrown2A: string;
|
|
517
|
+
colorBrown3A: string;
|
|
518
|
+
colorBrown4A: string;
|
|
519
|
+
colorBrown5A: string;
|
|
520
|
+
colorBrown6A: string;
|
|
521
|
+
colorBrown7A: string;
|
|
522
|
+
colorBrown8A: string;
|
|
523
|
+
colorBrown9A: string;
|
|
524
|
+
colorBrown10A: string;
|
|
525
|
+
colorBrown11A: string;
|
|
526
|
+
colorBrown12A: string;
|
|
527
|
+
colorBrown13A: string;
|
|
528
|
+
colorBrownBg: string;
|
|
529
|
+
colorBrownBgHover: string;
|
|
530
|
+
colorBrownBorder: string;
|
|
531
|
+
colorBrownBorderHover: string;
|
|
532
|
+
colorBrownHover: string;
|
|
533
|
+
colorBrown: string;
|
|
534
|
+
colorBrownActive: string;
|
|
535
|
+
colorBrownTextHover: string;
|
|
536
|
+
colorBrownText: string;
|
|
537
|
+
colorSky1: string;
|
|
538
|
+
colorSky2: string;
|
|
539
|
+
colorSky3: string;
|
|
540
|
+
colorSky4: string;
|
|
541
|
+
colorSky5: string;
|
|
542
|
+
colorSky6: string;
|
|
543
|
+
colorSky7: string;
|
|
544
|
+
colorSky8: string;
|
|
545
|
+
colorSky9: string;
|
|
546
|
+
colorSky10: string;
|
|
547
|
+
colorSky11: string;
|
|
548
|
+
colorSky12: string;
|
|
549
|
+
colorSky13: string;
|
|
550
|
+
colorSky1A: string;
|
|
551
|
+
colorSky2A: string;
|
|
552
|
+
colorSky3A: string;
|
|
553
|
+
colorSky4A: string;
|
|
554
|
+
colorSky5A: string;
|
|
555
|
+
colorSky6A: string;
|
|
556
|
+
colorSky7A: string;
|
|
557
|
+
colorSky8A: string;
|
|
558
|
+
colorSky9A: string;
|
|
559
|
+
colorSky10A: string;
|
|
560
|
+
colorSky11A: string;
|
|
561
|
+
colorSky12A: string;
|
|
562
|
+
colorSky13A: string;
|
|
563
|
+
colorSkyBg: string;
|
|
564
|
+
colorSkyBgHover: string;
|
|
565
|
+
colorSkyBorder: string;
|
|
566
|
+
colorSkyBorderHover: string;
|
|
567
|
+
colorSkyHover: string;
|
|
568
|
+
colorSky: string;
|
|
569
|
+
colorSkyActive: string;
|
|
570
|
+
colorSkyTextHover: string;
|
|
571
|
+
colorSkyText: string;
|
|
572
|
+
colorMint1: string;
|
|
573
|
+
colorMint2: string;
|
|
574
|
+
colorMint3: string;
|
|
575
|
+
colorMint4: string;
|
|
576
|
+
colorMint5: string;
|
|
577
|
+
colorMint6: string;
|
|
578
|
+
colorMint7: string;
|
|
579
|
+
colorMint8: string;
|
|
580
|
+
colorMint9: string;
|
|
581
|
+
colorMint10: string;
|
|
582
|
+
colorMint11: string;
|
|
583
|
+
colorMint12: string;
|
|
584
|
+
colorMint13: string;
|
|
585
|
+
colorMint1A: string;
|
|
586
|
+
colorMint2A: string;
|
|
587
|
+
colorMint3A: string;
|
|
588
|
+
colorMint4A: string;
|
|
589
|
+
colorMint5A: string;
|
|
590
|
+
colorMint6A: string;
|
|
591
|
+
colorMint7A: string;
|
|
592
|
+
colorMint8A: string;
|
|
593
|
+
colorMint9A: string;
|
|
594
|
+
colorMint10A: string;
|
|
595
|
+
colorMint11A: string;
|
|
596
|
+
colorMint12A: string;
|
|
597
|
+
colorMint13A: string;
|
|
598
|
+
colorMintBg: string;
|
|
599
|
+
colorMintBgHover: string;
|
|
600
|
+
colorMintBorder: string;
|
|
601
|
+
colorMintBorderHover: string;
|
|
602
|
+
colorMintHover: string;
|
|
603
|
+
colorMint: string;
|
|
604
|
+
colorMintActive: string;
|
|
605
|
+
colorMintTextHover: string;
|
|
606
|
+
colorMintText: string;
|
|
607
|
+
colorLime1: string;
|
|
608
|
+
colorLime2: string;
|
|
609
|
+
colorLime3: string;
|
|
610
|
+
colorLime4: string;
|
|
611
|
+
colorLime5: string;
|
|
612
|
+
colorLime6: string;
|
|
613
|
+
colorLime7: string;
|
|
614
|
+
colorLime8: string;
|
|
615
|
+
colorLime9: string;
|
|
616
|
+
colorLime10: string;
|
|
617
|
+
colorLime11: string;
|
|
618
|
+
colorLime12: string;
|
|
619
|
+
colorLime13: string;
|
|
620
|
+
colorLime1A: string;
|
|
621
|
+
colorLime2A: string;
|
|
622
|
+
colorLime3A: string;
|
|
623
|
+
colorLime4A: string;
|
|
624
|
+
colorLime5A: string;
|
|
625
|
+
colorLime6A: string;
|
|
626
|
+
colorLime7A: string;
|
|
627
|
+
colorLime8A: string;
|
|
628
|
+
colorLime9A: string;
|
|
629
|
+
colorLime10A: string;
|
|
630
|
+
colorLime11A: string;
|
|
631
|
+
colorLime12A: string;
|
|
632
|
+
colorLime13A: string;
|
|
633
|
+
colorLimeBg: string;
|
|
634
|
+
colorLimeBgHover: string;
|
|
635
|
+
colorLimeBorder: string;
|
|
636
|
+
colorLimeBorderHover: string;
|
|
637
|
+
colorLimeHover: string;
|
|
638
|
+
colorLime: string;
|
|
639
|
+
colorLimeActive: string;
|
|
640
|
+
colorLimeTextHover: string;
|
|
641
|
+
colorLimeText: string;
|
|
642
|
+
colorYellow1: string;
|
|
643
|
+
colorYellow2: string;
|
|
644
|
+
colorYellow3: string;
|
|
645
|
+
colorYellow4: string;
|
|
646
|
+
colorYellow5: string;
|
|
647
|
+
colorYellow6: string;
|
|
648
|
+
colorYellow7: string;
|
|
649
|
+
colorYellow8: string;
|
|
650
|
+
colorYellow9: string;
|
|
651
|
+
colorYellow10: string;
|
|
652
|
+
colorYellow11: string;
|
|
653
|
+
colorYellow12: string;
|
|
654
|
+
colorYellow13: string;
|
|
655
|
+
colorYellow1A: string;
|
|
656
|
+
colorYellow2A: string;
|
|
657
|
+
colorYellow3A: string;
|
|
658
|
+
colorYellow4A: string;
|
|
659
|
+
colorYellow5A: string;
|
|
660
|
+
colorYellow6A: string;
|
|
661
|
+
colorYellow7A: string;
|
|
662
|
+
colorYellow8A: string;
|
|
663
|
+
colorYellow9A: string;
|
|
664
|
+
colorYellow10A: string;
|
|
665
|
+
colorYellow11A: string;
|
|
666
|
+
colorYellow12A: string;
|
|
667
|
+
colorYellow13A: string;
|
|
668
|
+
colorYellowBg: string;
|
|
669
|
+
colorYellowBgHover: string;
|
|
670
|
+
colorYellowBorder: string;
|
|
671
|
+
colorYellowBorderHover: string;
|
|
672
|
+
colorYellowHover: string;
|
|
673
|
+
colorYellow: string;
|
|
674
|
+
colorYellowActive: string;
|
|
675
|
+
colorYellowTextHover: string;
|
|
676
|
+
colorYellowText: string;
|
|
677
|
+
colorAmber1: string;
|
|
678
|
+
colorAmber2: string;
|
|
679
|
+
colorAmber3: string;
|
|
680
|
+
colorAmber4: string;
|
|
681
|
+
colorAmber5: string;
|
|
682
|
+
colorAmber6: string;
|
|
683
|
+
colorAmber7: string;
|
|
684
|
+
colorAmber8: string;
|
|
685
|
+
colorAmber9: string;
|
|
686
|
+
colorAmber10: string;
|
|
687
|
+
colorAmber11: string;
|
|
688
|
+
colorAmber12: string;
|
|
689
|
+
colorAmber13: string;
|
|
690
|
+
colorAmber1A: string;
|
|
691
|
+
colorAmber2A: string;
|
|
692
|
+
colorAmber3A: string;
|
|
693
|
+
colorAmber4A: string;
|
|
694
|
+
colorAmber5A: string;
|
|
695
|
+
colorAmber6A: string;
|
|
696
|
+
colorAmber7A: string;
|
|
697
|
+
colorAmber8A: string;
|
|
698
|
+
colorAmber9A: string;
|
|
699
|
+
colorAmber10A: string;
|
|
700
|
+
colorAmber11A: string;
|
|
701
|
+
colorAmber12A: string;
|
|
702
|
+
colorAmber13A: string;
|
|
703
|
+
colorAmberBg: string;
|
|
704
|
+
colorAmberBgHover: string;
|
|
705
|
+
colorAmberBorder: string;
|
|
706
|
+
colorAmberBorderHover: string;
|
|
707
|
+
colorAmberHover: string;
|
|
708
|
+
colorAmber: string;
|
|
709
|
+
colorAmberActive: string;
|
|
710
|
+
colorAmberTextHover: string;
|
|
711
|
+
colorAmberText: string;
|
|
712
|
+
colorBronze1: string;
|
|
713
|
+
colorBronze2: string;
|
|
714
|
+
colorBronze3: string;
|
|
715
|
+
colorBronze4: string;
|
|
716
|
+
colorBronze5: string;
|
|
717
|
+
colorBronze6: string;
|
|
718
|
+
colorBronze7: string;
|
|
719
|
+
colorBronze8: string;
|
|
720
|
+
colorBronze9: string;
|
|
721
|
+
colorBronze10: string;
|
|
722
|
+
colorBronze11: string;
|
|
723
|
+
colorBronze12: string;
|
|
724
|
+
colorBronze13: string;
|
|
725
|
+
colorBronze1A: string;
|
|
726
|
+
colorBronze2A: string;
|
|
727
|
+
colorBronze3A: string;
|
|
728
|
+
colorBronze4A: string;
|
|
729
|
+
colorBronze5A: string;
|
|
730
|
+
colorBronze6A: string;
|
|
731
|
+
colorBronze7A: string;
|
|
732
|
+
colorBronze8A: string;
|
|
733
|
+
colorBronze9A: string;
|
|
734
|
+
colorBronze10A: string;
|
|
735
|
+
colorBronze11A: string;
|
|
736
|
+
colorBronze12A: string;
|
|
737
|
+
colorBronze13A: string;
|
|
738
|
+
colorBronzeBg: string;
|
|
739
|
+
colorBronzeBgHover: string;
|
|
740
|
+
colorBronzeBorder: string;
|
|
741
|
+
colorBronzeBorderHover: string;
|
|
742
|
+
colorBronzeHover: string;
|
|
743
|
+
colorBronze: string;
|
|
744
|
+
colorBronzeActive: string;
|
|
745
|
+
colorBronzeTextHover: string;
|
|
746
|
+
colorBronzeText: string;
|
|
747
|
+
colorGold1: string;
|
|
748
|
+
colorGold2: string;
|
|
749
|
+
colorGold3: string;
|
|
750
|
+
colorGold4: string;
|
|
751
|
+
colorGold5: string;
|
|
752
|
+
colorGold6: string;
|
|
753
|
+
colorGold7: string;
|
|
754
|
+
colorGold8: string;
|
|
755
|
+
colorGold9: string;
|
|
756
|
+
colorGold10: string;
|
|
757
|
+
colorGold11: string;
|
|
758
|
+
colorGold12: string;
|
|
759
|
+
colorGold13: string;
|
|
760
|
+
colorGold1A: string;
|
|
761
|
+
colorGold2A: string;
|
|
762
|
+
colorGold3A: string;
|
|
763
|
+
colorGold4A: string;
|
|
764
|
+
colorGold5A: string;
|
|
765
|
+
colorGold6A: string;
|
|
766
|
+
colorGold7A: string;
|
|
767
|
+
colorGold8A: string;
|
|
768
|
+
colorGold9A: string;
|
|
769
|
+
colorGold10A: string;
|
|
770
|
+
colorGold11A: string;
|
|
771
|
+
colorGold12A: string;
|
|
772
|
+
colorGold13A: string;
|
|
773
|
+
colorGoldBg: string;
|
|
774
|
+
colorGoldBgHover: string;
|
|
775
|
+
colorGoldBorder: string;
|
|
776
|
+
colorGoldBorderHover: string;
|
|
777
|
+
colorGoldHover: string;
|
|
778
|
+
colorGold: string;
|
|
779
|
+
colorGoldActive: string;
|
|
780
|
+
colorGoldTextHover: string;
|
|
781
|
+
colorGoldText: string;
|
|
782
|
+
colorGray1: string;
|
|
783
|
+
colorGray2: string;
|
|
784
|
+
colorGray3: string;
|
|
785
|
+
colorGray4: string;
|
|
786
|
+
colorGray5: string;
|
|
787
|
+
colorGray6: string;
|
|
788
|
+
colorGray7: string;
|
|
789
|
+
colorGray8: string;
|
|
790
|
+
colorGray9: string;
|
|
791
|
+
colorGray10: string;
|
|
792
|
+
colorGray11: string;
|
|
793
|
+
colorGray12: string;
|
|
794
|
+
colorGray13: string;
|
|
795
|
+
colorGray1A: string;
|
|
796
|
+
colorGray2A: string;
|
|
797
|
+
colorGray3A: string;
|
|
798
|
+
colorGray4A: string;
|
|
799
|
+
colorGray5A: string;
|
|
800
|
+
colorGray6A: string;
|
|
801
|
+
colorGray7A: string;
|
|
802
|
+
colorGray8A: string;
|
|
803
|
+
colorGray9A: string;
|
|
804
|
+
colorGray10A: string;
|
|
805
|
+
colorGray11A: string;
|
|
806
|
+
colorGray12A: string;
|
|
807
|
+
colorGray13A: string;
|
|
808
|
+
colorGrayBg: string;
|
|
809
|
+
colorGrayBgHover: string;
|
|
810
|
+
colorGrayBorder: string;
|
|
811
|
+
colorGrayBorderHover: string;
|
|
812
|
+
colorGrayHover: string;
|
|
813
|
+
colorGray: string;
|
|
814
|
+
colorGrayActive: string;
|
|
815
|
+
colorGrayTextHover: string;
|
|
816
|
+
colorGrayText: string;
|
|
817
|
+
colorMauve1: string;
|
|
818
|
+
colorMauve2: string;
|
|
819
|
+
colorMauve3: string;
|
|
820
|
+
colorMauve4: string;
|
|
821
|
+
colorMauve5: string;
|
|
822
|
+
colorMauve6: string;
|
|
823
|
+
colorMauve7: string;
|
|
824
|
+
colorMauve8: string;
|
|
825
|
+
colorMauve9: string;
|
|
826
|
+
colorMauve10: string;
|
|
827
|
+
colorMauve11: string;
|
|
828
|
+
colorMauve12: string;
|
|
829
|
+
colorMauve13: string;
|
|
830
|
+
colorMauve1A: string;
|
|
831
|
+
colorMauve2A: string;
|
|
832
|
+
colorMauve3A: string;
|
|
833
|
+
colorMauve4A: string;
|
|
834
|
+
colorMauve5A: string;
|
|
835
|
+
colorMauve6A: string;
|
|
836
|
+
colorMauve7A: string;
|
|
837
|
+
colorMauve8A: string;
|
|
838
|
+
colorMauve9A: string;
|
|
839
|
+
colorMauve10A: string;
|
|
840
|
+
colorMauve11A: string;
|
|
841
|
+
colorMauve12A: string;
|
|
842
|
+
colorMauve13A: string;
|
|
843
|
+
colorMauveBg: string;
|
|
844
|
+
colorMauveBgHover: string;
|
|
845
|
+
colorMauveBorder: string;
|
|
846
|
+
colorMauveBorderHover: string;
|
|
847
|
+
colorMauveHover: string;
|
|
848
|
+
colorMauve: string;
|
|
849
|
+
colorMauveActive: string;
|
|
850
|
+
colorMauveTextHover: string;
|
|
851
|
+
colorMauveText: string;
|
|
852
|
+
colorSlate1: string;
|
|
853
|
+
colorSlate2: string;
|
|
854
|
+
colorSlate3: string;
|
|
855
|
+
colorSlate4: string;
|
|
856
|
+
colorSlate5: string;
|
|
857
|
+
colorSlate6: string;
|
|
858
|
+
colorSlate7: string;
|
|
859
|
+
colorSlate8: string;
|
|
860
|
+
colorSlate9: string;
|
|
861
|
+
colorSlate10: string;
|
|
862
|
+
colorSlate11: string;
|
|
863
|
+
colorSlate12: string;
|
|
864
|
+
colorSlate13: string;
|
|
865
|
+
colorSlate1A: string;
|
|
866
|
+
colorSlate2A: string;
|
|
867
|
+
colorSlate3A: string;
|
|
868
|
+
colorSlate4A: string;
|
|
869
|
+
colorSlate5A: string;
|
|
870
|
+
colorSlate6A: string;
|
|
871
|
+
colorSlate7A: string;
|
|
872
|
+
colorSlate8A: string;
|
|
873
|
+
colorSlate9A: string;
|
|
874
|
+
colorSlate10A: string;
|
|
875
|
+
colorSlate11A: string;
|
|
876
|
+
colorSlate12A: string;
|
|
877
|
+
colorSlate13A: string;
|
|
878
|
+
colorSlateBg: string;
|
|
879
|
+
colorSlateBgHover: string;
|
|
880
|
+
colorSlateBorder: string;
|
|
881
|
+
colorSlateBorderHover: string;
|
|
882
|
+
colorSlateHover: string;
|
|
883
|
+
colorSlate: string;
|
|
884
|
+
colorSlateActive: string;
|
|
885
|
+
colorSlateTextHover: string;
|
|
886
|
+
colorSlateText: string;
|
|
887
|
+
colorSage1: string;
|
|
888
|
+
colorSage2: string;
|
|
889
|
+
colorSage3: string;
|
|
890
|
+
colorSage4: string;
|
|
891
|
+
colorSage5: string;
|
|
892
|
+
colorSage6: string;
|
|
893
|
+
colorSage7: string;
|
|
894
|
+
colorSage8: string;
|
|
895
|
+
colorSage9: string;
|
|
896
|
+
colorSage10: string;
|
|
897
|
+
colorSage11: string;
|
|
898
|
+
colorSage12: string;
|
|
899
|
+
colorSage13: string;
|
|
900
|
+
colorSage1A: string;
|
|
901
|
+
colorSage2A: string;
|
|
902
|
+
colorSage3A: string;
|
|
903
|
+
colorSage4A: string;
|
|
904
|
+
colorSage5A: string;
|
|
905
|
+
colorSage6A: string;
|
|
906
|
+
colorSage7A: string;
|
|
907
|
+
colorSage8A: string;
|
|
908
|
+
colorSage9A: string;
|
|
909
|
+
colorSage10A: string;
|
|
910
|
+
colorSage11A: string;
|
|
911
|
+
colorSage12A: string;
|
|
912
|
+
colorSage13A: string;
|
|
913
|
+
colorSageBg: string;
|
|
914
|
+
colorSageBgHover: string;
|
|
915
|
+
colorSageBorder: string;
|
|
916
|
+
colorSageBorderHover: string;
|
|
917
|
+
colorSageHover: string;
|
|
918
|
+
colorSage: string;
|
|
919
|
+
colorSageActive: string;
|
|
920
|
+
colorSageTextHover: string;
|
|
921
|
+
colorSageText: string;
|
|
922
|
+
colorOlive1: string;
|
|
923
|
+
colorOlive2: string;
|
|
924
|
+
colorOlive3: string;
|
|
925
|
+
colorOlive4: string;
|
|
926
|
+
colorOlive5: string;
|
|
927
|
+
colorOlive6: string;
|
|
928
|
+
colorOlive7: string;
|
|
929
|
+
colorOlive8: string;
|
|
930
|
+
colorOlive9: string;
|
|
931
|
+
colorOlive10: string;
|
|
932
|
+
colorOlive11: string;
|
|
933
|
+
colorOlive12: string;
|
|
934
|
+
colorOlive13: string;
|
|
935
|
+
colorOlive1A: string;
|
|
936
|
+
colorOlive2A: string;
|
|
937
|
+
colorOlive3A: string;
|
|
938
|
+
colorOlive4A: string;
|
|
939
|
+
colorOlive5A: string;
|
|
940
|
+
colorOlive6A: string;
|
|
941
|
+
colorOlive7A: string;
|
|
942
|
+
colorOlive8A: string;
|
|
943
|
+
colorOlive9A: string;
|
|
944
|
+
colorOlive10A: string;
|
|
945
|
+
colorOlive11A: string;
|
|
946
|
+
colorOlive12A: string;
|
|
947
|
+
colorOlive13A: string;
|
|
948
|
+
colorOliveBg: string;
|
|
949
|
+
colorOliveBgHover: string;
|
|
950
|
+
colorOliveBorder: string;
|
|
951
|
+
colorOliveBorderHover: string;
|
|
952
|
+
colorOliveHover: string;
|
|
953
|
+
colorOlive: string;
|
|
954
|
+
colorOliveActive: string;
|
|
955
|
+
colorOliveTextHover: string;
|
|
956
|
+
colorOliveText: string;
|
|
957
|
+
colorSand1: string;
|
|
958
|
+
colorSand2: string;
|
|
959
|
+
colorSand3: string;
|
|
960
|
+
colorSand4: string;
|
|
961
|
+
colorSand5: string;
|
|
962
|
+
colorSand6: string;
|
|
963
|
+
colorSand7: string;
|
|
964
|
+
colorSand8: string;
|
|
965
|
+
colorSand9: string;
|
|
966
|
+
colorSand10: string;
|
|
967
|
+
colorSand11: string;
|
|
968
|
+
colorSand12: string;
|
|
969
|
+
colorSand13: string;
|
|
970
|
+
colorSand1A: string;
|
|
971
|
+
colorSand2A: string;
|
|
972
|
+
colorSand3A: string;
|
|
973
|
+
colorSand4A: string;
|
|
974
|
+
colorSand5A: string;
|
|
975
|
+
colorSand6A: string;
|
|
976
|
+
colorSand7A: string;
|
|
977
|
+
colorSand8A: string;
|
|
978
|
+
colorSand9A: string;
|
|
979
|
+
colorSand10A: string;
|
|
980
|
+
colorSand11A: string;
|
|
981
|
+
colorSand12A: string;
|
|
982
|
+
colorSand13A: string;
|
|
983
|
+
colorSandBg: string;
|
|
984
|
+
colorSandBgHover: string;
|
|
985
|
+
colorSandBorder: string;
|
|
986
|
+
colorSandBorderHover: string;
|
|
987
|
+
colorSandHover: string;
|
|
988
|
+
colorSand: string;
|
|
989
|
+
colorSandActive: string;
|
|
990
|
+
colorSandTextHover: string;
|
|
991
|
+
colorSandText: string;
|
|
992
|
+
colorBnw1: string;
|
|
993
|
+
colorBnw2: string;
|
|
994
|
+
colorBnw3: string;
|
|
995
|
+
colorBnw4: string;
|
|
996
|
+
colorBnw5: string;
|
|
997
|
+
colorBnw6: string;
|
|
998
|
+
colorBnw7: string;
|
|
999
|
+
colorBnw8: string;
|
|
1000
|
+
colorBnw9: string;
|
|
1001
|
+
colorBnw10: string;
|
|
1002
|
+
colorBnw11: string;
|
|
1003
|
+
colorBnw12: string;
|
|
1004
|
+
colorBnw13: string;
|
|
1005
|
+
colorBnw1A: string;
|
|
1006
|
+
colorBnw2A: string;
|
|
1007
|
+
colorBnw3A: string;
|
|
1008
|
+
colorBnw4A: string;
|
|
1009
|
+
colorBnw5A: string;
|
|
1010
|
+
colorBnw6A: string;
|
|
1011
|
+
colorBnw7A: string;
|
|
1012
|
+
colorBnw8A: string;
|
|
1013
|
+
colorBnw9A: string;
|
|
1014
|
+
colorBnw10A: string;
|
|
1015
|
+
colorBnw11A: string;
|
|
1016
|
+
colorBnw12A: string;
|
|
1017
|
+
colorBnw13A: string;
|
|
1018
|
+
colorBnwBg: string;
|
|
1019
|
+
colorBnwBgHover: string;
|
|
1020
|
+
colorBnwBorder: string;
|
|
1021
|
+
colorBnwBorderHover: string;
|
|
1022
|
+
colorBnwHover: string;
|
|
1023
|
+
colorBnw: string;
|
|
1024
|
+
colorBnwActive: string;
|
|
1025
|
+
colorBnwTextHover: string;
|
|
1026
|
+
colorBnwText: string;
|
|
1027
|
+
}
|