@gitlab/ui 80.16.2 → 80.18.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/CHANGELOG.md +14 -0
- package/dist/tokens/build/js/tokens.dark.js +19 -1
- package/dist/tokens/build/js/tokens.js +19 -1
- package/dist/tokens/css/tokens.css +18 -0
- package/dist/tokens/css/tokens.dark.css +18 -0
- package/dist/tokens/js/tokens.dark.js +18 -0
- package/dist/tokens/js/tokens.js +18 -0
- package/dist/tokens/json/tokens.dark.json +385 -13
- package/dist/tokens/json/tokens.json +385 -13
- package/dist/tokens/scss/_tokens.dark.scss +18 -0
- package/dist/tokens/scss/_tokens.scss +18 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +18 -0
- package/dist/tokens/tailwind/tokens.cjs +35 -0
- package/dist/tokens/tokens_story.js +4 -4
- package/package.json +4 -4
- package/src/tokens/border.tokens.json +35 -0
- package/src/tokens/build/css/tokens.css +18 -0
- package/src/tokens/build/css/tokens.dark.css +18 -0
- package/src/tokens/build/js/tokens.dark.js +18 -0
- package/src/tokens/build/js/tokens.js +18 -0
- package/src/tokens/build/json/tokens.dark.json +385 -13
- package/src/tokens/build/json/tokens.json +385 -13
- package/src/tokens/build/scss/_tokens.dark.scss +18 -0
- package/src/tokens/build/scss/_tokens.scss +18 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +18 -0
- package/src/tokens/build/tailwind/tokens.cjs +35 -0
- package/src/tokens/color.alpha.tokens.json +66 -0
- package/src/tokens/color.transparency.tokens.json +26 -13
- package/src/tokens/tokens_story.vue +5 -5
- package/tailwind.defaults.js +2 -0
- package/translations.json +7 -7
|
@@ -91,7 +91,353 @@
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
|
+
"border": {
|
|
95
|
+
"color": {
|
|
96
|
+
"default": {
|
|
97
|
+
"value": "#434248",
|
|
98
|
+
"$type": "color",
|
|
99
|
+
"comment": "Used for the default border color.",
|
|
100
|
+
"filePath": "src/tokens/border.tokens.json",
|
|
101
|
+
"isSource": true,
|
|
102
|
+
"original": {
|
|
103
|
+
"value": {
|
|
104
|
+
"default": "{color.neutral.100}",
|
|
105
|
+
"dark": "{color.neutral.800}"
|
|
106
|
+
},
|
|
107
|
+
"$type": "color",
|
|
108
|
+
"comment": "Used for the default border color."
|
|
109
|
+
},
|
|
110
|
+
"name": "BORDER_COLOR_DEFAULT",
|
|
111
|
+
"attributes": {},
|
|
112
|
+
"path": [
|
|
113
|
+
"border",
|
|
114
|
+
"color",
|
|
115
|
+
"default"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"subtle": {
|
|
119
|
+
"value": "#333238",
|
|
120
|
+
"$type": "color",
|
|
121
|
+
"comment": "Used for a border that has a little more definition, or is used in combination with a subtle background.",
|
|
122
|
+
"filePath": "src/tokens/border.tokens.json",
|
|
123
|
+
"isSource": true,
|
|
124
|
+
"original": {
|
|
125
|
+
"value": {
|
|
126
|
+
"default": "{color.neutral.50}",
|
|
127
|
+
"dark": "{color.neutral.900}"
|
|
128
|
+
},
|
|
129
|
+
"$type": "color",
|
|
130
|
+
"comment": "Used for a border that has a little more definition, or is used in combination with a subtle background."
|
|
131
|
+
},
|
|
132
|
+
"name": "BORDER_COLOR_SUBTLE",
|
|
133
|
+
"attributes": {},
|
|
134
|
+
"path": [
|
|
135
|
+
"border",
|
|
136
|
+
"color",
|
|
137
|
+
"subtle"
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
"strong": {
|
|
141
|
+
"value": "#89888d",
|
|
142
|
+
"$type": "color",
|
|
143
|
+
"comment": "Used for a distinct border that emphasizes an edge or boundaries.",
|
|
144
|
+
"filePath": "src/tokens/border.tokens.json",
|
|
145
|
+
"isSource": true,
|
|
146
|
+
"original": {
|
|
147
|
+
"value": {
|
|
148
|
+
"default": "{color.neutral.400}",
|
|
149
|
+
"dark": "{color.neutral.400}"
|
|
150
|
+
},
|
|
151
|
+
"$type": "color",
|
|
152
|
+
"comment": "Used for a distinct border that emphasizes an edge or boundaries."
|
|
153
|
+
},
|
|
154
|
+
"name": "BORDER_COLOR_STRONG",
|
|
155
|
+
"attributes": {},
|
|
156
|
+
"path": [
|
|
157
|
+
"border",
|
|
158
|
+
"color",
|
|
159
|
+
"strong"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"transparent": {
|
|
163
|
+
"value": "transparent",
|
|
164
|
+
"$type": "color",
|
|
165
|
+
"comment": "Used when a border needs to be present, but not visibly perceived.",
|
|
166
|
+
"filePath": "src/tokens/border.tokens.json",
|
|
167
|
+
"isSource": true,
|
|
168
|
+
"original": {
|
|
169
|
+
"value": "{color.alpha.0}",
|
|
170
|
+
"$type": "color",
|
|
171
|
+
"comment": "Used when a border needs to be present, but not visibly perceived."
|
|
172
|
+
},
|
|
173
|
+
"name": "BORDER_COLOR_TRANSPARENT",
|
|
174
|
+
"attributes": {},
|
|
175
|
+
"path": [
|
|
176
|
+
"border",
|
|
177
|
+
"color",
|
|
178
|
+
"transparent"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
94
183
|
"color": {
|
|
184
|
+
"alpha": {
|
|
185
|
+
"0": {
|
|
186
|
+
"value": "transparent",
|
|
187
|
+
"$type": "color",
|
|
188
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
189
|
+
"isSource": true,
|
|
190
|
+
"original": {
|
|
191
|
+
"value": "transparent",
|
|
192
|
+
"$type": "color"
|
|
193
|
+
},
|
|
194
|
+
"name": "COLOR_ALPHA_0",
|
|
195
|
+
"attributes": {},
|
|
196
|
+
"path": [
|
|
197
|
+
"color",
|
|
198
|
+
"alpha",
|
|
199
|
+
"0"
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
"dark": {
|
|
203
|
+
"2": {
|
|
204
|
+
"value": "rgba(31, 30, 36, 0.02)",
|
|
205
|
+
"$type": "color",
|
|
206
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
207
|
+
"isSource": true,
|
|
208
|
+
"original": {
|
|
209
|
+
"value": "rgba(31, 30, 36, 0.02)",
|
|
210
|
+
"$type": "color"
|
|
211
|
+
},
|
|
212
|
+
"name": "COLOR_ALPHA_DARK_2",
|
|
213
|
+
"attributes": {},
|
|
214
|
+
"path": [
|
|
215
|
+
"color",
|
|
216
|
+
"alpha",
|
|
217
|
+
"dark",
|
|
218
|
+
"2"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
"4": {
|
|
222
|
+
"value": "rgba(31, 30, 36, 0.04)",
|
|
223
|
+
"$type": "color",
|
|
224
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
225
|
+
"isSource": true,
|
|
226
|
+
"original": {
|
|
227
|
+
"value": "rgba(31, 30, 36, 0.04)",
|
|
228
|
+
"$type": "color"
|
|
229
|
+
},
|
|
230
|
+
"name": "COLOR_ALPHA_DARK_4",
|
|
231
|
+
"attributes": {},
|
|
232
|
+
"path": [
|
|
233
|
+
"color",
|
|
234
|
+
"alpha",
|
|
235
|
+
"dark",
|
|
236
|
+
"4"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
"6": {
|
|
240
|
+
"value": "rgba(31, 30, 36, 0.06)",
|
|
241
|
+
"$type": "color",
|
|
242
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
243
|
+
"isSource": true,
|
|
244
|
+
"original": {
|
|
245
|
+
"value": "rgba(31, 30, 36, 0.06)",
|
|
246
|
+
"$type": "color"
|
|
247
|
+
},
|
|
248
|
+
"name": "COLOR_ALPHA_DARK_6",
|
|
249
|
+
"attributes": {},
|
|
250
|
+
"path": [
|
|
251
|
+
"color",
|
|
252
|
+
"alpha",
|
|
253
|
+
"dark",
|
|
254
|
+
"6"
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
"8": {
|
|
258
|
+
"value": "rgba(31, 30, 36, 0.08)",
|
|
259
|
+
"$type": "color",
|
|
260
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
261
|
+
"isSource": true,
|
|
262
|
+
"original": {
|
|
263
|
+
"value": "rgba(31, 30, 36, 0.08)",
|
|
264
|
+
"$type": "color"
|
|
265
|
+
},
|
|
266
|
+
"name": "COLOR_ALPHA_DARK_8",
|
|
267
|
+
"attributes": {},
|
|
268
|
+
"path": [
|
|
269
|
+
"color",
|
|
270
|
+
"alpha",
|
|
271
|
+
"dark",
|
|
272
|
+
"8"
|
|
273
|
+
]
|
|
274
|
+
},
|
|
275
|
+
"16": {
|
|
276
|
+
"value": "rgba(31, 30, 36, 0.16)",
|
|
277
|
+
"$type": "color",
|
|
278
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
279
|
+
"isSource": true,
|
|
280
|
+
"original": {
|
|
281
|
+
"value": "rgba(31, 30, 36, 0.16)",
|
|
282
|
+
"$type": "color"
|
|
283
|
+
},
|
|
284
|
+
"name": "COLOR_ALPHA_DARK_16",
|
|
285
|
+
"attributes": {},
|
|
286
|
+
"path": [
|
|
287
|
+
"color",
|
|
288
|
+
"alpha",
|
|
289
|
+
"dark",
|
|
290
|
+
"16"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
"24": {
|
|
294
|
+
"value": "rgba(31, 30, 36, 0.24)",
|
|
295
|
+
"$type": "color",
|
|
296
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
297
|
+
"isSource": true,
|
|
298
|
+
"original": {
|
|
299
|
+
"value": "rgba(31, 30, 36, 0.24)",
|
|
300
|
+
"$type": "color"
|
|
301
|
+
},
|
|
302
|
+
"name": "COLOR_ALPHA_DARK_24",
|
|
303
|
+
"attributes": {},
|
|
304
|
+
"path": [
|
|
305
|
+
"color",
|
|
306
|
+
"alpha",
|
|
307
|
+
"dark",
|
|
308
|
+
"24"
|
|
309
|
+
]
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"light": {
|
|
313
|
+
"2": {
|
|
314
|
+
"value": "rgba(255, 255, 255, 0.02)",
|
|
315
|
+
"$type": "color",
|
|
316
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
317
|
+
"isSource": true,
|
|
318
|
+
"original": {
|
|
319
|
+
"value": "rgba(255, 255, 255, 0.02)",
|
|
320
|
+
"$type": "color"
|
|
321
|
+
},
|
|
322
|
+
"name": "COLOR_ALPHA_LIGHT_2",
|
|
323
|
+
"attributes": {},
|
|
324
|
+
"path": [
|
|
325
|
+
"color",
|
|
326
|
+
"alpha",
|
|
327
|
+
"light",
|
|
328
|
+
"2"
|
|
329
|
+
]
|
|
330
|
+
},
|
|
331
|
+
"4": {
|
|
332
|
+
"value": "rgba(255, 255, 255, 0.04)",
|
|
333
|
+
"$type": "color",
|
|
334
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
335
|
+
"isSource": true,
|
|
336
|
+
"original": {
|
|
337
|
+
"value": "rgba(255, 255, 255, 0.04)",
|
|
338
|
+
"$type": "color"
|
|
339
|
+
},
|
|
340
|
+
"name": "COLOR_ALPHA_LIGHT_4",
|
|
341
|
+
"attributes": {},
|
|
342
|
+
"path": [
|
|
343
|
+
"color",
|
|
344
|
+
"alpha",
|
|
345
|
+
"light",
|
|
346
|
+
"4"
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
"6": {
|
|
350
|
+
"value": "rgba(255, 255, 255, 0.06)",
|
|
351
|
+
"$type": "color",
|
|
352
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
353
|
+
"isSource": true,
|
|
354
|
+
"original": {
|
|
355
|
+
"value": "rgba(255, 255, 255, 0.06)",
|
|
356
|
+
"$type": "color"
|
|
357
|
+
},
|
|
358
|
+
"name": "COLOR_ALPHA_LIGHT_6",
|
|
359
|
+
"attributes": {},
|
|
360
|
+
"path": [
|
|
361
|
+
"color",
|
|
362
|
+
"alpha",
|
|
363
|
+
"light",
|
|
364
|
+
"6"
|
|
365
|
+
]
|
|
366
|
+
},
|
|
367
|
+
"8": {
|
|
368
|
+
"value": "rgba(255, 255, 255, 0.08)",
|
|
369
|
+
"$type": "color",
|
|
370
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
371
|
+
"isSource": true,
|
|
372
|
+
"original": {
|
|
373
|
+
"value": "rgba(255, 255, 255, 0.08)",
|
|
374
|
+
"$type": "color"
|
|
375
|
+
},
|
|
376
|
+
"name": "COLOR_ALPHA_LIGHT_8",
|
|
377
|
+
"attributes": {},
|
|
378
|
+
"path": [
|
|
379
|
+
"color",
|
|
380
|
+
"alpha",
|
|
381
|
+
"light",
|
|
382
|
+
"8"
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
"16": {
|
|
386
|
+
"value": "rgba(255, 255, 255, 0.16)",
|
|
387
|
+
"$type": "color",
|
|
388
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
389
|
+
"isSource": true,
|
|
390
|
+
"original": {
|
|
391
|
+
"value": "rgba(255, 255, 255, 0.16)",
|
|
392
|
+
"$type": "color"
|
|
393
|
+
},
|
|
394
|
+
"name": "COLOR_ALPHA_LIGHT_16",
|
|
395
|
+
"attributes": {},
|
|
396
|
+
"path": [
|
|
397
|
+
"color",
|
|
398
|
+
"alpha",
|
|
399
|
+
"light",
|
|
400
|
+
"16"
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
"24": {
|
|
404
|
+
"value": "rgba(255, 255, 255, 0.24)",
|
|
405
|
+
"$type": "color",
|
|
406
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
407
|
+
"isSource": true,
|
|
408
|
+
"original": {
|
|
409
|
+
"value": "rgba(255, 255, 255, 0.24)",
|
|
410
|
+
"$type": "color"
|
|
411
|
+
},
|
|
412
|
+
"name": "COLOR_ALPHA_LIGHT_24",
|
|
413
|
+
"attributes": {},
|
|
414
|
+
"path": [
|
|
415
|
+
"color",
|
|
416
|
+
"alpha",
|
|
417
|
+
"light",
|
|
418
|
+
"24"
|
|
419
|
+
]
|
|
420
|
+
},
|
|
421
|
+
"36": {
|
|
422
|
+
"value": "rgba(255, 255, 255, 0.36)",
|
|
423
|
+
"$type": "color",
|
|
424
|
+
"filePath": "src/tokens/color.alpha.tokens.json",
|
|
425
|
+
"isSource": true,
|
|
426
|
+
"original": {
|
|
427
|
+
"value": "rgba(255, 255, 255, 0.36)",
|
|
428
|
+
"$type": "color"
|
|
429
|
+
},
|
|
430
|
+
"name": "COLOR_ALPHA_LIGHT_36",
|
|
431
|
+
"attributes": {},
|
|
432
|
+
"path": [
|
|
433
|
+
"color",
|
|
434
|
+
"alpha",
|
|
435
|
+
"light",
|
|
436
|
+
"36"
|
|
437
|
+
]
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
95
441
|
"blue": {
|
|
96
442
|
"50": {
|
|
97
443
|
"value": "#e9f3fc",
|
|
@@ -6193,13 +6539,15 @@
|
|
|
6193
6539
|
"$type": "color",
|
|
6194
6540
|
"themeable": true,
|
|
6195
6541
|
"prefix": false,
|
|
6542
|
+
"deprecated": true,
|
|
6196
6543
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6197
6544
|
"isSource": true,
|
|
6198
6545
|
"original": {
|
|
6199
6546
|
"value": "rgba(31, 30, 36, 0.16)",
|
|
6200
6547
|
"$type": "color",
|
|
6201
6548
|
"themeable": true,
|
|
6202
|
-
"prefix": false
|
|
6549
|
+
"prefix": false,
|
|
6550
|
+
"deprecated": true
|
|
6203
6551
|
},
|
|
6204
6552
|
"name": "RAY_A_16",
|
|
6205
6553
|
"attributes": {},
|
|
@@ -6213,13 +6561,15 @@
|
|
|
6213
6561
|
"$type": "color",
|
|
6214
6562
|
"themeable": true,
|
|
6215
6563
|
"prefix": false,
|
|
6564
|
+
"deprecated": true,
|
|
6216
6565
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6217
6566
|
"isSource": true,
|
|
6218
6567
|
"original": {
|
|
6219
6568
|
"value": "rgba(31, 30, 36, 0.24)",
|
|
6220
6569
|
"$type": "color",
|
|
6221
6570
|
"themeable": true,
|
|
6222
|
-
"prefix": false
|
|
6571
|
+
"prefix": false,
|
|
6572
|
+
"deprecated": true
|
|
6223
6573
|
},
|
|
6224
6574
|
"name": "RAY_A_24",
|
|
6225
6575
|
"attributes": {},
|
|
@@ -6233,13 +6583,15 @@
|
|
|
6233
6583
|
"$type": "color",
|
|
6234
6584
|
"themeable": true,
|
|
6235
6585
|
"prefix": false,
|
|
6586
|
+
"deprecated": true,
|
|
6236
6587
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6237
6588
|
"isSource": true,
|
|
6238
6589
|
"original": {
|
|
6239
6590
|
"value": "rgba(31, 30, 36, 0.02)",
|
|
6240
6591
|
"$type": "color",
|
|
6241
6592
|
"themeable": true,
|
|
6242
|
-
"prefix": false
|
|
6593
|
+
"prefix": false,
|
|
6594
|
+
"deprecated": true
|
|
6243
6595
|
},
|
|
6244
6596
|
"name": "RAY_A_02",
|
|
6245
6597
|
"attributes": {},
|
|
@@ -6253,13 +6605,15 @@
|
|
|
6253
6605
|
"$type": "color",
|
|
6254
6606
|
"themeable": true,
|
|
6255
6607
|
"prefix": false,
|
|
6608
|
+
"deprecated": true,
|
|
6256
6609
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6257
6610
|
"isSource": true,
|
|
6258
6611
|
"original": {
|
|
6259
6612
|
"value": "rgba(31, 30, 36, 0.04)",
|
|
6260
6613
|
"$type": "color",
|
|
6261
6614
|
"themeable": true,
|
|
6262
|
-
"prefix": false
|
|
6615
|
+
"prefix": false,
|
|
6616
|
+
"deprecated": true
|
|
6263
6617
|
},
|
|
6264
6618
|
"name": "RAY_A_04",
|
|
6265
6619
|
"attributes": {},
|
|
@@ -6273,13 +6627,15 @@
|
|
|
6273
6627
|
"$type": "color",
|
|
6274
6628
|
"themeable": true,
|
|
6275
6629
|
"prefix": false,
|
|
6630
|
+
"deprecated": true,
|
|
6276
6631
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6277
6632
|
"isSource": true,
|
|
6278
6633
|
"original": {
|
|
6279
6634
|
"value": "rgba(31, 30, 36, 0.06)",
|
|
6280
6635
|
"$type": "color",
|
|
6281
6636
|
"themeable": true,
|
|
6282
|
-
"prefix": false
|
|
6637
|
+
"prefix": false,
|
|
6638
|
+
"deprecated": true
|
|
6283
6639
|
},
|
|
6284
6640
|
"name": "RAY_A_06",
|
|
6285
6641
|
"attributes": {},
|
|
@@ -6293,13 +6649,15 @@
|
|
|
6293
6649
|
"$type": "color",
|
|
6294
6650
|
"themeable": true,
|
|
6295
6651
|
"prefix": false,
|
|
6652
|
+
"deprecated": true,
|
|
6296
6653
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6297
6654
|
"isSource": true,
|
|
6298
6655
|
"original": {
|
|
6299
6656
|
"value": "rgba(31, 30, 36, 0.08)",
|
|
6300
6657
|
"$type": "color",
|
|
6301
6658
|
"themeable": true,
|
|
6302
|
-
"prefix": false
|
|
6659
|
+
"prefix": false,
|
|
6660
|
+
"deprecated": true
|
|
6303
6661
|
},
|
|
6304
6662
|
"name": "RAY_A_08",
|
|
6305
6663
|
"attributes": {},
|
|
@@ -6315,13 +6673,15 @@
|
|
|
6315
6673
|
"$type": "color",
|
|
6316
6674
|
"themeable": true,
|
|
6317
6675
|
"prefix": false,
|
|
6676
|
+
"deprecated": true,
|
|
6318
6677
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6319
6678
|
"isSource": true,
|
|
6320
6679
|
"original": {
|
|
6321
6680
|
"value": "rgba(255, 255, 255, 0.16)",
|
|
6322
6681
|
"$type": "color",
|
|
6323
6682
|
"themeable": true,
|
|
6324
|
-
"prefix": false
|
|
6683
|
+
"prefix": false,
|
|
6684
|
+
"deprecated": true
|
|
6325
6685
|
},
|
|
6326
6686
|
"name": "HITE_A_16",
|
|
6327
6687
|
"attributes": {},
|
|
@@ -6335,13 +6695,15 @@
|
|
|
6335
6695
|
"$type": "color",
|
|
6336
6696
|
"themeable": true,
|
|
6337
6697
|
"prefix": false,
|
|
6698
|
+
"deprecated": true,
|
|
6338
6699
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6339
6700
|
"isSource": true,
|
|
6340
6701
|
"original": {
|
|
6341
6702
|
"value": "rgba(255, 255, 255, 0.24)",
|
|
6342
6703
|
"$type": "color",
|
|
6343
6704
|
"themeable": true,
|
|
6344
|
-
"prefix": false
|
|
6705
|
+
"prefix": false,
|
|
6706
|
+
"deprecated": true
|
|
6345
6707
|
},
|
|
6346
6708
|
"name": "HITE_A_24",
|
|
6347
6709
|
"attributes": {},
|
|
@@ -6355,13 +6717,15 @@
|
|
|
6355
6717
|
"$type": "color",
|
|
6356
6718
|
"themeable": true,
|
|
6357
6719
|
"prefix": false,
|
|
6720
|
+
"deprecated": true,
|
|
6358
6721
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6359
6722
|
"isSource": true,
|
|
6360
6723
|
"original": {
|
|
6361
6724
|
"value": "rgba(255, 255, 255, 0.36)",
|
|
6362
6725
|
"$type": "color",
|
|
6363
6726
|
"themeable": true,
|
|
6364
|
-
"prefix": false
|
|
6727
|
+
"prefix": false,
|
|
6728
|
+
"deprecated": true
|
|
6365
6729
|
},
|
|
6366
6730
|
"name": "HITE_A_36",
|
|
6367
6731
|
"attributes": {},
|
|
@@ -6375,13 +6739,15 @@
|
|
|
6375
6739
|
"$type": "color",
|
|
6376
6740
|
"themeable": true,
|
|
6377
6741
|
"prefix": false,
|
|
6742
|
+
"deprecated": true,
|
|
6378
6743
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6379
6744
|
"isSource": true,
|
|
6380
6745
|
"original": {
|
|
6381
6746
|
"value": "rgba(255, 255, 255, 0.02)",
|
|
6382
6747
|
"$type": "color",
|
|
6383
6748
|
"themeable": true,
|
|
6384
|
-
"prefix": false
|
|
6749
|
+
"prefix": false,
|
|
6750
|
+
"deprecated": true
|
|
6385
6751
|
},
|
|
6386
6752
|
"name": "HITE_A_02",
|
|
6387
6753
|
"attributes": {},
|
|
@@ -6395,13 +6761,15 @@
|
|
|
6395
6761
|
"$type": "color",
|
|
6396
6762
|
"themeable": true,
|
|
6397
6763
|
"prefix": false,
|
|
6764
|
+
"deprecated": true,
|
|
6398
6765
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6399
6766
|
"isSource": true,
|
|
6400
6767
|
"original": {
|
|
6401
6768
|
"value": "rgba(255, 255, 255, 0.04)",
|
|
6402
6769
|
"$type": "color",
|
|
6403
6770
|
"themeable": true,
|
|
6404
|
-
"prefix": false
|
|
6771
|
+
"prefix": false,
|
|
6772
|
+
"deprecated": true
|
|
6405
6773
|
},
|
|
6406
6774
|
"name": "HITE_A_04",
|
|
6407
6775
|
"attributes": {},
|
|
@@ -6415,13 +6783,15 @@
|
|
|
6415
6783
|
"$type": "color",
|
|
6416
6784
|
"themeable": true,
|
|
6417
6785
|
"prefix": false,
|
|
6786
|
+
"deprecated": true,
|
|
6418
6787
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6419
6788
|
"isSource": true,
|
|
6420
6789
|
"original": {
|
|
6421
6790
|
"value": "rgba(255, 255, 255, 0.06)",
|
|
6422
6791
|
"$type": "color",
|
|
6423
6792
|
"themeable": true,
|
|
6424
|
-
"prefix": false
|
|
6793
|
+
"prefix": false,
|
|
6794
|
+
"deprecated": true
|
|
6425
6795
|
},
|
|
6426
6796
|
"name": "HITE_A_06",
|
|
6427
6797
|
"attributes": {},
|
|
@@ -6435,13 +6805,15 @@
|
|
|
6435
6805
|
"$type": "color",
|
|
6436
6806
|
"themeable": true,
|
|
6437
6807
|
"prefix": false,
|
|
6808
|
+
"deprecated": true,
|
|
6438
6809
|
"filePath": "src/tokens/color.transparency.tokens.json",
|
|
6439
6810
|
"isSource": true,
|
|
6440
6811
|
"original": {
|
|
6441
6812
|
"value": "rgba(255, 255, 255, 0.08)",
|
|
6442
6813
|
"$type": "color",
|
|
6443
6814
|
"themeable": true,
|
|
6444
|
-
"prefix": false
|
|
6815
|
+
"prefix": false,
|
|
6816
|
+
"deprecated": true
|
|
6445
6817
|
},
|
|
6446
6818
|
"name": "HITE_A_08",
|
|
6447
6819
|
"attributes": {},
|