@gitlab/ui 80.5.0 → 80.6.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 +7 -0
- package/dist/tokens/json/tokens.dark.json +1417 -1558
- package/dist/tokens/json/tokens.json +1061 -446
- package/dist/tokens/scss/_tokens.dark.scss +196 -196
- package/package.json +2 -2
- package/src/tokens/build/json/tokens.dark.json +1417 -1558
- package/src/tokens/build/json/tokens.json +1061 -446
- package/src/tokens/build/scss/_tokens.dark.scss +196 -196
- package/src/tokens/color.data_viz.tokens.json +220 -55
- package/src/tokens/color.theme.tokens.json +288 -72
- package/src/tokens/color.tokens.json +276 -69
- package/src/tokens/text.tokens.json +36 -9
- package/src/tokens/color.dark.tokens.json +0 -428
- package/src/tokens/color.data_viz.dark.tokens.json +0 -344
- package/src/tokens/color.theme.dark.tokens.json +0 -448
- package/src/tokens/text.dark.tokens.json +0 -63
|
@@ -2,67 +2,100 @@
|
|
|
2
2
|
"data-viz": {
|
|
3
3
|
"green": {
|
|
4
4
|
"50": {
|
|
5
|
-
"$value":
|
|
5
|
+
"$value": {
|
|
6
|
+
"default": "#ddfab7",
|
|
7
|
+
"dark": "#133a03"
|
|
8
|
+
},
|
|
6
9
|
"$type": "color",
|
|
7
10
|
"themeable": true,
|
|
8
11
|
"prefix": false
|
|
9
12
|
},
|
|
10
13
|
"100": {
|
|
11
|
-
"$value":
|
|
14
|
+
"$value": {
|
|
15
|
+
"default": "#c6ed94",
|
|
16
|
+
"dark": "#1a4500"
|
|
17
|
+
},
|
|
12
18
|
"$type": "color",
|
|
13
19
|
"themeable": true,
|
|
14
20
|
"prefix": false
|
|
15
21
|
},
|
|
16
22
|
"200": {
|
|
17
|
-
"$value":
|
|
23
|
+
"$value": {
|
|
24
|
+
"default": "#b0d97b",
|
|
25
|
+
"dark": "#275600"
|
|
26
|
+
},
|
|
18
27
|
"$type": "color",
|
|
19
28
|
"themeable": true,
|
|
20
29
|
"prefix": false
|
|
21
30
|
},
|
|
22
31
|
"300": {
|
|
23
|
-
"$value":
|
|
32
|
+
"$value": {
|
|
33
|
+
"default": "#94c25e",
|
|
34
|
+
"dark": "#366800"
|
|
35
|
+
},
|
|
24
36
|
"$type": "color",
|
|
25
37
|
"themeable": true,
|
|
26
38
|
"prefix": false
|
|
27
39
|
},
|
|
28
40
|
"400": {
|
|
29
|
-
"$value":
|
|
41
|
+
"$value": {
|
|
42
|
+
"default": "#81ac41",
|
|
43
|
+
"dark": "#4e7f0e"
|
|
44
|
+
},
|
|
30
45
|
"$type": "color",
|
|
31
46
|
"themeable": true,
|
|
32
47
|
"prefix": false
|
|
33
48
|
},
|
|
34
49
|
"500": {
|
|
35
|
-
"$value":
|
|
50
|
+
"$value": {
|
|
51
|
+
"default": "#619025",
|
|
52
|
+
"dark": "#619025"
|
|
53
|
+
},
|
|
36
54
|
"$type": "color",
|
|
37
55
|
"themeable": true,
|
|
38
56
|
"prefix": false
|
|
39
57
|
},
|
|
40
58
|
"600": {
|
|
41
|
-
"$value":
|
|
59
|
+
"$value": {
|
|
60
|
+
"default": "#4e7f0e",
|
|
61
|
+
"dark": "#81ac41"
|
|
62
|
+
},
|
|
42
63
|
"$type": "color",
|
|
43
64
|
"themeable": true,
|
|
44
65
|
"prefix": false
|
|
45
66
|
},
|
|
46
67
|
"700": {
|
|
47
|
-
"$value":
|
|
68
|
+
"$value": {
|
|
69
|
+
"default": "#366800",
|
|
70
|
+
"dark": "#94c25e"
|
|
71
|
+
},
|
|
48
72
|
"$type": "color",
|
|
49
73
|
"themeable": true,
|
|
50
74
|
"prefix": false
|
|
51
75
|
},
|
|
52
76
|
"800": {
|
|
53
|
-
"$value":
|
|
77
|
+
"$value": {
|
|
78
|
+
"default": "#275600",
|
|
79
|
+
"dark": "#b0d97b"
|
|
80
|
+
},
|
|
54
81
|
"$type": "color",
|
|
55
82
|
"themeable": true,
|
|
56
83
|
"prefix": false
|
|
57
84
|
},
|
|
58
85
|
"900": {
|
|
59
|
-
"$value":
|
|
86
|
+
"$value": {
|
|
87
|
+
"default": "#1a4500",
|
|
88
|
+
"dark": "#c6ed94"
|
|
89
|
+
},
|
|
60
90
|
"$type": "color",
|
|
61
91
|
"themeable": true,
|
|
62
92
|
"prefix": false
|
|
63
93
|
},
|
|
64
94
|
"950": {
|
|
65
|
-
"$value":
|
|
95
|
+
"$value": {
|
|
96
|
+
"default": "#133a03",
|
|
97
|
+
"dark": "#ddfab7"
|
|
98
|
+
},
|
|
66
99
|
"$type": "color",
|
|
67
100
|
"themeable": true,
|
|
68
101
|
"prefix": false
|
|
@@ -70,67 +103,100 @@
|
|
|
70
103
|
},
|
|
71
104
|
"aqua": {
|
|
72
105
|
"50": {
|
|
73
|
-
"$value":
|
|
106
|
+
"$value": {
|
|
107
|
+
"default": "#b5fefd",
|
|
108
|
+
"dark": "#00344b"
|
|
109
|
+
},
|
|
74
110
|
"$type": "color",
|
|
75
111
|
"themeable": true,
|
|
76
112
|
"prefix": false
|
|
77
113
|
},
|
|
78
114
|
"100": {
|
|
79
|
-
"$value":
|
|
115
|
+
"$value": {
|
|
116
|
+
"default": "#93f2ef",
|
|
117
|
+
"dark": "#004059"
|
|
118
|
+
},
|
|
80
119
|
"$type": "color",
|
|
81
120
|
"themeable": true,
|
|
82
121
|
"prefix": false
|
|
83
122
|
},
|
|
84
123
|
"200": {
|
|
85
|
-
"$value":
|
|
124
|
+
"$value": {
|
|
125
|
+
"default": "#5edee3",
|
|
126
|
+
"dark": "#00516c"
|
|
127
|
+
},
|
|
86
128
|
"$type": "color",
|
|
87
129
|
"themeable": true,
|
|
88
130
|
"prefix": false
|
|
89
131
|
},
|
|
90
132
|
"300": {
|
|
91
|
-
"$value":
|
|
133
|
+
"$value": {
|
|
134
|
+
"default": "#32c5d2",
|
|
135
|
+
"dark": "#006381"
|
|
136
|
+
},
|
|
92
137
|
"$type": "color",
|
|
93
138
|
"themeable": true,
|
|
94
139
|
"prefix": false
|
|
95
140
|
},
|
|
96
141
|
"400": {
|
|
97
|
-
"$value":
|
|
142
|
+
"$value": {
|
|
143
|
+
"default": "#00acc4",
|
|
144
|
+
"dark": "#007b9b"
|
|
145
|
+
},
|
|
98
146
|
"$type": "color",
|
|
99
147
|
"themeable": true,
|
|
100
148
|
"prefix": false
|
|
101
149
|
},
|
|
102
150
|
"500": {
|
|
103
|
-
"$value":
|
|
151
|
+
"$value": {
|
|
152
|
+
"default": "#0090b1",
|
|
153
|
+
"dark": "#0090b1"
|
|
154
|
+
},
|
|
104
155
|
"$type": "color",
|
|
105
156
|
"themeable": true,
|
|
106
157
|
"prefix": false
|
|
107
158
|
},
|
|
108
159
|
"600": {
|
|
109
|
-
"$value":
|
|
160
|
+
"$value": {
|
|
161
|
+
"default": "#007b9b",
|
|
162
|
+
"dark": "#00acc4"
|
|
163
|
+
},
|
|
110
164
|
"$type": "color",
|
|
111
165
|
"themeable": true,
|
|
112
166
|
"prefix": false
|
|
113
167
|
},
|
|
114
168
|
"700": {
|
|
115
|
-
"$value":
|
|
169
|
+
"$value": {
|
|
170
|
+
"default": "#006381",
|
|
171
|
+
"dark": "#32c5d2"
|
|
172
|
+
},
|
|
116
173
|
"$type": "color",
|
|
117
174
|
"themeable": true,
|
|
118
175
|
"prefix": false
|
|
119
176
|
},
|
|
120
177
|
"800": {
|
|
121
|
-
"$value":
|
|
178
|
+
"$value": {
|
|
179
|
+
"default": "#00516c",
|
|
180
|
+
"dark": "#5edee3"
|
|
181
|
+
},
|
|
122
182
|
"$type": "color",
|
|
123
183
|
"themeable": true,
|
|
124
184
|
"prefix": false
|
|
125
185
|
},
|
|
126
186
|
"900": {
|
|
127
|
-
"$value":
|
|
187
|
+
"$value": {
|
|
188
|
+
"default": "#004059",
|
|
189
|
+
"dark": "#93f2ef"
|
|
190
|
+
},
|
|
128
191
|
"$type": "color",
|
|
129
192
|
"themeable": true,
|
|
130
193
|
"prefix": false
|
|
131
194
|
},
|
|
132
195
|
"950": {
|
|
133
|
-
"$value":
|
|
196
|
+
"$value": {
|
|
197
|
+
"default": "#00344b",
|
|
198
|
+
"dark": "#b5fefd"
|
|
199
|
+
},
|
|
134
200
|
"$type": "color",
|
|
135
201
|
"themeable": true,
|
|
136
202
|
"prefix": false
|
|
@@ -138,67 +204,100 @@
|
|
|
138
204
|
},
|
|
139
205
|
"blue": {
|
|
140
206
|
"50": {
|
|
141
|
-
"$value":
|
|
207
|
+
"$value": {
|
|
208
|
+
"default": "#e9ebff",
|
|
209
|
+
"dark": "#2a2b59"
|
|
210
|
+
},
|
|
142
211
|
"$type": "color",
|
|
143
212
|
"themeable": true,
|
|
144
213
|
"prefix": false
|
|
145
214
|
},
|
|
146
215
|
"100": {
|
|
147
|
-
"$value":
|
|
216
|
+
"$value": {
|
|
217
|
+
"default": "#d2dcff",
|
|
218
|
+
"dark": "#303470"
|
|
219
|
+
},
|
|
148
220
|
"$type": "color",
|
|
149
221
|
"themeable": true,
|
|
150
222
|
"prefix": false
|
|
151
223
|
},
|
|
152
224
|
"200": {
|
|
153
|
-
"$value":
|
|
225
|
+
"$value": {
|
|
226
|
+
"default": "#b7c6ff",
|
|
227
|
+
"dark": "#374291"
|
|
228
|
+
},
|
|
154
229
|
"$type": "color",
|
|
155
230
|
"themeable": true,
|
|
156
231
|
"prefix": false
|
|
157
232
|
},
|
|
158
233
|
"300": {
|
|
159
|
-
"$value":
|
|
234
|
+
"$value": {
|
|
235
|
+
"default": "#97acff",
|
|
236
|
+
"dark": "#3f51ae"
|
|
237
|
+
},
|
|
160
238
|
"$type": "color",
|
|
161
239
|
"themeable": true,
|
|
162
240
|
"prefix": false
|
|
163
241
|
},
|
|
164
242
|
"400": {
|
|
165
|
-
"$value":
|
|
243
|
+
"$value": {
|
|
244
|
+
"default": "#7992f5",
|
|
245
|
+
"dark": "#4e65cd"
|
|
246
|
+
},
|
|
166
247
|
"$type": "color",
|
|
167
248
|
"themeable": true,
|
|
168
249
|
"prefix": false
|
|
169
250
|
},
|
|
170
251
|
"500": {
|
|
171
|
-
"$value":
|
|
252
|
+
"$value": {
|
|
253
|
+
"default": "#617ae2",
|
|
254
|
+
"dark": "#617ae2"
|
|
255
|
+
},
|
|
172
256
|
"$type": "color",
|
|
173
257
|
"themeable": true,
|
|
174
258
|
"prefix": false
|
|
175
259
|
},
|
|
176
260
|
"600": {
|
|
177
|
-
"$value":
|
|
261
|
+
"$value": {
|
|
262
|
+
"default": "#4e65cd",
|
|
263
|
+
"dark": "#7992f5"
|
|
264
|
+
},
|
|
178
265
|
"$type": "color",
|
|
179
266
|
"themeable": true,
|
|
180
267
|
"prefix": false
|
|
181
268
|
},
|
|
182
269
|
"700": {
|
|
183
|
-
"$value":
|
|
270
|
+
"$value": {
|
|
271
|
+
"default": "#3f51ae",
|
|
272
|
+
"dark": "#97acff"
|
|
273
|
+
},
|
|
184
274
|
"$type": "color",
|
|
185
275
|
"themeable": true,
|
|
186
276
|
"prefix": false
|
|
187
277
|
},
|
|
188
278
|
"800": {
|
|
189
|
-
"$value":
|
|
279
|
+
"$value": {
|
|
280
|
+
"default": "#374291",
|
|
281
|
+
"dark": "#b7c6ff"
|
|
282
|
+
},
|
|
190
283
|
"$type": "color",
|
|
191
284
|
"themeable": true,
|
|
192
285
|
"prefix": false
|
|
193
286
|
},
|
|
194
287
|
"900": {
|
|
195
|
-
"$value":
|
|
288
|
+
"$value": {
|
|
289
|
+
"default": "#303470",
|
|
290
|
+
"dark": "#d2dcff"
|
|
291
|
+
},
|
|
196
292
|
"$type": "color",
|
|
197
293
|
"themeable": true,
|
|
198
294
|
"prefix": false
|
|
199
295
|
},
|
|
200
296
|
"950": {
|
|
201
|
-
"$value":
|
|
297
|
+
"$value": {
|
|
298
|
+
"default": "#2a2b59",
|
|
299
|
+
"dark": "#e9ebff"
|
|
300
|
+
},
|
|
202
301
|
"$type": "color",
|
|
203
302
|
"themeable": true,
|
|
204
303
|
"prefix": false
|
|
@@ -206,67 +305,100 @@
|
|
|
206
305
|
},
|
|
207
306
|
"magenta": {
|
|
208
307
|
"50": {
|
|
209
|
-
"$value":
|
|
308
|
+
"$value": {
|
|
309
|
+
"default": "#ffe3eb",
|
|
310
|
+
"dark": "#541d31"
|
|
311
|
+
},
|
|
210
312
|
"$type": "color",
|
|
211
313
|
"themeable": true,
|
|
212
314
|
"prefix": false
|
|
213
315
|
},
|
|
214
316
|
"100": {
|
|
215
|
-
"$value":
|
|
317
|
+
"$value": {
|
|
318
|
+
"default": "#ffccdb",
|
|
319
|
+
"dark": "#661e3a"
|
|
320
|
+
},
|
|
216
321
|
"$type": "color",
|
|
217
322
|
"themeable": true,
|
|
218
323
|
"prefix": false
|
|
219
324
|
},
|
|
220
325
|
"200": {
|
|
221
|
-
"$value":
|
|
326
|
+
"$value": {
|
|
327
|
+
"default": "#fcacc5",
|
|
328
|
+
"dark": "#7c214f"
|
|
329
|
+
},
|
|
222
330
|
"$type": "color",
|
|
223
331
|
"themeable": true,
|
|
224
332
|
"prefix": false
|
|
225
333
|
},
|
|
226
334
|
"300": {
|
|
227
|
-
"$value":
|
|
335
|
+
"$value": {
|
|
336
|
+
"default": "#f88aaf",
|
|
337
|
+
"dark": "#9a2e5d"
|
|
338
|
+
},
|
|
228
339
|
"$type": "color",
|
|
229
340
|
"themeable": true,
|
|
230
341
|
"prefix": false
|
|
231
342
|
},
|
|
232
343
|
"400": {
|
|
233
|
-
"$value":
|
|
344
|
+
"$value": {
|
|
345
|
+
"default": "#e86e9a",
|
|
346
|
+
"dark": "#b93d71"
|
|
347
|
+
},
|
|
234
348
|
"$type": "color",
|
|
235
349
|
"themeable": true,
|
|
236
350
|
"prefix": false
|
|
237
351
|
},
|
|
238
352
|
"500": {
|
|
239
|
-
"$value":
|
|
353
|
+
"$value": {
|
|
354
|
+
"default": "#cf4d81",
|
|
355
|
+
"dark": "#cf4d81"
|
|
356
|
+
},
|
|
240
357
|
"$type": "color",
|
|
241
358
|
"themeable": true,
|
|
242
359
|
"prefix": false
|
|
243
360
|
},
|
|
244
361
|
"600": {
|
|
245
|
-
"$value":
|
|
362
|
+
"$value": {
|
|
363
|
+
"default": "#b93d71",
|
|
364
|
+
"dark": "#e86e9a"
|
|
365
|
+
},
|
|
246
366
|
"$type": "color",
|
|
247
367
|
"themeable": true,
|
|
248
368
|
"prefix": false
|
|
249
369
|
},
|
|
250
370
|
"700": {
|
|
251
|
-
"$value":
|
|
371
|
+
"$value": {
|
|
372
|
+
"default": "#9a2e5d",
|
|
373
|
+
"dark": "#f88aaf"
|
|
374
|
+
},
|
|
252
375
|
"$type": "color",
|
|
253
376
|
"themeable": true,
|
|
254
377
|
"prefix": false
|
|
255
378
|
},
|
|
256
379
|
"800": {
|
|
257
|
-
"$value":
|
|
380
|
+
"$value": {
|
|
381
|
+
"default": "#7c214f",
|
|
382
|
+
"dark": "#fcacc5"
|
|
383
|
+
},
|
|
258
384
|
"$type": "color",
|
|
259
385
|
"themeable": true,
|
|
260
386
|
"prefix": false
|
|
261
387
|
},
|
|
262
388
|
"900": {
|
|
263
|
-
"$value":
|
|
389
|
+
"$value": {
|
|
390
|
+
"default": "#661e3a",
|
|
391
|
+
"dark": "#ffccdb"
|
|
392
|
+
},
|
|
264
393
|
"$type": "color",
|
|
265
394
|
"themeable": true,
|
|
266
395
|
"prefix": false
|
|
267
396
|
},
|
|
268
397
|
"950": {
|
|
269
|
-
"$value":
|
|
398
|
+
"$value": {
|
|
399
|
+
"default": "#541d31",
|
|
400
|
+
"dark": "#ffe3eb"
|
|
401
|
+
},
|
|
270
402
|
"$type": "color",
|
|
271
403
|
"themeable": true,
|
|
272
404
|
"prefix": false
|
|
@@ -274,67 +406,100 @@
|
|
|
274
406
|
},
|
|
275
407
|
"orange": {
|
|
276
408
|
"50": {
|
|
277
|
-
"$value":
|
|
409
|
+
"$value": {
|
|
410
|
+
"default": "#fae8d1",
|
|
411
|
+
"dark": "#4b2707"
|
|
412
|
+
},
|
|
278
413
|
"$type": "color",
|
|
279
414
|
"themeable": true,
|
|
280
415
|
"prefix": false
|
|
281
416
|
},
|
|
282
417
|
"100": {
|
|
283
|
-
"$value":
|
|
418
|
+
"$value": {
|
|
419
|
+
"default": "#f5d6b3",
|
|
420
|
+
"dark": "#5e2f05"
|
|
421
|
+
},
|
|
284
422
|
"$type": "color",
|
|
285
423
|
"themeable": true,
|
|
286
424
|
"prefix": false
|
|
287
425
|
},
|
|
288
426
|
"200": {
|
|
289
|
-
"$value":
|
|
427
|
+
"$value": {
|
|
428
|
+
"default": "#eebd8c",
|
|
429
|
+
"dark": "#6f3500"
|
|
430
|
+
},
|
|
290
431
|
"$type": "color",
|
|
291
432
|
"themeable": true,
|
|
292
433
|
"prefix": false
|
|
293
434
|
},
|
|
294
435
|
"300": {
|
|
295
|
-
"$value":
|
|
436
|
+
"$value": {
|
|
437
|
+
"default": "#e99b60",
|
|
438
|
+
"dark": "#92430a"
|
|
439
|
+
},
|
|
296
440
|
"$type": "color",
|
|
297
441
|
"themeable": true,
|
|
298
442
|
"prefix": false
|
|
299
443
|
},
|
|
300
444
|
"400": {
|
|
301
|
-
"$value":
|
|
445
|
+
"$value": {
|
|
446
|
+
"default": "#e07e41",
|
|
447
|
+
"dark": "#b14f18"
|
|
448
|
+
},
|
|
302
449
|
"$type": "color",
|
|
303
450
|
"themeable": true,
|
|
304
451
|
"prefix": false
|
|
305
452
|
},
|
|
306
453
|
"500": {
|
|
307
|
-
"$value":
|
|
454
|
+
"$value": {
|
|
455
|
+
"default": "#c95d2e",
|
|
456
|
+
"dark": "#c95d2e"
|
|
457
|
+
},
|
|
308
458
|
"$type": "color",
|
|
309
459
|
"themeable": true,
|
|
310
460
|
"prefix": false
|
|
311
461
|
},
|
|
312
462
|
"600": {
|
|
313
|
-
"$value":
|
|
463
|
+
"$value": {
|
|
464
|
+
"default": "#b14f18",
|
|
465
|
+
"dark": "#e07e41"
|
|
466
|
+
},
|
|
314
467
|
"$type": "color",
|
|
315
468
|
"themeable": true,
|
|
316
469
|
"prefix": false
|
|
317
470
|
},
|
|
318
471
|
"700": {
|
|
319
|
-
"$value":
|
|
472
|
+
"$value": {
|
|
473
|
+
"default": "#92430a",
|
|
474
|
+
"dark": "#e99b60"
|
|
475
|
+
},
|
|
320
476
|
"$type": "color",
|
|
321
477
|
"themeable": true,
|
|
322
478
|
"prefix": false
|
|
323
479
|
},
|
|
324
480
|
"800": {
|
|
325
|
-
"$value":
|
|
481
|
+
"$value": {
|
|
482
|
+
"default": "#6f3500",
|
|
483
|
+
"dark": "#eebd8c"
|
|
484
|
+
},
|
|
326
485
|
"$type": "color",
|
|
327
486
|
"themeable": true,
|
|
328
487
|
"prefix": false
|
|
329
488
|
},
|
|
330
489
|
"900": {
|
|
331
|
-
"$value":
|
|
490
|
+
"$value": {
|
|
491
|
+
"default": "#5e2f05",
|
|
492
|
+
"dark": "#f5d6b3"
|
|
493
|
+
},
|
|
332
494
|
"$type": "color",
|
|
333
495
|
"themeable": true,
|
|
334
496
|
"prefix": false
|
|
335
497
|
},
|
|
336
498
|
"950": {
|
|
337
|
-
"$value":
|
|
499
|
+
"$value": {
|
|
500
|
+
"default": "#4b2707",
|
|
501
|
+
"dark": "#fae8d1"
|
|
502
|
+
},
|
|
338
503
|
"$type": "color",
|
|
339
504
|
"themeable": true,
|
|
340
505
|
"prefix": false
|