@neo4j-ndl/base 1.0.2 → 1.1.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 +12 -0
- package/lib/LICENSES.txt +265 -32
- package/lib/NOTICE.txt +47 -42
- package/lib/cjs/tokens/js/tokens-esm.js +114 -26
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -1
- package/lib/cjs/tokens/js/tokens.js +114 -26
- package/lib/cjs/tokens/js/tokens.js.map +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +114 -26
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -1
- package/lib/esm/tokens/js/tokens.js +114 -26
- package/lib/esm/tokens/js/tokens.js.map +1 -1
- package/lib/neo4j-ds-styles.css +545 -29
- package/lib/tokens/css/tokens.css +66 -20
- package/lib/tokens/js/tokens-raw.js +2328 -957
- package/lib/tokens/js/tokens.js +114 -26
- package/lib/tokens/scss/tokens.scss +66 -20
- package/lib/types/tokens/js/tokens-esm.d.ts +181 -27
- package/lib/types/tokens/js/tokens.d.ts +181 -27
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 03 Apr 2023 15:46:06 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -114,10 +114,12 @@ module.exports = {
|
|
|
114
114
|
"borderRadius": {
|
|
115
115
|
"none": {
|
|
116
116
|
"value": "0px",
|
|
117
|
+
"description": "Avoid since we want to usually have a slightly rounded layout style",
|
|
117
118
|
"filePath": "src/tokens/borderRadius.json",
|
|
118
119
|
"isSource": true,
|
|
119
120
|
"original": {
|
|
120
|
-
"value": "0px"
|
|
121
|
+
"value": "0px",
|
|
122
|
+
"description": "Avoid since we want to usually have a slightly rounded layout style"
|
|
121
123
|
},
|
|
122
124
|
"name": "BorderRadiusNone",
|
|
123
125
|
"attributes": {
|
|
@@ -131,10 +133,12 @@ module.exports = {
|
|
|
131
133
|
},
|
|
132
134
|
"sm": {
|
|
133
135
|
"value": "4px",
|
|
136
|
+
"description": "Most common radius. Used in most smaller components such as buttons, checkboxes, text fields, radio buttons, tags and tooltips",
|
|
134
137
|
"filePath": "src/tokens/borderRadius.json",
|
|
135
138
|
"isSource": true,
|
|
136
139
|
"original": {
|
|
137
|
-
"value": "4px"
|
|
140
|
+
"value": "4px",
|
|
141
|
+
"description": "Most common radius. Used in most smaller components such as buttons, checkboxes, text fields, radio buttons, tags and tooltips"
|
|
138
142
|
},
|
|
139
143
|
"name": "BorderRadiusSm",
|
|
140
144
|
"attributes": {
|
|
@@ -148,10 +152,12 @@ module.exports = {
|
|
|
148
152
|
},
|
|
149
153
|
"md": {
|
|
150
154
|
"value": "6px",
|
|
155
|
+
"description": "Do not use",
|
|
151
156
|
"filePath": "src/tokens/borderRadius.json",
|
|
152
157
|
"isSource": true,
|
|
153
158
|
"original": {
|
|
154
|
-
"value": "6px"
|
|
159
|
+
"value": "6px",
|
|
160
|
+
"description": "Do not use"
|
|
155
161
|
},
|
|
156
162
|
"name": "BorderRadiusMd",
|
|
157
163
|
"attributes": {
|
|
@@ -165,10 +171,12 @@ module.exports = {
|
|
|
165
171
|
},
|
|
166
172
|
"lg": {
|
|
167
173
|
"value": "8px",
|
|
174
|
+
"description": "Used for slightly larger components such as context menu and view selector",
|
|
168
175
|
"filePath": "src/tokens/borderRadius.json",
|
|
169
176
|
"isSource": true,
|
|
170
177
|
"original": {
|
|
171
|
-
"value": "8px"
|
|
178
|
+
"value": "8px",
|
|
179
|
+
"description": "Used for slightly larger components such as context menu and view selector"
|
|
172
180
|
},
|
|
173
181
|
"name": "BorderRadiusLg",
|
|
174
182
|
"attributes": {
|
|
@@ -182,10 +190,12 @@ module.exports = {
|
|
|
182
190
|
},
|
|
183
191
|
"xl": {
|
|
184
192
|
"value": "10px",
|
|
193
|
+
"description": "Do not use",
|
|
185
194
|
"filePath": "src/tokens/borderRadius.json",
|
|
186
195
|
"isSource": true,
|
|
187
196
|
"original": {
|
|
188
|
-
"value": "10px"
|
|
197
|
+
"value": "10px",
|
|
198
|
+
"description": "Do not use"
|
|
189
199
|
},
|
|
190
200
|
"name": "BorderRadiusXl",
|
|
191
201
|
"attributes": {
|
|
@@ -199,10 +209,12 @@ module.exports = {
|
|
|
199
209
|
},
|
|
200
210
|
"1xl": {
|
|
201
211
|
"value": "12px",
|
|
212
|
+
"description": "Do not use",
|
|
202
213
|
"filePath": "src/tokens/borderRadius.json",
|
|
203
214
|
"isSource": true,
|
|
204
215
|
"original": {
|
|
205
|
-
"value": "12px"
|
|
216
|
+
"value": "12px",
|
|
217
|
+
"description": "Do not use"
|
|
206
218
|
},
|
|
207
219
|
"name": "BorderRadius1xl",
|
|
208
220
|
"attributes": {
|
|
@@ -216,10 +228,12 @@ module.exports = {
|
|
|
216
228
|
},
|
|
217
229
|
"2xl": {
|
|
218
230
|
"value": "14px",
|
|
231
|
+
"description": "Do not use",
|
|
219
232
|
"filePath": "src/tokens/borderRadius.json",
|
|
220
233
|
"isSource": true,
|
|
221
234
|
"original": {
|
|
222
|
-
"value": "14px"
|
|
235
|
+
"value": "14px",
|
|
236
|
+
"description": "Do not use"
|
|
223
237
|
},
|
|
224
238
|
"name": "BorderRadius2xl",
|
|
225
239
|
"attributes": {
|
|
@@ -233,10 +247,12 @@ module.exports = {
|
|
|
233
247
|
},
|
|
234
248
|
"3xl": {
|
|
235
249
|
"value": "16px",
|
|
250
|
+
"description": "Used for larger components such as cards, widgets and dialogs",
|
|
236
251
|
"filePath": "src/tokens/borderRadius.json",
|
|
237
252
|
"isSource": true,
|
|
238
253
|
"original": {
|
|
239
|
-
"value": "16px"
|
|
254
|
+
"value": "16px",
|
|
255
|
+
"description": "Used for larger components such as cards, widgets and dialogs"
|
|
240
256
|
},
|
|
241
257
|
"name": "BorderRadius3xl",
|
|
242
258
|
"attributes": {
|
|
@@ -250,10 +266,12 @@ module.exports = {
|
|
|
250
266
|
},
|
|
251
267
|
"4xl": {
|
|
252
268
|
"value": "18px",
|
|
269
|
+
"description": "Do not use",
|
|
253
270
|
"filePath": "src/tokens/borderRadius.json",
|
|
254
271
|
"isSource": true,
|
|
255
272
|
"original": {
|
|
256
|
-
"value": "18px"
|
|
273
|
+
"value": "18px",
|
|
274
|
+
"description": "Do not use"
|
|
257
275
|
},
|
|
258
276
|
"name": "BorderRadius4xl",
|
|
259
277
|
"attributes": {
|
|
@@ -267,10 +285,12 @@ module.exports = {
|
|
|
267
285
|
},
|
|
268
286
|
"5xl": {
|
|
269
287
|
"value": "20px",
|
|
288
|
+
"description": "Do not use",
|
|
270
289
|
"filePath": "src/tokens/borderRadius.json",
|
|
271
290
|
"isSource": true,
|
|
272
291
|
"original": {
|
|
273
|
-
"value": "20px"
|
|
292
|
+
"value": "20px",
|
|
293
|
+
"description": "Do not use"
|
|
274
294
|
},
|
|
275
295
|
"name": "BorderRadius5xl",
|
|
276
296
|
"attributes": {
|
|
@@ -284,10 +304,12 @@ module.exports = {
|
|
|
284
304
|
},
|
|
285
305
|
"full": {
|
|
286
306
|
"value": "9999px",
|
|
307
|
+
"description": "Fully rounded. Use this with caution since Neo4j does not have an overall rounded style. Rounded is used mainly for labels but also in commonly round components such as progress bar, switch and wizard steps",
|
|
287
308
|
"filePath": "src/tokens/borderRadius.json",
|
|
288
309
|
"isSource": true,
|
|
289
310
|
"original": {
|
|
290
|
-
"value": "9999px"
|
|
311
|
+
"value": "9999px",
|
|
312
|
+
"description": "Fully rounded. Use this with caution since Neo4j does not have an overall rounded style. Rounded is used mainly for labels but also in commonly round components such as progress bar, switch and wizard steps"
|
|
291
313
|
},
|
|
292
314
|
"name": "BorderRadiusFull",
|
|
293
315
|
"attributes": {
|
|
@@ -304,11 +326,13 @@ module.exports = {
|
|
|
304
326
|
"xs": {
|
|
305
327
|
"comment": "Extra small screen / phone, only one not included with Tailwind CSS",
|
|
306
328
|
"value": "450px",
|
|
329
|
+
"description": "Smallest breakpoint, mainly for mobile and also the smallest browser width that is supported",
|
|
307
330
|
"filePath": "src/tokens/breakpoints.json",
|
|
308
331
|
"isSource": true,
|
|
309
332
|
"original": {
|
|
310
333
|
"comment": "Extra small screen / phone, only one not included with Tailwind CSS",
|
|
311
|
-
"value": "450px"
|
|
334
|
+
"value": "450px",
|
|
335
|
+
"description": "Smallest breakpoint, mainly for mobile and also the smallest browser width that is supported"
|
|
312
336
|
},
|
|
313
337
|
"name": "BreakpointsXs",
|
|
314
338
|
"attributes": {
|
|
@@ -323,11 +347,13 @@ module.exports = {
|
|
|
323
347
|
"sm": {
|
|
324
348
|
"comment": "Check here: https://tailwindcss.com/docs/responsive-design",
|
|
325
349
|
"value": "640px",
|
|
350
|
+
"description": "Mainly used for small tablets",
|
|
326
351
|
"filePath": "src/tokens/breakpoints.json",
|
|
327
352
|
"isSource": true,
|
|
328
353
|
"original": {
|
|
329
354
|
"comment": "Check here: https://tailwindcss.com/docs/responsive-design",
|
|
330
|
-
"value": "640px"
|
|
355
|
+
"value": "640px",
|
|
356
|
+
"description": "Mainly used for small tablets"
|
|
331
357
|
},
|
|
332
358
|
"name": "BreakpointsSm",
|
|
333
359
|
"attributes": {
|
|
@@ -341,10 +367,12 @@ module.exports = {
|
|
|
341
367
|
},
|
|
342
368
|
"md": {
|
|
343
369
|
"value": "768px",
|
|
370
|
+
"description": "Tablets and usually the smallest laptop size",
|
|
344
371
|
"filePath": "src/tokens/breakpoints.json",
|
|
345
372
|
"isSource": true,
|
|
346
373
|
"original": {
|
|
347
|
-
"value": "768px"
|
|
374
|
+
"value": "768px",
|
|
375
|
+
"description": "Tablets and usually the smallest laptop size"
|
|
348
376
|
},
|
|
349
377
|
"name": "BreakpointsMd",
|
|
350
378
|
"attributes": {
|
|
@@ -358,10 +386,12 @@ module.exports = {
|
|
|
358
386
|
},
|
|
359
387
|
"lg": {
|
|
360
388
|
"value": "1024px",
|
|
389
|
+
"description": "Smaller laptop size",
|
|
361
390
|
"filePath": "src/tokens/breakpoints.json",
|
|
362
391
|
"isSource": true,
|
|
363
392
|
"original": {
|
|
364
|
-
"value": "1024px"
|
|
393
|
+
"value": "1024px",
|
|
394
|
+
"description": "Smaller laptop size"
|
|
365
395
|
},
|
|
366
396
|
"name": "BreakpointsLg",
|
|
367
397
|
"attributes": {
|
|
@@ -375,10 +405,12 @@ module.exports = {
|
|
|
375
405
|
},
|
|
376
406
|
"xl": {
|
|
377
407
|
"value": "1280px",
|
|
408
|
+
"description": "Common laptop size",
|
|
378
409
|
"filePath": "src/tokens/breakpoints.json",
|
|
379
410
|
"isSource": true,
|
|
380
411
|
"original": {
|
|
381
|
-
"value": "1280px"
|
|
412
|
+
"value": "1280px",
|
|
413
|
+
"description": "Common laptop size"
|
|
382
414
|
},
|
|
383
415
|
"name": "BreakpointsXl",
|
|
384
416
|
"attributes": {
|
|
@@ -392,10 +424,12 @@ module.exports = {
|
|
|
392
424
|
},
|
|
393
425
|
"2xl": {
|
|
394
426
|
"value": "1536px",
|
|
427
|
+
"description": "Desktop size",
|
|
395
428
|
"filePath": "src/tokens/breakpoints.json",
|
|
396
429
|
"isSource": true,
|
|
397
430
|
"original": {
|
|
398
|
-
"value": "1536px"
|
|
431
|
+
"value": "1536px",
|
|
432
|
+
"description": "Desktop size"
|
|
399
433
|
},
|
|
400
434
|
"name": "Breakpoints2xl",
|
|
401
435
|
"attributes": {
|
|
@@ -451,10 +485,12 @@ module.exports = {
|
|
|
451
485
|
]
|
|
452
486
|
},
|
|
453
487
|
"30": {
|
|
488
|
+
"rgb": "122, 209, 255",
|
|
454
489
|
"value": "#7ad1ff",
|
|
455
490
|
"filePath": "src/tokens/colors.json",
|
|
456
491
|
"isSource": true,
|
|
457
492
|
"original": {
|
|
493
|
+
"rgb": "122, 209, 255",
|
|
458
494
|
"value": "#7ad1ff"
|
|
459
495
|
},
|
|
460
496
|
"name": "ColorsPrimary30",
|
|
@@ -590,10 +626,12 @@ module.exports = {
|
|
|
590
626
|
]
|
|
591
627
|
},
|
|
592
628
|
"30": {
|
|
629
|
+
"rgb": "255, 102, 138",
|
|
593
630
|
"value": "#ff668a",
|
|
594
631
|
"filePath": "src/tokens/colors.json",
|
|
595
632
|
"isSource": true,
|
|
596
633
|
"original": {
|
|
634
|
+
"rgb": "255, 102, 138",
|
|
597
635
|
"value": "#ff668a"
|
|
598
636
|
},
|
|
599
637
|
"name": "ColorsDanger30",
|
|
@@ -1305,10 +1343,12 @@ module.exports = {
|
|
|
1305
1343
|
]
|
|
1306
1344
|
},
|
|
1307
1345
|
"50": {
|
|
1346
|
+
"rgb": "196, 200, 205",
|
|
1308
1347
|
"value": "#C4C8CD",
|
|
1309
1348
|
"filePath": "src/tokens/colors.json",
|
|
1310
1349
|
"isSource": true,
|
|
1311
1350
|
"original": {
|
|
1351
|
+
"rgb": "196, 200, 205",
|
|
1312
1352
|
"value": "#C4C8CD"
|
|
1313
1353
|
},
|
|
1314
1354
|
"name": "ColorsNeutral50",
|
|
@@ -1403,768 +1443,995 @@ module.exports = {
|
|
|
1403
1443
|
}
|
|
1404
1444
|
}
|
|
1405
1445
|
},
|
|
1406
|
-
"
|
|
1407
|
-
"
|
|
1408
|
-
"
|
|
1409
|
-
|
|
1410
|
-
"
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1446
|
+
"palette": {
|
|
1447
|
+
"dark": {
|
|
1448
|
+
"beta-comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1449
|
+
"neutral": {
|
|
1450
|
+
"text": {
|
|
1451
|
+
"weakest": {
|
|
1452
|
+
"value": "#717780",
|
|
1453
|
+
"description": "Should be used mainly for disabled text",
|
|
1454
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1455
|
+
"isSource": true,
|
|
1456
|
+
"original": {
|
|
1457
|
+
"value": "{colors.neutral.70.value}",
|
|
1458
|
+
"description": "Should be used mainly for disabled text"
|
|
1459
|
+
},
|
|
1460
|
+
"name": "PaletteDarkNeutralTextWeakest",
|
|
1461
|
+
"attributes": {
|
|
1462
|
+
"category": "palette",
|
|
1463
|
+
"type": "dark",
|
|
1464
|
+
"item": "neutral",
|
|
1465
|
+
"subitem": "text",
|
|
1466
|
+
"state": "weakest"
|
|
1467
|
+
},
|
|
1468
|
+
"path": [
|
|
1469
|
+
"palette",
|
|
1470
|
+
"dark",
|
|
1471
|
+
"neutral",
|
|
1472
|
+
"text",
|
|
1473
|
+
"weakest"
|
|
1474
|
+
]
|
|
1475
|
+
},
|
|
1476
|
+
"weaker": {
|
|
1477
|
+
"value": "#B2B7BD",
|
|
1478
|
+
"description": "Should be used sparsely and mainly for headers and subtitles to differentiate from input text",
|
|
1479
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1480
|
+
"isSource": true,
|
|
1481
|
+
"original": {
|
|
1482
|
+
"value": "{colors.neutral.60.value}",
|
|
1483
|
+
"description": "Should be used sparsely and mainly for headers and subtitles to differentiate from input text"
|
|
1484
|
+
},
|
|
1485
|
+
"name": "PaletteDarkNeutralTextWeaker",
|
|
1486
|
+
"attributes": {
|
|
1487
|
+
"category": "palette",
|
|
1488
|
+
"type": "dark",
|
|
1489
|
+
"item": "neutral",
|
|
1490
|
+
"subitem": "text",
|
|
1491
|
+
"state": "weaker"
|
|
1492
|
+
},
|
|
1493
|
+
"path": [
|
|
1494
|
+
"palette",
|
|
1495
|
+
"dark",
|
|
1496
|
+
"neutral",
|
|
1497
|
+
"text",
|
|
1498
|
+
"weaker"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
"weak": {
|
|
1502
|
+
"value": "#C4C8CD",
|
|
1503
|
+
"description": "Used for labels, icon color and descriptions",
|
|
1504
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1505
|
+
"isSource": true,
|
|
1506
|
+
"original": {
|
|
1507
|
+
"value": "{colors.neutral.50.value}",
|
|
1508
|
+
"description": "Used for labels, icon color and descriptions"
|
|
1509
|
+
},
|
|
1510
|
+
"name": "PaletteDarkNeutralTextWeak",
|
|
1511
|
+
"attributes": {
|
|
1512
|
+
"category": "palette",
|
|
1513
|
+
"type": "dark",
|
|
1514
|
+
"item": "neutral",
|
|
1515
|
+
"subitem": "text",
|
|
1516
|
+
"state": "weak"
|
|
1517
|
+
},
|
|
1518
|
+
"path": [
|
|
1519
|
+
"palette",
|
|
1520
|
+
"dark",
|
|
1521
|
+
"neutral",
|
|
1522
|
+
"text",
|
|
1523
|
+
"weak"
|
|
1524
|
+
]
|
|
1525
|
+
},
|
|
1526
|
+
"default": {
|
|
1527
|
+
"value": "#F5F7FA",
|
|
1528
|
+
"description": "Used for all default text",
|
|
1529
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1530
|
+
"isSource": true,
|
|
1531
|
+
"original": {
|
|
1532
|
+
"value": "{colors.neutral.20.value}",
|
|
1533
|
+
"description": "Used for all default text"
|
|
1534
|
+
},
|
|
1535
|
+
"name": "PaletteDarkNeutralTextDefault",
|
|
1536
|
+
"attributes": {
|
|
1537
|
+
"category": "palette",
|
|
1538
|
+
"type": "dark",
|
|
1539
|
+
"item": "neutral",
|
|
1540
|
+
"subitem": "text",
|
|
1541
|
+
"state": "default"
|
|
1542
|
+
},
|
|
1543
|
+
"path": [
|
|
1544
|
+
"palette",
|
|
1545
|
+
"dark",
|
|
1546
|
+
"neutral",
|
|
1547
|
+
"text",
|
|
1548
|
+
"default"
|
|
1549
|
+
]
|
|
1550
|
+
},
|
|
1551
|
+
"inverse": {
|
|
1552
|
+
"value": "#151E29",
|
|
1553
|
+
"description": "Default text on Neutral-bg-strongest or other dark backgrounds",
|
|
1554
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1555
|
+
"isSource": true,
|
|
1556
|
+
"original": {
|
|
1557
|
+
"value": "{colors.neutral.90.value}",
|
|
1558
|
+
"description": "Default text on Neutral-bg-strongest or other dark backgrounds"
|
|
1559
|
+
},
|
|
1560
|
+
"name": "PaletteDarkNeutralTextInverse",
|
|
1561
|
+
"attributes": {
|
|
1562
|
+
"category": "palette",
|
|
1563
|
+
"type": "dark",
|
|
1564
|
+
"item": "neutral",
|
|
1565
|
+
"subitem": "text",
|
|
1566
|
+
"state": "inverse"
|
|
1567
|
+
},
|
|
1568
|
+
"path": [
|
|
1569
|
+
"palette",
|
|
1570
|
+
"dark",
|
|
1571
|
+
"neutral",
|
|
1572
|
+
"text",
|
|
1573
|
+
"inverse"
|
|
1574
|
+
]
|
|
1575
|
+
}
|
|
1414
1576
|
},
|
|
1415
|
-
"
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1577
|
+
"bg": {
|
|
1578
|
+
"weak": {
|
|
1579
|
+
"value": "29, 38, 49",
|
|
1580
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1581
|
+
"description": "Used as a surface color for containers, panels, side navigation and drawers on top of Neutral-bg-default",
|
|
1582
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1583
|
+
"isSource": true,
|
|
1584
|
+
"original": {
|
|
1585
|
+
"value": "29, 38, 49",
|
|
1586
|
+
"comment": "{palette.dark.beta-comment}",
|
|
1587
|
+
"description": "Used as a surface color for containers, panels, side navigation and drawers on top of Neutral-bg-default"
|
|
1588
|
+
},
|
|
1589
|
+
"name": "PaletteDarkNeutralBgWeak",
|
|
1590
|
+
"attributes": {
|
|
1591
|
+
"category": "palette",
|
|
1592
|
+
"type": "dark",
|
|
1593
|
+
"item": "neutral",
|
|
1594
|
+
"subitem": "bg",
|
|
1595
|
+
"state": "weak"
|
|
1596
|
+
},
|
|
1597
|
+
"path": [
|
|
1598
|
+
"palette",
|
|
1599
|
+
"dark",
|
|
1600
|
+
"neutral",
|
|
1601
|
+
"bg",
|
|
1602
|
+
"weak"
|
|
1603
|
+
]
|
|
1604
|
+
},
|
|
1605
|
+
"default": {
|
|
1606
|
+
"value": "#151E29",
|
|
1607
|
+
"description": "Used as canvas/main background color in applications. Can also be used if adding a container on Neutral-bg-weak",
|
|
1608
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1609
|
+
"isSource": true,
|
|
1610
|
+
"original": {
|
|
1611
|
+
"value": "{colors.neutral.90.value}",
|
|
1612
|
+
"description": "Used as canvas/main background color in applications. Can also be used if adding a container on Neutral-bg-weak"
|
|
1613
|
+
},
|
|
1614
|
+
"name": "PaletteDarkNeutralBgDefault",
|
|
1615
|
+
"attributes": {
|
|
1616
|
+
"category": "palette",
|
|
1617
|
+
"type": "dark",
|
|
1618
|
+
"item": "neutral",
|
|
1619
|
+
"subitem": "bg",
|
|
1620
|
+
"state": "default"
|
|
1621
|
+
},
|
|
1622
|
+
"path": [
|
|
1623
|
+
"palette",
|
|
1624
|
+
"dark",
|
|
1625
|
+
"neutral",
|
|
1626
|
+
"bg",
|
|
1627
|
+
"default"
|
|
1628
|
+
]
|
|
1629
|
+
},
|
|
1630
|
+
"strong": {
|
|
1631
|
+
"value": "45, 53, 63",
|
|
1632
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1633
|
+
"description": "Use sparsely, mainly included in some component states",
|
|
1634
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1635
|
+
"isSource": true,
|
|
1636
|
+
"original": {
|
|
1637
|
+
"value": "45, 53, 63",
|
|
1638
|
+
"comment": "{palette.dark.beta-comment}",
|
|
1639
|
+
"description": "Use sparsely, mainly included in some component states"
|
|
1640
|
+
},
|
|
1641
|
+
"name": "PaletteDarkNeutralBgStrong",
|
|
1642
|
+
"attributes": {
|
|
1643
|
+
"category": "palette",
|
|
1644
|
+
"type": "dark",
|
|
1645
|
+
"item": "neutral",
|
|
1646
|
+
"subitem": "bg",
|
|
1647
|
+
"state": "strong"
|
|
1648
|
+
},
|
|
1649
|
+
"path": [
|
|
1650
|
+
"palette",
|
|
1651
|
+
"dark",
|
|
1652
|
+
"neutral",
|
|
1653
|
+
"bg",
|
|
1654
|
+
"strong"
|
|
1655
|
+
]
|
|
1656
|
+
},
|
|
1657
|
+
"strongest": {
|
|
1658
|
+
"value": "#FFFFFF",
|
|
1659
|
+
"description": "Use sparsely, mainly for tooltips or other elements that should stand out from the light layout",
|
|
1660
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1661
|
+
"isSource": true,
|
|
1662
|
+
"original": {
|
|
1663
|
+
"value": "{colors.neutral.10.value}",
|
|
1664
|
+
"description": "Use sparsely, mainly for tooltips or other elements that should stand out from the light layout"
|
|
1665
|
+
},
|
|
1666
|
+
"name": "PaletteDarkNeutralBgStrongest",
|
|
1667
|
+
"attributes": {
|
|
1668
|
+
"category": "palette",
|
|
1669
|
+
"type": "dark",
|
|
1670
|
+
"item": "neutral",
|
|
1671
|
+
"subitem": "bg",
|
|
1672
|
+
"state": "strongest"
|
|
1673
|
+
},
|
|
1674
|
+
"path": [
|
|
1675
|
+
"palette",
|
|
1676
|
+
"dark",
|
|
1677
|
+
"neutral",
|
|
1678
|
+
"bg",
|
|
1679
|
+
"strongest"
|
|
1680
|
+
]
|
|
1681
|
+
}
|
|
1420
1682
|
},
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1683
|
+
"border": {
|
|
1684
|
+
"weak": {
|
|
1685
|
+
"value": "37, 47, 59",
|
|
1686
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1687
|
+
"description": "Used for light borders such as dividers and tables as well as some components such as context menu and code block to make them stand out more from the background",
|
|
1688
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1689
|
+
"isSource": true,
|
|
1690
|
+
"original": {
|
|
1691
|
+
"value": "37, 47, 59",
|
|
1692
|
+
"comment": "{palette.dark.beta-comment}",
|
|
1693
|
+
"description": "Used for light borders such as dividers and tables as well as some components such as context menu and code block to make them stand out more from the background"
|
|
1694
|
+
},
|
|
1695
|
+
"name": "PaletteDarkNeutralBorderWeak",
|
|
1696
|
+
"attributes": {
|
|
1697
|
+
"category": "palette",
|
|
1698
|
+
"type": "dark",
|
|
1699
|
+
"item": "neutral",
|
|
1700
|
+
"subitem": "border",
|
|
1701
|
+
"state": "weak"
|
|
1702
|
+
},
|
|
1703
|
+
"path": [
|
|
1704
|
+
"palette",
|
|
1705
|
+
"dark",
|
|
1706
|
+
"neutral",
|
|
1707
|
+
"border",
|
|
1708
|
+
"weak"
|
|
1709
|
+
]
|
|
1710
|
+
},
|
|
1711
|
+
"strong": {
|
|
1712
|
+
"value": "#717780",
|
|
1713
|
+
"description": "Used for components that are outlined and need to stand out such as text fields, search fields, drop-downs, buttons, checkboxes and radio buttons",
|
|
1714
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1715
|
+
"isSource": true,
|
|
1716
|
+
"original": {
|
|
1717
|
+
"value": "{colors.neutral.70.value}",
|
|
1718
|
+
"description": "Used for components that are outlined and need to stand out such as text fields, search fields, drop-downs, buttons, checkboxes and radio buttons"
|
|
1719
|
+
},
|
|
1720
|
+
"name": "PaletteDarkNeutralBorderStrong",
|
|
1721
|
+
"attributes": {
|
|
1722
|
+
"category": "palette",
|
|
1723
|
+
"type": "dark",
|
|
1724
|
+
"item": "neutral",
|
|
1725
|
+
"subitem": "border",
|
|
1726
|
+
"state": "strong"
|
|
1727
|
+
},
|
|
1728
|
+
"path": [
|
|
1729
|
+
"palette",
|
|
1730
|
+
"dark",
|
|
1731
|
+
"neutral",
|
|
1732
|
+
"border",
|
|
1733
|
+
"strong"
|
|
1734
|
+
]
|
|
1735
|
+
}
|
|
1433
1736
|
},
|
|
1434
|
-
"
|
|
1435
|
-
|
|
1436
|
-
"
|
|
1437
|
-
"
|
|
1438
|
-
"
|
|
1737
|
+
"hover": {
|
|
1738
|
+
"alpha": "0.1",
|
|
1739
|
+
"value": "rgba(196, 200, 205,0.1)",
|
|
1740
|
+
"description": "Used for neutral hover states on components",
|
|
1741
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1742
|
+
"isSource": true,
|
|
1743
|
+
"original": {
|
|
1744
|
+
"alpha": "0.1",
|
|
1745
|
+
"value": "rgba({colors.neutral.50.rgb},{palette.light.neutral.hover.alpha})",
|
|
1746
|
+
"description": "Used for neutral hover states on components"
|
|
1747
|
+
},
|
|
1748
|
+
"name": "PaletteDarkNeutralHover",
|
|
1749
|
+
"attributes": {
|
|
1750
|
+
"category": "palette",
|
|
1751
|
+
"type": "dark",
|
|
1752
|
+
"item": "neutral",
|
|
1753
|
+
"subitem": "hover"
|
|
1754
|
+
},
|
|
1755
|
+
"path": [
|
|
1756
|
+
"palette",
|
|
1757
|
+
"dark",
|
|
1758
|
+
"neutral",
|
|
1759
|
+
"hover"
|
|
1760
|
+
]
|
|
1439
1761
|
},
|
|
1440
|
-
"
|
|
1441
|
-
"
|
|
1442
|
-
"
|
|
1443
|
-
"
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
"
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
"h4": {
|
|
1466
|
-
"value": "1.5rem",
|
|
1467
|
-
"filePath": "src/tokens/fonts.json",
|
|
1468
|
-
"isSource": true,
|
|
1469
|
-
"original": {
|
|
1470
|
-
"value": "1.5rem"
|
|
1471
|
-
},
|
|
1472
|
-
"name": "FontSizeH4",
|
|
1473
|
-
"attributes": {
|
|
1474
|
-
"category": "font",
|
|
1475
|
-
"type": "size",
|
|
1476
|
-
"item": "h4"
|
|
1477
|
-
},
|
|
1478
|
-
"path": [
|
|
1479
|
-
"font",
|
|
1480
|
-
"size",
|
|
1481
|
-
"h4"
|
|
1482
|
-
]
|
|
1762
|
+
"pressed": {
|
|
1763
|
+
"alpha": "0.2",
|
|
1764
|
+
"value": "rgba(196, 200, 205,0.2)",
|
|
1765
|
+
"description": "Used for neutral pressed states on components",
|
|
1766
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1767
|
+
"isSource": true,
|
|
1768
|
+
"original": {
|
|
1769
|
+
"alpha": "0.2",
|
|
1770
|
+
"value": "rgba({colors.neutral.50.rgb},{palette.light.neutral.pressed.alpha})",
|
|
1771
|
+
"description": "Used for neutral pressed states on components"
|
|
1772
|
+
},
|
|
1773
|
+
"name": "PaletteDarkNeutralPressed",
|
|
1774
|
+
"attributes": {
|
|
1775
|
+
"category": "palette",
|
|
1776
|
+
"type": "dark",
|
|
1777
|
+
"item": "neutral",
|
|
1778
|
+
"subitem": "pressed"
|
|
1779
|
+
},
|
|
1780
|
+
"path": [
|
|
1781
|
+
"palette",
|
|
1782
|
+
"dark",
|
|
1783
|
+
"neutral",
|
|
1784
|
+
"pressed"
|
|
1785
|
+
]
|
|
1786
|
+
}
|
|
1483
1787
|
},
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
"
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
"
|
|
1495
|
-
"
|
|
1788
|
+
"primary": {
|
|
1789
|
+
"text": {
|
|
1790
|
+
"value": "#a3e2ff",
|
|
1791
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states",
|
|
1792
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1793
|
+
"isSource": true,
|
|
1794
|
+
"original": {
|
|
1795
|
+
"value": "{colors.primary.20.value}",
|
|
1796
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states"
|
|
1797
|
+
},
|
|
1798
|
+
"name": "PaletteDarkPrimaryText",
|
|
1799
|
+
"attributes": {
|
|
1800
|
+
"category": "palette",
|
|
1801
|
+
"type": "dark",
|
|
1802
|
+
"item": "primary",
|
|
1803
|
+
"subitem": "text"
|
|
1804
|
+
},
|
|
1805
|
+
"path": [
|
|
1806
|
+
"palette",
|
|
1807
|
+
"dark",
|
|
1808
|
+
"primary",
|
|
1809
|
+
"text"
|
|
1810
|
+
]
|
|
1496
1811
|
},
|
|
1497
|
-
"
|
|
1498
|
-
"
|
|
1499
|
-
"
|
|
1500
|
-
"
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1812
|
+
"icon": {
|
|
1813
|
+
"value": "#a3e2ff",
|
|
1814
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states",
|
|
1815
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1816
|
+
"isSource": true,
|
|
1817
|
+
"original": {
|
|
1818
|
+
"value": "{colors.primary.20.value}",
|
|
1819
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states"
|
|
1820
|
+
},
|
|
1821
|
+
"name": "PaletteDarkPrimaryIcon",
|
|
1822
|
+
"attributes": {
|
|
1823
|
+
"category": "palette",
|
|
1824
|
+
"type": "dark",
|
|
1825
|
+
"item": "primary",
|
|
1826
|
+
"subitem": "icon"
|
|
1827
|
+
},
|
|
1828
|
+
"path": [
|
|
1829
|
+
"palette",
|
|
1830
|
+
"dark",
|
|
1831
|
+
"primary",
|
|
1832
|
+
"icon"
|
|
1833
|
+
]
|
|
1509
1834
|
},
|
|
1510
|
-
"
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1835
|
+
"bg": {
|
|
1836
|
+
"strong": {
|
|
1837
|
+
"value": "#a3e2ff",
|
|
1838
|
+
"description": "Used as backgrounds for highlighted components such as filled buttons, checkboxes, radio buttons, cards, filled labels, pagination and view selectors",
|
|
1839
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1840
|
+
"isSource": true,
|
|
1841
|
+
"original": {
|
|
1842
|
+
"value": "{colors.primary.20.value}",
|
|
1843
|
+
"description": "Used as backgrounds for highlighted components such as filled buttons, checkboxes, radio buttons, cards, filled labels, pagination and view selectors"
|
|
1844
|
+
},
|
|
1845
|
+
"name": "PaletteDarkPrimaryBgStrong",
|
|
1846
|
+
"attributes": {
|
|
1847
|
+
"category": "palette",
|
|
1848
|
+
"type": "dark",
|
|
1849
|
+
"item": "primary",
|
|
1850
|
+
"subitem": "bg",
|
|
1851
|
+
"state": "strong"
|
|
1852
|
+
},
|
|
1853
|
+
"path": [
|
|
1854
|
+
"palette",
|
|
1855
|
+
"dark",
|
|
1856
|
+
"primary",
|
|
1857
|
+
"bg",
|
|
1858
|
+
"strong"
|
|
1859
|
+
]
|
|
1860
|
+
},
|
|
1861
|
+
"weak": {
|
|
1862
|
+
"value": "49, 69, 84",
|
|
1863
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1864
|
+
"description": "Used as a light primary background and usually in combination with Primary-text,icon. Components include banners, semi-filled labels, drag & drops and filled tabs",
|
|
1865
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1866
|
+
"isSource": true,
|
|
1867
|
+
"original": {
|
|
1868
|
+
"value": "49, 69, 84",
|
|
1869
|
+
"comment": "{palette.dark.beta-comment}",
|
|
1870
|
+
"description": "Used as a light primary background and usually in combination with Primary-text,icon. Components include banners, semi-filled labels, drag & drops and filled tabs"
|
|
1871
|
+
},
|
|
1872
|
+
"name": "PaletteDarkPrimaryBgWeak",
|
|
1873
|
+
"attributes": {
|
|
1874
|
+
"category": "palette",
|
|
1875
|
+
"type": "dark",
|
|
1876
|
+
"item": "primary",
|
|
1877
|
+
"subitem": "bg",
|
|
1878
|
+
"state": "weak"
|
|
1879
|
+
},
|
|
1880
|
+
"path": [
|
|
1881
|
+
"palette",
|
|
1882
|
+
"dark",
|
|
1883
|
+
"primary",
|
|
1884
|
+
"bg",
|
|
1885
|
+
"weak"
|
|
1886
|
+
]
|
|
1887
|
+
}
|
|
1515
1888
|
},
|
|
1516
|
-
"
|
|
1517
|
-
"
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1889
|
+
"border": {
|
|
1890
|
+
"strong": {
|
|
1891
|
+
"value": "#a3e2ff",
|
|
1892
|
+
"description": "Use sparsely. Used for outlined primary buttons, drag & drop dragged state, outlined labels and wizard",
|
|
1893
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1894
|
+
"isSource": true,
|
|
1895
|
+
"original": {
|
|
1896
|
+
"value": "{colors.primary.20.value}",
|
|
1897
|
+
"description": "Use sparsely. Used for outlined primary buttons, drag & drop dragged state, outlined labels and wizard"
|
|
1898
|
+
},
|
|
1899
|
+
"name": "PaletteDarkPrimaryBorderStrong",
|
|
1900
|
+
"attributes": {
|
|
1901
|
+
"category": "palette",
|
|
1902
|
+
"type": "dark",
|
|
1903
|
+
"item": "primary",
|
|
1904
|
+
"subitem": "border",
|
|
1905
|
+
"state": "strong"
|
|
1906
|
+
},
|
|
1907
|
+
"path": [
|
|
1908
|
+
"palette",
|
|
1909
|
+
"dark",
|
|
1910
|
+
"primary",
|
|
1911
|
+
"border",
|
|
1912
|
+
"strong"
|
|
1913
|
+
]
|
|
1914
|
+
},
|
|
1915
|
+
"weak": {
|
|
1916
|
+
"value": "78, 108, 126",
|
|
1917
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
1918
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Primary-bg-weak to stand out more from the background",
|
|
1919
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1920
|
+
"isSource": true,
|
|
1921
|
+
"original": {
|
|
1922
|
+
"value": "78, 108, 126",
|
|
1923
|
+
"comment": "{palette.dark.beta-comment}",
|
|
1924
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Primary-bg-weak to stand out more from the background"
|
|
1925
|
+
},
|
|
1926
|
+
"name": "PaletteDarkPrimaryBorderWeak",
|
|
1927
|
+
"attributes": {
|
|
1928
|
+
"category": "palette",
|
|
1929
|
+
"type": "dark",
|
|
1930
|
+
"item": "primary",
|
|
1931
|
+
"subitem": "border",
|
|
1932
|
+
"state": "weak"
|
|
1933
|
+
},
|
|
1934
|
+
"path": [
|
|
1935
|
+
"palette",
|
|
1936
|
+
"dark",
|
|
1937
|
+
"primary",
|
|
1938
|
+
"border",
|
|
1939
|
+
"weak"
|
|
1940
|
+
]
|
|
1941
|
+
}
|
|
1528
1942
|
},
|
|
1529
|
-
"
|
|
1530
|
-
|
|
1531
|
-
"
|
|
1532
|
-
"
|
|
1533
|
-
"
|
|
1943
|
+
"focus": {
|
|
1944
|
+
"value": "#7ad1ff",
|
|
1945
|
+
"description": "Used for all focused states",
|
|
1946
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1947
|
+
"isSource": true,
|
|
1948
|
+
"original": {
|
|
1949
|
+
"value": "{colors.primary.30.value}",
|
|
1950
|
+
"description": "Used for all focused states"
|
|
1951
|
+
},
|
|
1952
|
+
"name": "PaletteDarkPrimaryFocus",
|
|
1953
|
+
"attributes": {
|
|
1954
|
+
"category": "palette",
|
|
1955
|
+
"type": "dark",
|
|
1956
|
+
"item": "primary",
|
|
1957
|
+
"subitem": "focus"
|
|
1958
|
+
},
|
|
1959
|
+
"path": [
|
|
1960
|
+
"palette",
|
|
1961
|
+
"dark",
|
|
1962
|
+
"primary",
|
|
1963
|
+
"focus"
|
|
1964
|
+
]
|
|
1534
1965
|
},
|
|
1535
|
-
"
|
|
1536
|
-
"
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1966
|
+
"hover": {
|
|
1967
|
+
"weak": {
|
|
1968
|
+
"alpha": "0.08",
|
|
1969
|
+
"value": "rgba(122, 209, 255,0.08)",
|
|
1970
|
+
"description": "Used for hover states where the background is either transparent or use Neutral-bg-weak",
|
|
1971
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1972
|
+
"isSource": true,
|
|
1973
|
+
"original": {
|
|
1974
|
+
"alpha": "0.08",
|
|
1975
|
+
"value": "rgba({colors.primary.30.rgb},{palette.light.primary.hover.weak.alpha})",
|
|
1976
|
+
"description": "Used for hover states where the background is either transparent or use Neutral-bg-weak"
|
|
1977
|
+
},
|
|
1978
|
+
"name": "PaletteDarkPrimaryHoverWeak",
|
|
1979
|
+
"attributes": {
|
|
1980
|
+
"category": "palette",
|
|
1981
|
+
"type": "dark",
|
|
1982
|
+
"item": "primary",
|
|
1983
|
+
"subitem": "hover",
|
|
1984
|
+
"state": "weak"
|
|
1985
|
+
},
|
|
1986
|
+
"path": [
|
|
1987
|
+
"palette",
|
|
1988
|
+
"dark",
|
|
1989
|
+
"primary",
|
|
1990
|
+
"hover",
|
|
1991
|
+
"weak"
|
|
1992
|
+
]
|
|
1993
|
+
},
|
|
1994
|
+
"strong": {
|
|
1995
|
+
"value": "#7ad1ff",
|
|
1996
|
+
"description": "Used for hover states where the background is the Primary-bg-strong with the label being Neutral-text-inverse",
|
|
1997
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1998
|
+
"isSource": true,
|
|
1999
|
+
"original": {
|
|
2000
|
+
"value": "{colors.primary.30.value}",
|
|
2001
|
+
"description": "Used for hover states where the background is the Primary-bg-strong with the label being Neutral-text-inverse"
|
|
2002
|
+
},
|
|
2003
|
+
"name": "PaletteDarkPrimaryHoverStrong",
|
|
2004
|
+
"attributes": {
|
|
2005
|
+
"category": "palette",
|
|
2006
|
+
"type": "dark",
|
|
2007
|
+
"item": "primary",
|
|
2008
|
+
"subitem": "hover",
|
|
2009
|
+
"state": "strong"
|
|
2010
|
+
},
|
|
2011
|
+
"path": [
|
|
2012
|
+
"palette",
|
|
2013
|
+
"dark",
|
|
2014
|
+
"primary",
|
|
2015
|
+
"hover",
|
|
2016
|
+
"strong"
|
|
2017
|
+
]
|
|
2018
|
+
}
|
|
1547
2019
|
},
|
|
1548
|
-
"
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
"path": [
|
|
1555
|
-
"font",
|
|
1556
|
-
"size",
|
|
1557
|
-
"subheading-medium"
|
|
1558
|
-
]
|
|
1559
|
-
},
|
|
1560
|
-
"subheading-small": {
|
|
1561
|
-
"value": "0.875rem",
|
|
1562
|
-
"filePath": "src/tokens/fonts.json",
|
|
1563
|
-
"isSource": true,
|
|
1564
|
-
"original": {
|
|
1565
|
-
"value": "0.875rem"
|
|
1566
|
-
},
|
|
1567
|
-
"name": "FontSizeSubheadingSmall",
|
|
1568
|
-
"attributes": {
|
|
1569
|
-
"category": "font",
|
|
1570
|
-
"type": "size",
|
|
1571
|
-
"item": "subheading-small"
|
|
1572
|
-
},
|
|
1573
|
-
"path": [
|
|
1574
|
-
"font",
|
|
1575
|
-
"size",
|
|
1576
|
-
"subheading-small"
|
|
1577
|
-
]
|
|
1578
|
-
},
|
|
1579
|
-
"body-large": {
|
|
1580
|
-
"value": "1rem",
|
|
1581
|
-
"filePath": "src/tokens/fonts.json",
|
|
1582
|
-
"isSource": true,
|
|
1583
|
-
"original": {
|
|
1584
|
-
"value": "1rem"
|
|
1585
|
-
},
|
|
1586
|
-
"name": "FontSizeBodyLarge",
|
|
1587
|
-
"attributes": {
|
|
1588
|
-
"category": "font",
|
|
1589
|
-
"type": "size",
|
|
1590
|
-
"item": "body-large"
|
|
1591
|
-
},
|
|
1592
|
-
"path": [
|
|
1593
|
-
"font",
|
|
1594
|
-
"size",
|
|
1595
|
-
"body-large"
|
|
1596
|
-
]
|
|
1597
|
-
},
|
|
1598
|
-
"body-medium": {
|
|
1599
|
-
"value": "0.875rem",
|
|
1600
|
-
"filePath": "src/tokens/fonts.json",
|
|
1601
|
-
"isSource": true,
|
|
1602
|
-
"original": {
|
|
1603
|
-
"value": "0.875rem"
|
|
1604
|
-
},
|
|
1605
|
-
"name": "FontSizeBodyMedium",
|
|
1606
|
-
"attributes": {
|
|
1607
|
-
"category": "font",
|
|
1608
|
-
"type": "size",
|
|
1609
|
-
"item": "body-medium"
|
|
1610
|
-
},
|
|
1611
|
-
"path": [
|
|
1612
|
-
"font",
|
|
1613
|
-
"size",
|
|
1614
|
-
"body-medium"
|
|
1615
|
-
]
|
|
1616
|
-
},
|
|
1617
|
-
"body-small": {
|
|
1618
|
-
"value": "0.75rem",
|
|
1619
|
-
"filePath": "src/tokens/fonts.json",
|
|
1620
|
-
"isSource": true,
|
|
1621
|
-
"original": {
|
|
1622
|
-
"value": "0.75rem"
|
|
1623
|
-
},
|
|
1624
|
-
"name": "FontSizeBodySmall",
|
|
1625
|
-
"attributes": {
|
|
1626
|
-
"category": "font",
|
|
1627
|
-
"type": "size",
|
|
1628
|
-
"item": "body-small"
|
|
1629
|
-
},
|
|
1630
|
-
"path": [
|
|
1631
|
-
"font",
|
|
1632
|
-
"size",
|
|
1633
|
-
"body-small"
|
|
1634
|
-
]
|
|
1635
|
-
},
|
|
1636
|
-
"code": {
|
|
1637
|
-
"value": "0.875rem",
|
|
1638
|
-
"filePath": "src/tokens/fonts.json",
|
|
1639
|
-
"isSource": true,
|
|
1640
|
-
"original": {
|
|
1641
|
-
"value": "0.875rem"
|
|
1642
|
-
},
|
|
1643
|
-
"name": "FontSizeCode",
|
|
1644
|
-
"attributes": {
|
|
1645
|
-
"category": "font",
|
|
1646
|
-
"type": "size",
|
|
1647
|
-
"item": "code"
|
|
1648
|
-
},
|
|
1649
|
-
"path": [
|
|
1650
|
-
"font",
|
|
1651
|
-
"size",
|
|
1652
|
-
"code"
|
|
1653
|
-
]
|
|
1654
|
-
},
|
|
1655
|
-
"label": {
|
|
1656
|
-
"value": "0.875rem",
|
|
1657
|
-
"filePath": "src/tokens/fonts.json",
|
|
1658
|
-
"isSource": true,
|
|
1659
|
-
"original": {
|
|
1660
|
-
"value": "0.875rem"
|
|
1661
|
-
},
|
|
1662
|
-
"name": "FontSizeLabel",
|
|
1663
|
-
"attributes": {
|
|
1664
|
-
"category": "font",
|
|
1665
|
-
"type": "size",
|
|
1666
|
-
"item": "label"
|
|
1667
|
-
},
|
|
1668
|
-
"path": [
|
|
1669
|
-
"font",
|
|
1670
|
-
"size",
|
|
1671
|
-
"label"
|
|
1672
|
-
]
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
|
-
"weight": {
|
|
1676
|
-
"bold": {
|
|
1677
|
-
"value": "700",
|
|
1678
|
-
"filePath": "src/tokens/fonts.json",
|
|
1679
|
-
"isSource": true,
|
|
1680
|
-
"original": {
|
|
1681
|
-
"value": "700"
|
|
1682
|
-
},
|
|
1683
|
-
"name": "FontWeightBold",
|
|
1684
|
-
"attributes": {
|
|
1685
|
-
"category": "font",
|
|
1686
|
-
"type": "weight",
|
|
1687
|
-
"item": "bold"
|
|
1688
|
-
},
|
|
1689
|
-
"path": [
|
|
1690
|
-
"font",
|
|
1691
|
-
"weight",
|
|
1692
|
-
"bold"
|
|
1693
|
-
]
|
|
1694
|
-
},
|
|
1695
|
-
"semibold": {
|
|
1696
|
-
"value": "600",
|
|
1697
|
-
"filePath": "src/tokens/fonts.json",
|
|
1698
|
-
"isSource": true,
|
|
1699
|
-
"original": {
|
|
1700
|
-
"value": "600"
|
|
1701
|
-
},
|
|
1702
|
-
"name": "FontWeightSemibold",
|
|
1703
|
-
"attributes": {
|
|
1704
|
-
"category": "font",
|
|
1705
|
-
"type": "weight",
|
|
1706
|
-
"item": "semibold"
|
|
1707
|
-
},
|
|
1708
|
-
"path": [
|
|
1709
|
-
"font",
|
|
1710
|
-
"weight",
|
|
1711
|
-
"semibold"
|
|
1712
|
-
]
|
|
1713
|
-
},
|
|
1714
|
-
"normal": {
|
|
1715
|
-
"value": "400",
|
|
1716
|
-
"filePath": "src/tokens/fonts.json",
|
|
1717
|
-
"isSource": true,
|
|
1718
|
-
"original": {
|
|
1719
|
-
"value": "400"
|
|
1720
|
-
},
|
|
1721
|
-
"name": "FontWeightNormal",
|
|
1722
|
-
"attributes": {
|
|
1723
|
-
"category": "font",
|
|
1724
|
-
"type": "weight",
|
|
1725
|
-
"item": "normal"
|
|
1726
|
-
},
|
|
1727
|
-
"path": [
|
|
1728
|
-
"font",
|
|
1729
|
-
"weight",
|
|
1730
|
-
"normal"
|
|
1731
|
-
]
|
|
1732
|
-
},
|
|
1733
|
-
"medium": {
|
|
1734
|
-
"value": "500",
|
|
1735
|
-
"filePath": "src/tokens/fonts.json",
|
|
1736
|
-
"isSource": true,
|
|
1737
|
-
"original": {
|
|
1738
|
-
"value": "500"
|
|
1739
|
-
},
|
|
1740
|
-
"name": "FontWeightMedium",
|
|
1741
|
-
"attributes": {
|
|
1742
|
-
"category": "font",
|
|
1743
|
-
"type": "weight",
|
|
1744
|
-
"item": "medium"
|
|
1745
|
-
},
|
|
1746
|
-
"path": [
|
|
1747
|
-
"font",
|
|
1748
|
-
"weight",
|
|
1749
|
-
"medium"
|
|
1750
|
-
]
|
|
1751
|
-
},
|
|
1752
|
-
"light": {
|
|
1753
|
-
"value": "300",
|
|
1754
|
-
"filePath": "src/tokens/fonts.json",
|
|
1755
|
-
"isSource": true,
|
|
1756
|
-
"original": {
|
|
1757
|
-
"value": "300"
|
|
1758
|
-
},
|
|
1759
|
-
"name": "FontWeightLight",
|
|
1760
|
-
"attributes": {
|
|
1761
|
-
"category": "font",
|
|
1762
|
-
"type": "weight",
|
|
1763
|
-
"item": "light"
|
|
1764
|
-
},
|
|
1765
|
-
"path": [
|
|
1766
|
-
"font",
|
|
1767
|
-
"weight",
|
|
1768
|
-
"light"
|
|
1769
|
-
]
|
|
1770
|
-
}
|
|
1771
|
-
}
|
|
1772
|
-
},
|
|
1773
|
-
"palette": {
|
|
1774
|
-
"light": {
|
|
1775
|
-
"neutral": {
|
|
1776
|
-
"text": {
|
|
1777
|
-
"weakest": {
|
|
1778
|
-
"value": "#B2B7BD",
|
|
1779
|
-
"filePath": "src/tokens/palette.json",
|
|
2020
|
+
"pressed": {
|
|
2021
|
+
"weak": {
|
|
2022
|
+
"alpha": "0.12",
|
|
2023
|
+
"value": "rgba(122, 209, 255,0.12)",
|
|
2024
|
+
"description": "Used for pressed states where the background is either transparent or use Neutral-bg-weak",
|
|
2025
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1780
2026
|
"isSource": true,
|
|
1781
2027
|
"original": {
|
|
1782
|
-
"
|
|
2028
|
+
"alpha": "0.12",
|
|
2029
|
+
"value": "rgba({colors.primary.30.rgb},{palette.light.primary.pressed.weak.alpha})",
|
|
2030
|
+
"description": "Used for pressed states where the background is either transparent or use Neutral-bg-weak"
|
|
1783
2031
|
},
|
|
1784
|
-
"name": "
|
|
2032
|
+
"name": "PaletteDarkPrimaryPressedWeak",
|
|
1785
2033
|
"attributes": {
|
|
1786
2034
|
"category": "palette",
|
|
1787
|
-
"type": "
|
|
1788
|
-
"item": "
|
|
1789
|
-
"subitem": "
|
|
1790
|
-
"state": "
|
|
2035
|
+
"type": "dark",
|
|
2036
|
+
"item": "primary",
|
|
2037
|
+
"subitem": "pressed",
|
|
2038
|
+
"state": "weak"
|
|
1791
2039
|
},
|
|
1792
2040
|
"path": [
|
|
1793
2041
|
"palette",
|
|
1794
|
-
"
|
|
1795
|
-
"
|
|
1796
|
-
"
|
|
1797
|
-
"
|
|
2042
|
+
"dark",
|
|
2043
|
+
"primary",
|
|
2044
|
+
"pressed",
|
|
2045
|
+
"weak"
|
|
1798
2046
|
]
|
|
1799
2047
|
},
|
|
1800
|
-
"
|
|
1801
|
-
"value": "#
|
|
1802
|
-
"
|
|
2048
|
+
"strong": {
|
|
2049
|
+
"value": "#7ad1ff",
|
|
2050
|
+
"description": "Used for pressed states where the background is the Primary-bg-strong with the label being Neutral-text-inverse",
|
|
2051
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1803
2052
|
"isSource": true,
|
|
1804
2053
|
"original": {
|
|
1805
|
-
"value": "{colors.
|
|
2054
|
+
"value": "{colors.primary.30.value}",
|
|
2055
|
+
"description": "Used for pressed states where the background is the Primary-bg-strong with the label being Neutral-text-inverse"
|
|
1806
2056
|
},
|
|
1807
|
-
"name": "
|
|
2057
|
+
"name": "PaletteDarkPrimaryPressedStrong",
|
|
1808
2058
|
"attributes": {
|
|
1809
2059
|
"category": "palette",
|
|
1810
|
-
"type": "
|
|
1811
|
-
"item": "
|
|
1812
|
-
"subitem": "
|
|
1813
|
-
"state": "
|
|
2060
|
+
"type": "dark",
|
|
2061
|
+
"item": "primary",
|
|
2062
|
+
"subitem": "pressed",
|
|
2063
|
+
"state": "strong"
|
|
1814
2064
|
},
|
|
1815
2065
|
"path": [
|
|
1816
2066
|
"palette",
|
|
1817
|
-
"
|
|
1818
|
-
"
|
|
1819
|
-
"
|
|
1820
|
-
"
|
|
2067
|
+
"dark",
|
|
2068
|
+
"primary",
|
|
2069
|
+
"pressed",
|
|
2070
|
+
"strong"
|
|
1821
2071
|
]
|
|
2072
|
+
}
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
"danger": {
|
|
2076
|
+
"text": {
|
|
2077
|
+
"value": "#ffb8c4",
|
|
2078
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2079
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2080
|
+
"isSource": true,
|
|
2081
|
+
"original": {
|
|
2082
|
+
"value": "{colors.danger.20.value}",
|
|
2083
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
1822
2084
|
},
|
|
1823
|
-
"
|
|
1824
|
-
|
|
1825
|
-
"
|
|
2085
|
+
"name": "PaletteDarkDangerText",
|
|
2086
|
+
"attributes": {
|
|
2087
|
+
"category": "palette",
|
|
2088
|
+
"type": "dark",
|
|
2089
|
+
"item": "danger",
|
|
2090
|
+
"subitem": "text"
|
|
2091
|
+
},
|
|
2092
|
+
"path": [
|
|
2093
|
+
"palette",
|
|
2094
|
+
"dark",
|
|
2095
|
+
"danger",
|
|
2096
|
+
"text"
|
|
2097
|
+
]
|
|
2098
|
+
},
|
|
2099
|
+
"icon": {
|
|
2100
|
+
"value": "#ffb8c4",
|
|
2101
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2102
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2103
|
+
"isSource": true,
|
|
2104
|
+
"original": {
|
|
2105
|
+
"value": "{colors.danger.20.value}",
|
|
2106
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
2107
|
+
},
|
|
2108
|
+
"name": "PaletteDarkDangerIcon",
|
|
2109
|
+
"attributes": {
|
|
2110
|
+
"category": "palette",
|
|
2111
|
+
"type": "dark",
|
|
2112
|
+
"item": "danger",
|
|
2113
|
+
"subitem": "icon"
|
|
2114
|
+
},
|
|
2115
|
+
"path": [
|
|
2116
|
+
"palette",
|
|
2117
|
+
"dark",
|
|
2118
|
+
"danger",
|
|
2119
|
+
"icon"
|
|
2120
|
+
]
|
|
2121
|
+
},
|
|
2122
|
+
"bg": {
|
|
2123
|
+
"strong": {
|
|
2124
|
+
"value": "#ffb8c4",
|
|
2125
|
+
"description": "Used as backgrounds for filled critical buttons. Can also be used for illustrative background elements in critical states",
|
|
2126
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1826
2127
|
"isSource": true,
|
|
1827
2128
|
"original": {
|
|
1828
|
-
"value": "{colors.
|
|
2129
|
+
"value": "{colors.danger.20.value}",
|
|
2130
|
+
"description": "Used as backgrounds for filled critical buttons. Can also be used for illustrative background elements in critical states"
|
|
1829
2131
|
},
|
|
1830
|
-
"name": "
|
|
2132
|
+
"name": "PaletteDarkDangerBgStrong",
|
|
1831
2133
|
"attributes": {
|
|
1832
2134
|
"category": "palette",
|
|
1833
|
-
"type": "
|
|
1834
|
-
"item": "
|
|
1835
|
-
"subitem": "
|
|
1836
|
-
"state": "
|
|
2135
|
+
"type": "dark",
|
|
2136
|
+
"item": "danger",
|
|
2137
|
+
"subitem": "bg",
|
|
2138
|
+
"state": "strong"
|
|
1837
2139
|
},
|
|
1838
2140
|
"path": [
|
|
1839
2141
|
"palette",
|
|
1840
|
-
"
|
|
1841
|
-
"
|
|
1842
|
-
"
|
|
1843
|
-
"
|
|
2142
|
+
"dark",
|
|
2143
|
+
"danger",
|
|
2144
|
+
"bg",
|
|
2145
|
+
"strong"
|
|
1844
2146
|
]
|
|
1845
2147
|
},
|
|
1846
|
-
"
|
|
1847
|
-
"value": "
|
|
1848
|
-
"
|
|
2148
|
+
"weak": {
|
|
2149
|
+
"value": "68, 61, 72",
|
|
2150
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
2151
|
+
"description": "Used as backgrounds for critical components states such as banner drag & drop (invalid file type), semi-filled labels and “clear all” tags",
|
|
2152
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1849
2153
|
"isSource": true,
|
|
1850
2154
|
"original": {
|
|
1851
|
-
"value": "
|
|
2155
|
+
"value": "68, 61, 72",
|
|
2156
|
+
"comment": "{palette.dark.beta-comment}",
|
|
2157
|
+
"description": "Used as backgrounds for critical components states such as banner drag & drop (invalid file type), semi-filled labels and “clear all” tags"
|
|
1852
2158
|
},
|
|
1853
|
-
"name": "
|
|
2159
|
+
"name": "PaletteDarkDangerBgWeak",
|
|
1854
2160
|
"attributes": {
|
|
1855
2161
|
"category": "palette",
|
|
1856
|
-
"type": "
|
|
1857
|
-
"item": "
|
|
1858
|
-
"subitem": "
|
|
1859
|
-
"state": "
|
|
2162
|
+
"type": "dark",
|
|
2163
|
+
"item": "danger",
|
|
2164
|
+
"subitem": "bg",
|
|
2165
|
+
"state": "weak"
|
|
1860
2166
|
},
|
|
1861
2167
|
"path": [
|
|
1862
2168
|
"palette",
|
|
1863
|
-
"
|
|
1864
|
-
"
|
|
1865
|
-
"
|
|
1866
|
-
"
|
|
2169
|
+
"dark",
|
|
2170
|
+
"danger",
|
|
2171
|
+
"bg",
|
|
2172
|
+
"weak"
|
|
1867
2173
|
]
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
2174
|
+
}
|
|
2175
|
+
},
|
|
2176
|
+
"border": {
|
|
2177
|
+
"strong": {
|
|
2178
|
+
"value": "#ffb8c4",
|
|
2179
|
+
"description": "Use sparsely. Used for outlined critical buttons, drag & drop (invalid file type) and outlined critical labels",
|
|
2180
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1872
2181
|
"isSource": true,
|
|
1873
2182
|
"original": {
|
|
1874
|
-
"value": "{colors.
|
|
2183
|
+
"value": "{colors.danger.20.value}",
|
|
2184
|
+
"description": "Use sparsely. Used for outlined critical buttons, drag & drop (invalid file type) and outlined critical labels"
|
|
1875
2185
|
},
|
|
1876
|
-
"name": "
|
|
2186
|
+
"name": "PaletteDarkDangerBorderStrong",
|
|
1877
2187
|
"attributes": {
|
|
1878
2188
|
"category": "palette",
|
|
1879
|
-
"type": "
|
|
1880
|
-
"item": "
|
|
1881
|
-
"subitem": "
|
|
1882
|
-
"state": "
|
|
2189
|
+
"type": "dark",
|
|
2190
|
+
"item": "danger",
|
|
2191
|
+
"subitem": "border",
|
|
2192
|
+
"state": "strong"
|
|
1883
2193
|
},
|
|
1884
2194
|
"path": [
|
|
1885
2195
|
"palette",
|
|
1886
|
-
"
|
|
1887
|
-
"
|
|
1888
|
-
"
|
|
1889
|
-
"
|
|
2196
|
+
"dark",
|
|
2197
|
+
"danger",
|
|
2198
|
+
"border",
|
|
2199
|
+
"strong"
|
|
1890
2200
|
]
|
|
1891
|
-
}
|
|
1892
|
-
},
|
|
1893
|
-
"bg": {
|
|
2201
|
+
},
|
|
1894
2202
|
"weak": {
|
|
1895
|
-
"value": "
|
|
1896
|
-
"
|
|
2203
|
+
"value": "114, 91, 103",
|
|
2204
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
2205
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Critical-bg-weak to stand out more from the background",
|
|
2206
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1897
2207
|
"isSource": true,
|
|
1898
2208
|
"original": {
|
|
1899
|
-
"value": "
|
|
2209
|
+
"value": "114, 91, 103",
|
|
2210
|
+
"comment": "{palette.dark.beta-comment}",
|
|
2211
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Critical-bg-weak to stand out more from the background"
|
|
1900
2212
|
},
|
|
1901
|
-
"name": "
|
|
2213
|
+
"name": "PaletteDarkDangerBorderWeak",
|
|
1902
2214
|
"attributes": {
|
|
1903
2215
|
"category": "palette",
|
|
1904
|
-
"type": "
|
|
1905
|
-
"item": "
|
|
1906
|
-
"subitem": "
|
|
2216
|
+
"type": "dark",
|
|
2217
|
+
"item": "danger",
|
|
2218
|
+
"subitem": "border",
|
|
1907
2219
|
"state": "weak"
|
|
1908
2220
|
},
|
|
1909
2221
|
"path": [
|
|
1910
2222
|
"palette",
|
|
1911
|
-
"
|
|
1912
|
-
"
|
|
1913
|
-
"
|
|
2223
|
+
"dark",
|
|
2224
|
+
"danger",
|
|
2225
|
+
"border",
|
|
1914
2226
|
"weak"
|
|
1915
2227
|
]
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"hover": {
|
|
2231
|
+
"weak": {
|
|
2232
|
+
"alpha": "0.08",
|
|
2233
|
+
"value": "rgba(255, 102, 138,0.08)",
|
|
2234
|
+
"description": "Used for hover states for critical buttons where the background is either transparent or use Neutral-bg-weak",
|
|
2235
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1920
2236
|
"isSource": true,
|
|
1921
2237
|
"original": {
|
|
1922
|
-
"
|
|
2238
|
+
"alpha": "0.08",
|
|
2239
|
+
"value": "rgba({colors.danger.30.rgb},{palette.light.danger.hover.weak.alpha})",
|
|
2240
|
+
"description": "Used for hover states for critical buttons where the background is either transparent or use Neutral-bg-weak"
|
|
1923
2241
|
},
|
|
1924
|
-
"name": "
|
|
2242
|
+
"name": "PaletteDarkDangerHoverWeak",
|
|
1925
2243
|
"attributes": {
|
|
1926
2244
|
"category": "palette",
|
|
1927
|
-
"type": "
|
|
1928
|
-
"item": "
|
|
1929
|
-
"subitem": "
|
|
1930
|
-
"state": "
|
|
2245
|
+
"type": "dark",
|
|
2246
|
+
"item": "danger",
|
|
2247
|
+
"subitem": "hover",
|
|
2248
|
+
"state": "weak"
|
|
1931
2249
|
},
|
|
1932
2250
|
"path": [
|
|
1933
2251
|
"palette",
|
|
1934
|
-
"
|
|
1935
|
-
"
|
|
1936
|
-
"
|
|
1937
|
-
"
|
|
2252
|
+
"dark",
|
|
2253
|
+
"danger",
|
|
2254
|
+
"hover",
|
|
2255
|
+
"weak"
|
|
1938
2256
|
]
|
|
1939
2257
|
},
|
|
1940
2258
|
"strong": {
|
|
1941
|
-
"value": "#
|
|
1942
|
-
"
|
|
2259
|
+
"value": "#ff668a",
|
|
2260
|
+
"description": "Only used for hover states in critical filled buttons",
|
|
2261
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1943
2262
|
"isSource": true,
|
|
1944
2263
|
"original": {
|
|
1945
|
-
"value": "{colors.
|
|
2264
|
+
"value": "{colors.danger.30.value}",
|
|
2265
|
+
"description": "Only used for hover states in critical filled buttons"
|
|
1946
2266
|
},
|
|
1947
|
-
"name": "
|
|
2267
|
+
"name": "PaletteDarkDangerHoverStrong",
|
|
1948
2268
|
"attributes": {
|
|
1949
2269
|
"category": "palette",
|
|
1950
|
-
"type": "
|
|
1951
|
-
"item": "
|
|
1952
|
-
"subitem": "
|
|
2270
|
+
"type": "dark",
|
|
2271
|
+
"item": "danger",
|
|
2272
|
+
"subitem": "hover",
|
|
1953
2273
|
"state": "strong"
|
|
1954
2274
|
},
|
|
1955
2275
|
"path": [
|
|
1956
2276
|
"palette",
|
|
1957
|
-
"
|
|
1958
|
-
"
|
|
1959
|
-
"
|
|
2277
|
+
"dark",
|
|
2278
|
+
"danger",
|
|
2279
|
+
"hover",
|
|
1960
2280
|
"strong"
|
|
1961
2281
|
]
|
|
1962
|
-
},
|
|
1963
|
-
"strongest": {
|
|
1964
|
-
"value": "#535B66",
|
|
1965
|
-
"filePath": "src/tokens/palette.json",
|
|
1966
|
-
"isSource": true,
|
|
1967
|
-
"original": {
|
|
1968
|
-
"value": "{colors.neutral.80.value}"
|
|
1969
|
-
},
|
|
1970
|
-
"name": "PaletteLightNeutralBgStrongest",
|
|
1971
|
-
"attributes": {
|
|
1972
|
-
"category": "palette",
|
|
1973
|
-
"type": "light",
|
|
1974
|
-
"item": "neutral",
|
|
1975
|
-
"subitem": "bg",
|
|
1976
|
-
"state": "strongest"
|
|
1977
|
-
},
|
|
1978
|
-
"path": [
|
|
1979
|
-
"palette",
|
|
1980
|
-
"light",
|
|
1981
|
-
"neutral",
|
|
1982
|
-
"bg",
|
|
1983
|
-
"strongest"
|
|
1984
|
-
]
|
|
1985
2282
|
}
|
|
1986
2283
|
},
|
|
1987
|
-
"
|
|
2284
|
+
"pressed": {
|
|
1988
2285
|
"weak": {
|
|
1989
|
-
"
|
|
1990
|
-
"
|
|
2286
|
+
"alpha": "0.12",
|
|
2287
|
+
"value": "rgba(255, 102, 138,0.12)",
|
|
2288
|
+
"description": "Used for pressed states for critical buttons where the background is either transparent or use Neutral-bg-weak",
|
|
2289
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
1991
2290
|
"isSource": true,
|
|
1992
2291
|
"original": {
|
|
1993
|
-
"
|
|
2292
|
+
"alpha": "0.12",
|
|
2293
|
+
"value": "rgba({colors.danger.30.rgb},{palette.light.danger.pressed.weak.alpha})",
|
|
2294
|
+
"description": "Used for pressed states for critical buttons where the background is either transparent or use Neutral-bg-weak"
|
|
1994
2295
|
},
|
|
1995
|
-
"name": "
|
|
2296
|
+
"name": "PaletteDarkDangerPressedWeak",
|
|
1996
2297
|
"attributes": {
|
|
1997
2298
|
"category": "palette",
|
|
1998
|
-
"type": "
|
|
1999
|
-
"item": "
|
|
2000
|
-
"subitem": "
|
|
2299
|
+
"type": "dark",
|
|
2300
|
+
"item": "danger",
|
|
2301
|
+
"subitem": "pressed",
|
|
2001
2302
|
"state": "weak"
|
|
2002
2303
|
},
|
|
2003
2304
|
"path": [
|
|
2004
2305
|
"palette",
|
|
2005
|
-
"
|
|
2006
|
-
"
|
|
2007
|
-
"
|
|
2306
|
+
"dark",
|
|
2307
|
+
"danger",
|
|
2308
|
+
"pressed",
|
|
2008
2309
|
"weak"
|
|
2009
2310
|
]
|
|
2010
2311
|
},
|
|
2011
2312
|
"strong": {
|
|
2012
|
-
"value": "#
|
|
2013
|
-
"
|
|
2313
|
+
"value": "#ff668a",
|
|
2314
|
+
"description": "Only used for pressed states in critical filled buttons",
|
|
2315
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2014
2316
|
"isSource": true,
|
|
2015
2317
|
"original": {
|
|
2016
|
-
"value": "{colors.
|
|
2318
|
+
"value": "{colors.danger.30.value}",
|
|
2319
|
+
"description": "Only used for pressed states in critical filled buttons"
|
|
2017
2320
|
},
|
|
2018
|
-
"name": "
|
|
2321
|
+
"name": "PaletteDarkDangerPressedStrong",
|
|
2019
2322
|
"attributes": {
|
|
2020
2323
|
"category": "palette",
|
|
2021
|
-
"type": "
|
|
2022
|
-
"item": "
|
|
2023
|
-
"subitem": "
|
|
2324
|
+
"type": "dark",
|
|
2325
|
+
"item": "danger",
|
|
2326
|
+
"subitem": "pressed",
|
|
2024
2327
|
"state": "strong"
|
|
2025
2328
|
},
|
|
2026
2329
|
"path": [
|
|
2027
2330
|
"palette",
|
|
2028
|
-
"
|
|
2029
|
-
"
|
|
2030
|
-
"
|
|
2331
|
+
"dark",
|
|
2332
|
+
"danger",
|
|
2333
|
+
"pressed",
|
|
2031
2334
|
"strong"
|
|
2032
2335
|
]
|
|
2033
2336
|
}
|
|
2034
|
-
},
|
|
2035
|
-
"hover": {
|
|
2036
|
-
"alpha": "0.1",
|
|
2037
|
-
"value": "rgba(113,119,128,0.1)",
|
|
2038
|
-
"filePath": "src/tokens/palette.json",
|
|
2039
|
-
"isSource": true,
|
|
2040
|
-
"original": {
|
|
2041
|
-
"alpha": "0.1",
|
|
2042
|
-
"value": "rgba({colors.neutral.70.rgb},{palette.light.neutral.hover.alpha})"
|
|
2043
|
-
},
|
|
2044
|
-
"name": "PaletteLightNeutralHover",
|
|
2045
|
-
"attributes": {
|
|
2046
|
-
"category": "palette",
|
|
2047
|
-
"type": "light",
|
|
2048
|
-
"item": "neutral",
|
|
2049
|
-
"subitem": "hover"
|
|
2050
|
-
},
|
|
2051
|
-
"path": [
|
|
2052
|
-
"palette",
|
|
2053
|
-
"light",
|
|
2054
|
-
"neutral",
|
|
2055
|
-
"hover"
|
|
2056
|
-
]
|
|
2057
|
-
},
|
|
2058
|
-
"pressed": {
|
|
2059
|
-
"alpha": "0.2",
|
|
2060
|
-
"value": "rgba(113,119,128,0.2)",
|
|
2061
|
-
"filePath": "src/tokens/palette.json",
|
|
2062
|
-
"isSource": true,
|
|
2063
|
-
"original": {
|
|
2064
|
-
"alpha": "0.2",
|
|
2065
|
-
"value": "rgba({colors.neutral.70.rgb},{palette.light.neutral.pressed.alpha})"
|
|
2066
|
-
},
|
|
2067
|
-
"name": "PaletteLightNeutralPressed",
|
|
2068
|
-
"attributes": {
|
|
2069
|
-
"category": "palette",
|
|
2070
|
-
"type": "light",
|
|
2071
|
-
"item": "neutral",
|
|
2072
|
-
"subitem": "pressed"
|
|
2073
|
-
},
|
|
2074
|
-
"path": [
|
|
2075
|
-
"palette",
|
|
2076
|
-
"light",
|
|
2077
|
-
"neutral",
|
|
2078
|
-
"pressed"
|
|
2079
|
-
]
|
|
2080
2337
|
}
|
|
2081
2338
|
},
|
|
2082
|
-
"
|
|
2339
|
+
"warning": {
|
|
2083
2340
|
"text": {
|
|
2084
|
-
"value": "#
|
|
2085
|
-
"
|
|
2341
|
+
"value": "#FFEA8C",
|
|
2342
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2343
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2086
2344
|
"isSource": true,
|
|
2087
2345
|
"original": {
|
|
2088
|
-
"value": "{colors.
|
|
2346
|
+
"value": "{colors.warning.30.value}",
|
|
2347
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
2089
2348
|
},
|
|
2090
|
-
"name": "
|
|
2349
|
+
"name": "PaletteDarkWarningText",
|
|
2091
2350
|
"attributes": {
|
|
2092
2351
|
"category": "palette",
|
|
2093
|
-
"type": "
|
|
2094
|
-
"item": "
|
|
2352
|
+
"type": "dark",
|
|
2353
|
+
"item": "warning",
|
|
2095
2354
|
"subitem": "text"
|
|
2096
2355
|
},
|
|
2097
2356
|
"path": [
|
|
2098
2357
|
"palette",
|
|
2099
|
-
"
|
|
2100
|
-
"
|
|
2358
|
+
"dark",
|
|
2359
|
+
"warning",
|
|
2101
2360
|
"text"
|
|
2102
2361
|
]
|
|
2103
2362
|
},
|
|
2104
2363
|
"icon": {
|
|
2105
|
-
"value": "#
|
|
2106
|
-
"
|
|
2364
|
+
"value": "#FFEA8C",
|
|
2365
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2366
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2107
2367
|
"isSource": true,
|
|
2108
2368
|
"original": {
|
|
2109
|
-
"value": "{colors.
|
|
2369
|
+
"value": "{colors.warning.30.value}",
|
|
2370
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
2110
2371
|
},
|
|
2111
|
-
"name": "
|
|
2372
|
+
"name": "PaletteDarkWarningIcon",
|
|
2112
2373
|
"attributes": {
|
|
2113
2374
|
"category": "palette",
|
|
2114
|
-
"type": "
|
|
2115
|
-
"item": "
|
|
2375
|
+
"type": "dark",
|
|
2376
|
+
"item": "warning",
|
|
2116
2377
|
"subitem": "icon"
|
|
2117
2378
|
},
|
|
2118
2379
|
"path": [
|
|
2119
2380
|
"palette",
|
|
2120
|
-
"
|
|
2121
|
-
"
|
|
2381
|
+
"dark",
|
|
2382
|
+
"warning",
|
|
2122
2383
|
"icon"
|
|
2123
2384
|
]
|
|
2124
2385
|
},
|
|
2125
2386
|
"bg": {
|
|
2126
2387
|
"strong": {
|
|
2127
|
-
"value": "#
|
|
2128
|
-
"
|
|
2388
|
+
"value": "#FFEA8C",
|
|
2389
|
+
"description": "Use sparsely. Only used for filled labels",
|
|
2390
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2129
2391
|
"isSource": true,
|
|
2130
2392
|
"original": {
|
|
2131
|
-
"value": "{colors.
|
|
2393
|
+
"value": "{colors.warning.30.value}",
|
|
2394
|
+
"description": "Use sparsely. Only used for filled labels"
|
|
2132
2395
|
},
|
|
2133
|
-
"name": "
|
|
2396
|
+
"name": "PaletteDarkWarningBgStrong",
|
|
2134
2397
|
"attributes": {
|
|
2135
2398
|
"category": "palette",
|
|
2136
|
-
"type": "
|
|
2137
|
-
"item": "
|
|
2399
|
+
"type": "dark",
|
|
2400
|
+
"item": "warning",
|
|
2138
2401
|
"subitem": "bg",
|
|
2139
2402
|
"state": "strong"
|
|
2140
2403
|
},
|
|
2141
2404
|
"path": [
|
|
2142
2405
|
"palette",
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
2406
|
+
"dark",
|
|
2407
|
+
"warning",
|
|
2145
2408
|
"bg",
|
|
2146
2409
|
"strong"
|
|
2147
2410
|
]
|
|
2148
2411
|
},
|
|
2149
2412
|
"weak": {
|
|
2150
|
-
"value": "
|
|
2151
|
-
"
|
|
2413
|
+
"value": "68, 71, 60",
|
|
2414
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
2415
|
+
"description": "Used as backgrounds for warning components states such as banner and semi-filled labels",
|
|
2416
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2152
2417
|
"isSource": true,
|
|
2153
2418
|
"original": {
|
|
2154
|
-
"value": "
|
|
2419
|
+
"value": "68, 71, 60",
|
|
2420
|
+
"comment": "{palette.dark.beta-comment}",
|
|
2421
|
+
"description": "Used as backgrounds for warning components states such as banner and semi-filled labels"
|
|
2155
2422
|
},
|
|
2156
|
-
"name": "
|
|
2423
|
+
"name": "PaletteDarkWarningBgWeak",
|
|
2157
2424
|
"attributes": {
|
|
2158
2425
|
"category": "palette",
|
|
2159
|
-
"type": "
|
|
2160
|
-
"item": "
|
|
2426
|
+
"type": "dark",
|
|
2427
|
+
"item": "warning",
|
|
2161
2428
|
"subitem": "bg",
|
|
2162
2429
|
"state": "weak"
|
|
2163
2430
|
},
|
|
2164
2431
|
"path": [
|
|
2165
2432
|
"palette",
|
|
2166
|
-
"
|
|
2167
|
-
"
|
|
2433
|
+
"dark",
|
|
2434
|
+
"warning",
|
|
2168
2435
|
"bg",
|
|
2169
2436
|
"weak"
|
|
2170
2437
|
]
|
|
@@ -2172,260 +2439,153 @@ module.exports = {
|
|
|
2172
2439
|
},
|
|
2173
2440
|
"border": {
|
|
2174
2441
|
"strong": {
|
|
2175
|
-
"value": "#
|
|
2176
|
-
"
|
|
2442
|
+
"value": "#FFEA8C",
|
|
2443
|
+
"description": "Use sparsely. Only used for outlined labels",
|
|
2444
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2177
2445
|
"isSource": true,
|
|
2178
2446
|
"original": {
|
|
2179
|
-
"value": "{colors.
|
|
2447
|
+
"value": "{colors.warning.30.value}",
|
|
2448
|
+
"description": "Use sparsely. Only used for outlined labels"
|
|
2180
2449
|
},
|
|
2181
|
-
"name": "
|
|
2450
|
+
"name": "PaletteDarkWarningBorderStrong",
|
|
2182
2451
|
"attributes": {
|
|
2183
2452
|
"category": "palette",
|
|
2184
|
-
"type": "
|
|
2185
|
-
"item": "
|
|
2453
|
+
"type": "dark",
|
|
2454
|
+
"item": "warning",
|
|
2186
2455
|
"subitem": "border",
|
|
2187
2456
|
"state": "strong"
|
|
2188
2457
|
},
|
|
2189
2458
|
"path": [
|
|
2190
2459
|
"palette",
|
|
2191
|
-
"
|
|
2192
|
-
"
|
|
2460
|
+
"dark",
|
|
2461
|
+
"warning",
|
|
2193
2462
|
"border",
|
|
2194
2463
|
"strong"
|
|
2195
2464
|
]
|
|
2196
2465
|
},
|
|
2197
2466
|
"weak": {
|
|
2198
|
-
"value": "
|
|
2199
|
-
"
|
|
2467
|
+
"value": "114, 111, 80",
|
|
2468
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
2469
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Warning-bg-weak to stand out more from the background",
|
|
2470
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2200
2471
|
"isSource": true,
|
|
2201
2472
|
"original": {
|
|
2202
|
-
"value": "
|
|
2473
|
+
"value": "114, 111, 80",
|
|
2474
|
+
"comment": "{palette.dark.beta-comment}",
|
|
2475
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Warning-bg-weak to stand out more from the background"
|
|
2203
2476
|
},
|
|
2204
|
-
"name": "
|
|
2477
|
+
"name": "PaletteDarkWarningBorderWeak",
|
|
2205
2478
|
"attributes": {
|
|
2206
2479
|
"category": "palette",
|
|
2207
|
-
"type": "
|
|
2208
|
-
"item": "
|
|
2480
|
+
"type": "dark",
|
|
2481
|
+
"item": "warning",
|
|
2209
2482
|
"subitem": "border",
|
|
2210
2483
|
"state": "weak"
|
|
2211
2484
|
},
|
|
2212
2485
|
"path": [
|
|
2213
2486
|
"palette",
|
|
2214
|
-
"
|
|
2215
|
-
"
|
|
2487
|
+
"dark",
|
|
2488
|
+
"warning",
|
|
2216
2489
|
"border",
|
|
2217
2490
|
"weak"
|
|
2218
2491
|
]
|
|
2219
2492
|
}
|
|
2220
|
-
},
|
|
2221
|
-
"focus": {
|
|
2222
|
-
"value": "#018bff",
|
|
2223
|
-
"filePath": "src/tokens/palette.json",
|
|
2224
|
-
"isSource": true,
|
|
2225
|
-
"original": {
|
|
2226
|
-
"value": "{colors.primary.40.value}"
|
|
2227
|
-
},
|
|
2228
|
-
"name": "PaletteLightPrimaryFocus",
|
|
2229
|
-
"attributes": {
|
|
2230
|
-
"category": "palette",
|
|
2231
|
-
"type": "light",
|
|
2232
|
-
"item": "primary",
|
|
2233
|
-
"subitem": "focus"
|
|
2234
|
-
},
|
|
2235
|
-
"path": [
|
|
2236
|
-
"palette",
|
|
2237
|
-
"light",
|
|
2238
|
-
"primary",
|
|
2239
|
-
"focus"
|
|
2240
|
-
]
|
|
2241
|
-
},
|
|
2242
|
-
"hover": {
|
|
2243
|
-
"weak": {
|
|
2244
|
-
"alpha": "0.08",
|
|
2245
|
-
"value": "rgba(1,139,255,0.08)",
|
|
2246
|
-
"filePath": "src/tokens/palette.json",
|
|
2247
|
-
"isSource": true,
|
|
2248
|
-
"original": {
|
|
2249
|
-
"alpha": "0.08",
|
|
2250
|
-
"value": "rgba({colors.primary.40.rgb},{palette.light.primary.hover.weak.alpha})"
|
|
2251
|
-
},
|
|
2252
|
-
"name": "PaletteLightPrimaryHoverWeak",
|
|
2253
|
-
"attributes": {
|
|
2254
|
-
"category": "palette",
|
|
2255
|
-
"type": "light",
|
|
2256
|
-
"item": "primary",
|
|
2257
|
-
"subitem": "hover",
|
|
2258
|
-
"state": "weak"
|
|
2259
|
-
},
|
|
2260
|
-
"path": [
|
|
2261
|
-
"palette",
|
|
2262
|
-
"light",
|
|
2263
|
-
"primary",
|
|
2264
|
-
"hover",
|
|
2265
|
-
"weak"
|
|
2266
|
-
]
|
|
2267
|
-
},
|
|
2268
|
-
"strong": {
|
|
2269
|
-
"value": "#0056b3",
|
|
2270
|
-
"filePath": "src/tokens/palette.json",
|
|
2271
|
-
"isSource": true,
|
|
2272
|
-
"original": {
|
|
2273
|
-
"value": "{colors.primary.60.value}"
|
|
2274
|
-
},
|
|
2275
|
-
"name": "PaletteLightPrimaryHoverStrong",
|
|
2276
|
-
"attributes": {
|
|
2277
|
-
"category": "palette",
|
|
2278
|
-
"type": "light",
|
|
2279
|
-
"item": "primary",
|
|
2280
|
-
"subitem": "hover",
|
|
2281
|
-
"state": "strong"
|
|
2282
|
-
},
|
|
2283
|
-
"path": [
|
|
2284
|
-
"palette",
|
|
2285
|
-
"light",
|
|
2286
|
-
"primary",
|
|
2287
|
-
"hover",
|
|
2288
|
-
"strong"
|
|
2289
|
-
]
|
|
2290
|
-
}
|
|
2291
|
-
},
|
|
2292
|
-
"pressed": {
|
|
2293
|
-
"weak": {
|
|
2294
|
-
"alpha": "0.12",
|
|
2295
|
-
"value": "rgba(1,139,255,0.12)",
|
|
2296
|
-
"filePath": "src/tokens/palette.json",
|
|
2297
|
-
"isSource": true,
|
|
2298
|
-
"original": {
|
|
2299
|
-
"alpha": "0.12",
|
|
2300
|
-
"value": "rgba({colors.primary.40.rgb},{palette.light.primary.pressed.weak.alpha})"
|
|
2301
|
-
},
|
|
2302
|
-
"name": "PaletteLightPrimaryPressedWeak",
|
|
2303
|
-
"attributes": {
|
|
2304
|
-
"category": "palette",
|
|
2305
|
-
"type": "light",
|
|
2306
|
-
"item": "primary",
|
|
2307
|
-
"subitem": "pressed",
|
|
2308
|
-
"state": "weak"
|
|
2309
|
-
},
|
|
2310
|
-
"path": [
|
|
2311
|
-
"palette",
|
|
2312
|
-
"light",
|
|
2313
|
-
"primary",
|
|
2314
|
-
"pressed",
|
|
2315
|
-
"weak"
|
|
2316
|
-
]
|
|
2317
|
-
},
|
|
2318
|
-
"strong": {
|
|
2319
|
-
"value": "#004092",
|
|
2320
|
-
"filePath": "src/tokens/palette.json",
|
|
2321
|
-
"isSource": true,
|
|
2322
|
-
"original": {
|
|
2323
|
-
"value": "{colors.primary.70.value}"
|
|
2324
|
-
},
|
|
2325
|
-
"name": "PaletteLightPrimaryPressedStrong",
|
|
2326
|
-
"attributes": {
|
|
2327
|
-
"category": "palette",
|
|
2328
|
-
"type": "light",
|
|
2329
|
-
"item": "primary",
|
|
2330
|
-
"subitem": "pressed",
|
|
2331
|
-
"state": "strong"
|
|
2332
|
-
},
|
|
2333
|
-
"path": [
|
|
2334
|
-
"palette",
|
|
2335
|
-
"light",
|
|
2336
|
-
"primary",
|
|
2337
|
-
"pressed",
|
|
2338
|
-
"strong"
|
|
2339
|
-
]
|
|
2340
|
-
}
|
|
2341
2493
|
}
|
|
2342
2494
|
},
|
|
2343
|
-
"
|
|
2495
|
+
"success": {
|
|
2344
2496
|
"text": {
|
|
2345
|
-
"value": "#
|
|
2346
|
-
"
|
|
2497
|
+
"value": "#98EDCB",
|
|
2498
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2499
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2347
2500
|
"isSource": true,
|
|
2348
2501
|
"original": {
|
|
2349
|
-
"value": "{colors.
|
|
2502
|
+
"value": "{colors.success.20.value}",
|
|
2503
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
2350
2504
|
},
|
|
2351
|
-
"name": "
|
|
2505
|
+
"name": "PaletteDarkSuccessText",
|
|
2352
2506
|
"attributes": {
|
|
2353
2507
|
"category": "palette",
|
|
2354
|
-
"type": "
|
|
2355
|
-
"item": "
|
|
2508
|
+
"type": "dark",
|
|
2509
|
+
"item": "success",
|
|
2356
2510
|
"subitem": "text"
|
|
2357
2511
|
},
|
|
2358
2512
|
"path": [
|
|
2359
2513
|
"palette",
|
|
2360
|
-
"
|
|
2361
|
-
"
|
|
2514
|
+
"dark",
|
|
2515
|
+
"success",
|
|
2362
2516
|
"text"
|
|
2363
2517
|
]
|
|
2364
2518
|
},
|
|
2365
2519
|
"icon": {
|
|
2366
|
-
"value": "#
|
|
2367
|
-
"
|
|
2520
|
+
"value": "#98EDCB",
|
|
2521
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
2522
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2368
2523
|
"isSource": true,
|
|
2369
2524
|
"original": {
|
|
2370
|
-
"value": "{colors.
|
|
2525
|
+
"value": "{colors.success.20.value}",
|
|
2526
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
2371
2527
|
},
|
|
2372
|
-
"name": "
|
|
2528
|
+
"name": "PaletteDarkSuccessIcon",
|
|
2373
2529
|
"attributes": {
|
|
2374
2530
|
"category": "palette",
|
|
2375
|
-
"type": "
|
|
2376
|
-
"item": "
|
|
2531
|
+
"type": "dark",
|
|
2532
|
+
"item": "success",
|
|
2377
2533
|
"subitem": "icon"
|
|
2378
2534
|
},
|
|
2379
2535
|
"path": [
|
|
2380
2536
|
"palette",
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2537
|
+
"dark",
|
|
2538
|
+
"success",
|
|
2383
2539
|
"icon"
|
|
2384
2540
|
]
|
|
2385
2541
|
},
|
|
2386
2542
|
"bg": {
|
|
2387
2543
|
"strong": {
|
|
2388
|
-
"value": "#
|
|
2389
|
-
"
|
|
2544
|
+
"value": "#98EDCB",
|
|
2545
|
+
"description": "Use sparsely. Only used for filled labels",
|
|
2546
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2390
2547
|
"isSource": true,
|
|
2391
2548
|
"original": {
|
|
2392
|
-
"value": "{colors.
|
|
2549
|
+
"value": "{colors.success.20.value}",
|
|
2550
|
+
"description": "Use sparsely. Only used for filled labels"
|
|
2393
2551
|
},
|
|
2394
|
-
"name": "
|
|
2552
|
+
"name": "PaletteDarkSuccessBgStrong",
|
|
2395
2553
|
"attributes": {
|
|
2396
2554
|
"category": "palette",
|
|
2397
|
-
"type": "
|
|
2398
|
-
"item": "
|
|
2555
|
+
"type": "dark",
|
|
2556
|
+
"item": "success",
|
|
2399
2557
|
"subitem": "bg",
|
|
2400
2558
|
"state": "strong"
|
|
2401
2559
|
},
|
|
2402
2560
|
"path": [
|
|
2403
2561
|
"palette",
|
|
2404
|
-
"
|
|
2405
|
-
"
|
|
2562
|
+
"dark",
|
|
2563
|
+
"success",
|
|
2406
2564
|
"bg",
|
|
2407
2565
|
"strong"
|
|
2408
2566
|
]
|
|
2409
2567
|
},
|
|
2410
2568
|
"weak": {
|
|
2411
|
-
"value": "
|
|
2412
|
-
"
|
|
2569
|
+
"value": "47, 71, 73",
|
|
2570
|
+
"description": "Used as backgrounds for success components states such as banner and semi-filled labels",
|
|
2571
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2413
2572
|
"isSource": true,
|
|
2414
2573
|
"original": {
|
|
2415
|
-
"value": "
|
|
2574
|
+
"value": "47, 71, 73",
|
|
2575
|
+
"description": "Used as backgrounds for success components states such as banner and semi-filled labels"
|
|
2416
2576
|
},
|
|
2417
|
-
"name": "
|
|
2577
|
+
"name": "PaletteDarkSuccessBgWeak",
|
|
2418
2578
|
"attributes": {
|
|
2419
2579
|
"category": "palette",
|
|
2420
|
-
"type": "
|
|
2421
|
-
"item": "
|
|
2580
|
+
"type": "dark",
|
|
2581
|
+
"item": "success",
|
|
2422
2582
|
"subitem": "bg",
|
|
2423
2583
|
"state": "weak"
|
|
2424
2584
|
},
|
|
2425
2585
|
"path": [
|
|
2426
2586
|
"palette",
|
|
2427
|
-
"
|
|
2428
|
-
"
|
|
2587
|
+
"dark",
|
|
2588
|
+
"success",
|
|
2429
2589
|
"bg",
|
|
2430
2590
|
"weak"
|
|
2431
2591
|
]
|
|
@@ -2433,379 +2593,488 @@ module.exports = {
|
|
|
2433
2593
|
},
|
|
2434
2594
|
"border": {
|
|
2435
2595
|
"strong": {
|
|
2436
|
-
"value": "#
|
|
2437
|
-
"
|
|
2596
|
+
"value": "#98EDCB",
|
|
2597
|
+
"description": "Use sparsely. Only used for outlined labels",
|
|
2598
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2438
2599
|
"isSource": true,
|
|
2439
2600
|
"original": {
|
|
2440
|
-
"value": "{colors.
|
|
2601
|
+
"value": "{colors.success.20.value}",
|
|
2602
|
+
"description": "Use sparsely. Only used for outlined labels"
|
|
2441
2603
|
},
|
|
2442
|
-
"name": "
|
|
2604
|
+
"name": "PaletteDarkSuccessBorderStrong",
|
|
2443
2605
|
"attributes": {
|
|
2444
2606
|
"category": "palette",
|
|
2445
|
-
"type": "
|
|
2446
|
-
"item": "
|
|
2607
|
+
"type": "dark",
|
|
2608
|
+
"item": "success",
|
|
2447
2609
|
"subitem": "border",
|
|
2448
2610
|
"state": "strong"
|
|
2449
2611
|
},
|
|
2450
2612
|
"path": [
|
|
2451
2613
|
"palette",
|
|
2452
|
-
"
|
|
2453
|
-
"
|
|
2614
|
+
"dark",
|
|
2615
|
+
"success",
|
|
2454
2616
|
"border",
|
|
2455
2617
|
"strong"
|
|
2456
2618
|
]
|
|
2457
2619
|
},
|
|
2458
2620
|
"weak": {
|
|
2459
|
-
"value": "
|
|
2460
|
-
"
|
|
2621
|
+
"value": "73, 113, 106",
|
|
2622
|
+
"comment": "This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2",
|
|
2623
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Success-bg-weak to stand out more from the background",
|
|
2624
|
+
"filePath": "src/tokens/darkPalette.json",
|
|
2461
2625
|
"isSource": true,
|
|
2462
2626
|
"original": {
|
|
2463
|
-
"value": "
|
|
2627
|
+
"value": "73, 113, 106",
|
|
2628
|
+
"comment": "{palette.dark.beta-comment}",
|
|
2629
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Success-bg-weak to stand out more from the background"
|
|
2464
2630
|
},
|
|
2465
|
-
"name": "
|
|
2631
|
+
"name": "PaletteDarkSuccessBorderWeak",
|
|
2466
2632
|
"attributes": {
|
|
2467
2633
|
"category": "palette",
|
|
2468
|
-
"type": "
|
|
2469
|
-
"item": "
|
|
2634
|
+
"type": "dark",
|
|
2635
|
+
"item": "success",
|
|
2470
2636
|
"subitem": "border",
|
|
2471
2637
|
"state": "weak"
|
|
2472
2638
|
},
|
|
2473
2639
|
"path": [
|
|
2474
2640
|
"palette",
|
|
2475
|
-
"
|
|
2476
|
-
"
|
|
2641
|
+
"dark",
|
|
2642
|
+
"success",
|
|
2477
2643
|
"border",
|
|
2478
2644
|
"weak"
|
|
2479
2645
|
]
|
|
2480
2646
|
}
|
|
2481
|
-
}
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
},
|
|
2650
|
+
"light": {
|
|
2651
|
+
"neutral": {
|
|
2652
|
+
"text": {
|
|
2653
|
+
"weakest": {
|
|
2654
|
+
"value": "#B2B7BD",
|
|
2655
|
+
"description": "Should be used mainly for disabled text",
|
|
2656
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2487
2657
|
"isSource": true,
|
|
2488
2658
|
"original": {
|
|
2489
|
-
"
|
|
2490
|
-
"
|
|
2659
|
+
"value": "{colors.neutral.60.value}",
|
|
2660
|
+
"description": "Should be used mainly for disabled text"
|
|
2491
2661
|
},
|
|
2492
|
-
"name": "
|
|
2662
|
+
"name": "PaletteLightNeutralTextWeakest",
|
|
2493
2663
|
"attributes": {
|
|
2494
2664
|
"category": "palette",
|
|
2495
2665
|
"type": "light",
|
|
2496
|
-
"item": "
|
|
2497
|
-
"subitem": "
|
|
2498
|
-
"state": "
|
|
2666
|
+
"item": "neutral",
|
|
2667
|
+
"subitem": "text",
|
|
2668
|
+
"state": "weakest"
|
|
2499
2669
|
},
|
|
2500
2670
|
"path": [
|
|
2501
2671
|
"palette",
|
|
2502
2672
|
"light",
|
|
2503
|
-
"
|
|
2504
|
-
"
|
|
2505
|
-
"
|
|
2673
|
+
"neutral",
|
|
2674
|
+
"text",
|
|
2675
|
+
"weakest"
|
|
2506
2676
|
]
|
|
2507
2677
|
},
|
|
2508
|
-
"
|
|
2509
|
-
"value": "#
|
|
2510
|
-
"
|
|
2678
|
+
"weaker": {
|
|
2679
|
+
"value": "#717780",
|
|
2680
|
+
"description": "Should be used sparsely and mainly for headers and subtitles to differentiate from input text",
|
|
2681
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2511
2682
|
"isSource": true,
|
|
2512
2683
|
"original": {
|
|
2513
|
-
"value": "{colors.
|
|
2684
|
+
"value": "{colors.neutral.70.value}",
|
|
2685
|
+
"description": "Should be used sparsely and mainly for headers and subtitles to differentiate from input text"
|
|
2514
2686
|
},
|
|
2515
|
-
"name": "
|
|
2687
|
+
"name": "PaletteLightNeutralTextWeaker",
|
|
2516
2688
|
"attributes": {
|
|
2517
2689
|
"category": "palette",
|
|
2518
2690
|
"type": "light",
|
|
2519
|
-
"item": "
|
|
2520
|
-
"subitem": "
|
|
2521
|
-
"state": "
|
|
2691
|
+
"item": "neutral",
|
|
2692
|
+
"subitem": "text",
|
|
2693
|
+
"state": "weaker"
|
|
2522
2694
|
},
|
|
2523
2695
|
"path": [
|
|
2524
2696
|
"palette",
|
|
2525
2697
|
"light",
|
|
2526
|
-
"
|
|
2527
|
-
"
|
|
2528
|
-
"
|
|
2698
|
+
"neutral",
|
|
2699
|
+
"text",
|
|
2700
|
+
"weaker"
|
|
2529
2701
|
]
|
|
2530
|
-
}
|
|
2531
|
-
},
|
|
2532
|
-
"pressed": {
|
|
2702
|
+
},
|
|
2533
2703
|
"weak": {
|
|
2534
|
-
"
|
|
2535
|
-
"
|
|
2536
|
-
"filePath": "src/tokens/
|
|
2704
|
+
"value": "#535B66",
|
|
2705
|
+
"description": "Used for labels, icon color and descriptions",
|
|
2706
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2537
2707
|
"isSource": true,
|
|
2538
2708
|
"original": {
|
|
2539
|
-
"
|
|
2540
|
-
"
|
|
2709
|
+
"value": "{colors.neutral.80.value}",
|
|
2710
|
+
"description": "Used for labels, icon color and descriptions"
|
|
2541
2711
|
},
|
|
2542
|
-
"name": "
|
|
2712
|
+
"name": "PaletteLightNeutralTextWeak",
|
|
2543
2713
|
"attributes": {
|
|
2544
2714
|
"category": "palette",
|
|
2545
2715
|
"type": "light",
|
|
2546
|
-
"item": "
|
|
2547
|
-
"subitem": "
|
|
2716
|
+
"item": "neutral",
|
|
2717
|
+
"subitem": "text",
|
|
2548
2718
|
"state": "weak"
|
|
2549
2719
|
},
|
|
2550
2720
|
"path": [
|
|
2551
2721
|
"palette",
|
|
2552
2722
|
"light",
|
|
2553
|
-
"
|
|
2554
|
-
"
|
|
2723
|
+
"neutral",
|
|
2724
|
+
"text",
|
|
2555
2725
|
"weak"
|
|
2556
2726
|
]
|
|
2557
2727
|
},
|
|
2558
|
-
"
|
|
2559
|
-
"value": "#
|
|
2560
|
-
"
|
|
2728
|
+
"default": {
|
|
2729
|
+
"value": "#151E29",
|
|
2730
|
+
"description": "Used for all default text",
|
|
2731
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2561
2732
|
"isSource": true,
|
|
2562
2733
|
"original": {
|
|
2563
|
-
"value": "{colors.
|
|
2734
|
+
"value": "{colors.neutral.90.value}",
|
|
2735
|
+
"description": "Used for all default text"
|
|
2564
2736
|
},
|
|
2565
|
-
"name": "
|
|
2737
|
+
"name": "PaletteLightNeutralTextDefault",
|
|
2566
2738
|
"attributes": {
|
|
2567
2739
|
"category": "palette",
|
|
2568
2740
|
"type": "light",
|
|
2569
|
-
"item": "
|
|
2570
|
-
"subitem": "
|
|
2571
|
-
"state": "
|
|
2741
|
+
"item": "neutral",
|
|
2742
|
+
"subitem": "text",
|
|
2743
|
+
"state": "default"
|
|
2572
2744
|
},
|
|
2573
2745
|
"path": [
|
|
2574
2746
|
"palette",
|
|
2575
2747
|
"light",
|
|
2576
|
-
"
|
|
2577
|
-
"
|
|
2578
|
-
"
|
|
2748
|
+
"neutral",
|
|
2749
|
+
"text",
|
|
2750
|
+
"default"
|
|
2579
2751
|
]
|
|
2580
|
-
}
|
|
2581
|
-
}
|
|
2582
|
-
},
|
|
2583
|
-
"warning": {
|
|
2584
|
-
"text": {
|
|
2585
|
-
"value": "#966c2e",
|
|
2586
|
-
"filePath": "src/tokens/palette.json",
|
|
2587
|
-
"isSource": true,
|
|
2588
|
-
"original": {
|
|
2589
|
-
"value": "{colors.warning.60.value}"
|
|
2590
|
-
},
|
|
2591
|
-
"name": "PaletteLightWarningText",
|
|
2592
|
-
"attributes": {
|
|
2593
|
-
"category": "palette",
|
|
2594
|
-
"type": "light",
|
|
2595
|
-
"item": "warning",
|
|
2596
|
-
"subitem": "text"
|
|
2597
2752
|
},
|
|
2598
|
-
"
|
|
2599
|
-
"
|
|
2600
|
-
"
|
|
2601
|
-
"
|
|
2602
|
-
"
|
|
2603
|
-
|
|
2753
|
+
"inverse": {
|
|
2754
|
+
"value": "#FFFFFF",
|
|
2755
|
+
"description": "Default text on Neutral-bg-strongest or other dark backgrounds",
|
|
2756
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2757
|
+
"isSource": true,
|
|
2758
|
+
"original": {
|
|
2759
|
+
"value": "{colors.neutral.10.value}",
|
|
2760
|
+
"description": "Default text on Neutral-bg-strongest or other dark backgrounds"
|
|
2761
|
+
},
|
|
2762
|
+
"name": "PaletteLightNeutralTextInverse",
|
|
2763
|
+
"attributes": {
|
|
2764
|
+
"category": "palette",
|
|
2765
|
+
"type": "light",
|
|
2766
|
+
"item": "neutral",
|
|
2767
|
+
"subitem": "text",
|
|
2768
|
+
"state": "inverse"
|
|
2769
|
+
},
|
|
2770
|
+
"path": [
|
|
2771
|
+
"palette",
|
|
2772
|
+
"light",
|
|
2773
|
+
"neutral",
|
|
2774
|
+
"text",
|
|
2775
|
+
"inverse"
|
|
2776
|
+
]
|
|
2777
|
+
}
|
|
2604
2778
|
},
|
|
2605
|
-
"
|
|
2606
|
-
"
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
"
|
|
2779
|
+
"bg": {
|
|
2780
|
+
"weak": {
|
|
2781
|
+
"value": "#FFFFFF",
|
|
2782
|
+
"description": "Used as a surface color for containers, panels, side navigation and drawers on top of Neutral-bg-default",
|
|
2783
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2784
|
+
"isSource": true,
|
|
2785
|
+
"original": {
|
|
2786
|
+
"value": "{colors.neutral.10.value}",
|
|
2787
|
+
"description": "Used as a surface color for containers, panels, side navigation and drawers on top of Neutral-bg-default"
|
|
2788
|
+
},
|
|
2789
|
+
"name": "PaletteLightNeutralBgWeak",
|
|
2790
|
+
"attributes": {
|
|
2791
|
+
"category": "palette",
|
|
2792
|
+
"type": "light",
|
|
2793
|
+
"item": "neutral",
|
|
2794
|
+
"subitem": "bg",
|
|
2795
|
+
"state": "weak"
|
|
2796
|
+
},
|
|
2797
|
+
"path": [
|
|
2798
|
+
"palette",
|
|
2799
|
+
"light",
|
|
2800
|
+
"neutral",
|
|
2801
|
+
"bg",
|
|
2802
|
+
"weak"
|
|
2803
|
+
]
|
|
2611
2804
|
},
|
|
2612
|
-
"
|
|
2613
|
-
|
|
2614
|
-
"
|
|
2615
|
-
"
|
|
2616
|
-
"
|
|
2617
|
-
"
|
|
2805
|
+
"default": {
|
|
2806
|
+
"value": "#F5F7FA",
|
|
2807
|
+
"description": "Used as canvas/main background color in applications. Can also be used if adding a container on Neutral-bg-weak",
|
|
2808
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2809
|
+
"isSource": true,
|
|
2810
|
+
"original": {
|
|
2811
|
+
"value": "{colors.neutral.20.value}",
|
|
2812
|
+
"description": "Used as canvas/main background color in applications. Can also be used if adding a container on Neutral-bg-weak"
|
|
2813
|
+
},
|
|
2814
|
+
"name": "PaletteLightNeutralBgDefault",
|
|
2815
|
+
"attributes": {
|
|
2816
|
+
"category": "palette",
|
|
2817
|
+
"type": "light",
|
|
2818
|
+
"item": "neutral",
|
|
2819
|
+
"subitem": "bg",
|
|
2820
|
+
"state": "default"
|
|
2821
|
+
},
|
|
2822
|
+
"path": [
|
|
2823
|
+
"palette",
|
|
2824
|
+
"light",
|
|
2825
|
+
"neutral",
|
|
2826
|
+
"bg",
|
|
2827
|
+
"default"
|
|
2828
|
+
]
|
|
2618
2829
|
},
|
|
2619
|
-
"path": [
|
|
2620
|
-
"palette",
|
|
2621
|
-
"light",
|
|
2622
|
-
"warning",
|
|
2623
|
-
"icon"
|
|
2624
|
-
]
|
|
2625
|
-
},
|
|
2626
|
-
"bg": {
|
|
2627
2830
|
"strong": {
|
|
2628
|
-
"value": "#
|
|
2629
|
-
"
|
|
2831
|
+
"value": "#E6E9EE",
|
|
2832
|
+
"description": "Use sparsely, mainly included in some component states",
|
|
2833
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2630
2834
|
"isSource": true,
|
|
2631
2835
|
"original": {
|
|
2632
|
-
"value": "{colors.
|
|
2836
|
+
"value": "{colors.neutral.40.value}",
|
|
2837
|
+
"description": "Use sparsely, mainly included in some component states"
|
|
2633
2838
|
},
|
|
2634
|
-
"name": "
|
|
2839
|
+
"name": "PaletteLightNeutralBgStrong",
|
|
2635
2840
|
"attributes": {
|
|
2636
2841
|
"category": "palette",
|
|
2637
2842
|
"type": "light",
|
|
2638
|
-
"item": "
|
|
2843
|
+
"item": "neutral",
|
|
2639
2844
|
"subitem": "bg",
|
|
2640
2845
|
"state": "strong"
|
|
2641
2846
|
},
|
|
2642
2847
|
"path": [
|
|
2643
2848
|
"palette",
|
|
2644
2849
|
"light",
|
|
2645
|
-
"
|
|
2850
|
+
"neutral",
|
|
2646
2851
|
"bg",
|
|
2647
2852
|
"strong"
|
|
2648
2853
|
]
|
|
2649
2854
|
},
|
|
2650
|
-
"
|
|
2651
|
-
"value": "#
|
|
2652
|
-
"
|
|
2855
|
+
"strongest": {
|
|
2856
|
+
"value": "#535B66",
|
|
2857
|
+
"description": "Use sparsely, mainly for tooltips or other elements that should stand out from the light layout",
|
|
2858
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2653
2859
|
"isSource": true,
|
|
2654
2860
|
"original": {
|
|
2655
|
-
"value": "{colors.
|
|
2861
|
+
"value": "{colors.neutral.80.value}",
|
|
2862
|
+
"description": "Use sparsely, mainly for tooltips or other elements that should stand out from the light layout"
|
|
2656
2863
|
},
|
|
2657
|
-
"name": "
|
|
2864
|
+
"name": "PaletteLightNeutralBgStrongest",
|
|
2658
2865
|
"attributes": {
|
|
2659
2866
|
"category": "palette",
|
|
2660
2867
|
"type": "light",
|
|
2661
|
-
"item": "
|
|
2868
|
+
"item": "neutral",
|
|
2662
2869
|
"subitem": "bg",
|
|
2663
|
-
"state": "
|
|
2870
|
+
"state": "strongest"
|
|
2664
2871
|
},
|
|
2665
2872
|
"path": [
|
|
2666
2873
|
"palette",
|
|
2667
2874
|
"light",
|
|
2668
|
-
"
|
|
2875
|
+
"neutral",
|
|
2669
2876
|
"bg",
|
|
2670
|
-
"
|
|
2877
|
+
"strongest"
|
|
2671
2878
|
]
|
|
2672
2879
|
}
|
|
2673
2880
|
},
|
|
2674
2881
|
"border": {
|
|
2675
|
-
"
|
|
2676
|
-
"value": "#
|
|
2677
|
-
"
|
|
2882
|
+
"weak": {
|
|
2883
|
+
"value": "#EEF1F6",
|
|
2884
|
+
"description": "Used for light borders such as dividers and tables as well as some components such as context menu and code block to make them stand out more from the background",
|
|
2885
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2678
2886
|
"isSource": true,
|
|
2679
2887
|
"original": {
|
|
2680
|
-
"value": "{colors.
|
|
2888
|
+
"value": "{colors.neutral.30.value}",
|
|
2889
|
+
"description": "Used for light borders such as dividers and tables as well as some components such as context menu and code block to make them stand out more from the background"
|
|
2681
2890
|
},
|
|
2682
|
-
"name": "
|
|
2891
|
+
"name": "PaletteLightNeutralBorderWeak",
|
|
2683
2892
|
"attributes": {
|
|
2684
2893
|
"category": "palette",
|
|
2685
2894
|
"type": "light",
|
|
2686
|
-
"item": "
|
|
2895
|
+
"item": "neutral",
|
|
2687
2896
|
"subitem": "border",
|
|
2688
|
-
"state": "
|
|
2897
|
+
"state": "weak"
|
|
2689
2898
|
},
|
|
2690
2899
|
"path": [
|
|
2691
2900
|
"palette",
|
|
2692
2901
|
"light",
|
|
2693
|
-
"
|
|
2902
|
+
"neutral",
|
|
2694
2903
|
"border",
|
|
2695
|
-
"
|
|
2904
|
+
"weak"
|
|
2696
2905
|
]
|
|
2697
2906
|
},
|
|
2698
|
-
"
|
|
2699
|
-
"value": "#
|
|
2700
|
-
"
|
|
2907
|
+
"strong": {
|
|
2908
|
+
"value": "#C4C8CD",
|
|
2909
|
+
"description": "Used for components that are outlined and need to stand out such as text fields, search fields, drop-downs, buttons, checkboxes and radio buttons",
|
|
2910
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2701
2911
|
"isSource": true,
|
|
2702
2912
|
"original": {
|
|
2703
|
-
"value": "{colors.
|
|
2913
|
+
"value": "{colors.neutral.50.value}",
|
|
2914
|
+
"description": "Used for components that are outlined and need to stand out such as text fields, search fields, drop-downs, buttons, checkboxes and radio buttons"
|
|
2704
2915
|
},
|
|
2705
|
-
"name": "
|
|
2916
|
+
"name": "PaletteLightNeutralBorderStrong",
|
|
2706
2917
|
"attributes": {
|
|
2707
2918
|
"category": "palette",
|
|
2708
2919
|
"type": "light",
|
|
2709
|
-
"item": "
|
|
2920
|
+
"item": "neutral",
|
|
2710
2921
|
"subitem": "border",
|
|
2711
|
-
"state": "
|
|
2922
|
+
"state": "strong"
|
|
2712
2923
|
},
|
|
2713
2924
|
"path": [
|
|
2714
2925
|
"palette",
|
|
2715
2926
|
"light",
|
|
2716
|
-
"
|
|
2927
|
+
"neutral",
|
|
2717
2928
|
"border",
|
|
2718
|
-
"
|
|
2929
|
+
"strong"
|
|
2719
2930
|
]
|
|
2720
2931
|
}
|
|
2932
|
+
},
|
|
2933
|
+
"hover": {
|
|
2934
|
+
"alpha": "0.1",
|
|
2935
|
+
"value": "rgba(113,119,128,0.1)",
|
|
2936
|
+
"description": "Used for neutral hover states on components",
|
|
2937
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2938
|
+
"isSource": true,
|
|
2939
|
+
"original": {
|
|
2940
|
+
"alpha": "0.1",
|
|
2941
|
+
"value": "rgba({colors.neutral.70.rgb},{palette.light.neutral.hover.alpha})",
|
|
2942
|
+
"description": "Used for neutral hover states on components"
|
|
2943
|
+
},
|
|
2944
|
+
"name": "PaletteLightNeutralHover",
|
|
2945
|
+
"attributes": {
|
|
2946
|
+
"category": "palette",
|
|
2947
|
+
"type": "light",
|
|
2948
|
+
"item": "neutral",
|
|
2949
|
+
"subitem": "hover"
|
|
2950
|
+
},
|
|
2951
|
+
"path": [
|
|
2952
|
+
"palette",
|
|
2953
|
+
"light",
|
|
2954
|
+
"neutral",
|
|
2955
|
+
"hover"
|
|
2956
|
+
]
|
|
2957
|
+
},
|
|
2958
|
+
"pressed": {
|
|
2959
|
+
"alpha": "0.2",
|
|
2960
|
+
"value": "rgba(113,119,128,0.2)",
|
|
2961
|
+
"description": "Used for neutral pressed states on components",
|
|
2962
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2963
|
+
"isSource": true,
|
|
2964
|
+
"original": {
|
|
2965
|
+
"alpha": "0.2",
|
|
2966
|
+
"value": "rgba({colors.neutral.70.rgb},{palette.light.neutral.pressed.alpha})",
|
|
2967
|
+
"description": "Used for neutral pressed states on components"
|
|
2968
|
+
},
|
|
2969
|
+
"name": "PaletteLightNeutralPressed",
|
|
2970
|
+
"attributes": {
|
|
2971
|
+
"category": "palette",
|
|
2972
|
+
"type": "light",
|
|
2973
|
+
"item": "neutral",
|
|
2974
|
+
"subitem": "pressed"
|
|
2975
|
+
},
|
|
2976
|
+
"path": [
|
|
2977
|
+
"palette",
|
|
2978
|
+
"light",
|
|
2979
|
+
"neutral",
|
|
2980
|
+
"pressed"
|
|
2981
|
+
]
|
|
2721
2982
|
}
|
|
2722
2983
|
},
|
|
2723
|
-
"
|
|
2984
|
+
"primary": {
|
|
2724
2985
|
"text": {
|
|
2725
|
-
"value": "#
|
|
2726
|
-
"
|
|
2986
|
+
"value": "#006FD6",
|
|
2987
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states",
|
|
2988
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2727
2989
|
"isSource": true,
|
|
2728
2990
|
"original": {
|
|
2729
|
-
"value": "{colors.
|
|
2991
|
+
"value": "{colors.primary.50.value}",
|
|
2992
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states"
|
|
2730
2993
|
},
|
|
2731
|
-
"name": "
|
|
2994
|
+
"name": "PaletteLightPrimaryText",
|
|
2732
2995
|
"attributes": {
|
|
2733
2996
|
"category": "palette",
|
|
2734
2997
|
"type": "light",
|
|
2735
|
-
"item": "
|
|
2998
|
+
"item": "primary",
|
|
2736
2999
|
"subitem": "text"
|
|
2737
3000
|
},
|
|
2738
3001
|
"path": [
|
|
2739
3002
|
"palette",
|
|
2740
3003
|
"light",
|
|
2741
|
-
"
|
|
3004
|
+
"primary",
|
|
2742
3005
|
"text"
|
|
2743
3006
|
]
|
|
2744
3007
|
},
|
|
2745
3008
|
"icon": {
|
|
2746
|
-
"value": "#
|
|
2747
|
-
"
|
|
3009
|
+
"value": "#006FD6",
|
|
3010
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states",
|
|
3011
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2748
3012
|
"isSource": true,
|
|
2749
3013
|
"original": {
|
|
2750
|
-
"value": "{colors.
|
|
3014
|
+
"value": "{colors.primary.50.value}",
|
|
3015
|
+
"description": "Used for accent text, in text buttons, links, tabs and view selectors. Provides accessible text on both neutral backgrounds. We use the primary color both as a brand/primary color and for informational states"
|
|
2751
3016
|
},
|
|
2752
|
-
"name": "
|
|
3017
|
+
"name": "PaletteLightPrimaryIcon",
|
|
2753
3018
|
"attributes": {
|
|
2754
3019
|
"category": "palette",
|
|
2755
3020
|
"type": "light",
|
|
2756
|
-
"item": "
|
|
3021
|
+
"item": "primary",
|
|
2757
3022
|
"subitem": "icon"
|
|
2758
3023
|
},
|
|
2759
3024
|
"path": [
|
|
2760
3025
|
"palette",
|
|
2761
3026
|
"light",
|
|
2762
|
-
"
|
|
3027
|
+
"primary",
|
|
2763
3028
|
"icon"
|
|
2764
3029
|
]
|
|
2765
3030
|
},
|
|
2766
3031
|
"bg": {
|
|
2767
3032
|
"strong": {
|
|
2768
|
-
"value": "#
|
|
2769
|
-
"
|
|
3033
|
+
"value": "#006FD6",
|
|
3034
|
+
"description": "Used as backgrounds for highlighted components such as filled buttons, checkboxes, radio buttons, cards, filled labels, pagination and view selectors",
|
|
3035
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2770
3036
|
"isSource": true,
|
|
2771
3037
|
"original": {
|
|
2772
|
-
"value": "{colors.
|
|
3038
|
+
"value": "{colors.primary.50.value}",
|
|
3039
|
+
"description": "Used as backgrounds for highlighted components such as filled buttons, checkboxes, radio buttons, cards, filled labels, pagination and view selectors"
|
|
2773
3040
|
},
|
|
2774
|
-
"name": "
|
|
3041
|
+
"name": "PaletteLightPrimaryBgStrong",
|
|
2775
3042
|
"attributes": {
|
|
2776
3043
|
"category": "palette",
|
|
2777
3044
|
"type": "light",
|
|
2778
|
-
"item": "
|
|
3045
|
+
"item": "primary",
|
|
2779
3046
|
"subitem": "bg",
|
|
2780
3047
|
"state": "strong"
|
|
2781
3048
|
},
|
|
2782
3049
|
"path": [
|
|
2783
3050
|
"palette",
|
|
2784
3051
|
"light",
|
|
2785
|
-
"
|
|
3052
|
+
"primary",
|
|
2786
3053
|
"bg",
|
|
2787
3054
|
"strong"
|
|
2788
3055
|
]
|
|
2789
3056
|
},
|
|
2790
3057
|
"weak": {
|
|
2791
|
-
"value": "#
|
|
2792
|
-
"
|
|
3058
|
+
"value": "#e6f8ff",
|
|
3059
|
+
"description": "Used as a light primary background and usually in combination with Primary-text,icon. Components include banners, semi-filled labels, drag & drops and filled tabs",
|
|
3060
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2793
3061
|
"isSource": true,
|
|
2794
3062
|
"original": {
|
|
2795
|
-
"value": "{colors.
|
|
3063
|
+
"value": "{colors.primary.10.value}",
|
|
3064
|
+
"description": "Used as a light primary background and usually in combination with Primary-text,icon. Components include banners, semi-filled labels, drag & drops and filled tabs"
|
|
2796
3065
|
},
|
|
2797
|
-
"name": "
|
|
3066
|
+
"name": "PaletteLightPrimaryBgWeak",
|
|
2798
3067
|
"attributes": {
|
|
2799
3068
|
"category": "palette",
|
|
2800
3069
|
"type": "light",
|
|
2801
|
-
"item": "
|
|
3070
|
+
"item": "primary",
|
|
2802
3071
|
"subitem": "bg",
|
|
2803
3072
|
"state": "weak"
|
|
2804
3073
|
},
|
|
2805
3074
|
"path": [
|
|
2806
3075
|
"palette",
|
|
2807
3076
|
"light",
|
|
2808
|
-
"
|
|
3077
|
+
"primary",
|
|
2809
3078
|
"bg",
|
|
2810
3079
|
"weak"
|
|
2811
3080
|
]
|
|
@@ -2813,62 +3082,1158 @@ module.exports = {
|
|
|
2813
3082
|
},
|
|
2814
3083
|
"border": {
|
|
2815
3084
|
"strong": {
|
|
2816
|
-
"value": "#
|
|
2817
|
-
"
|
|
3085
|
+
"value": "#006FD6",
|
|
3086
|
+
"description": "Use sparsely. Used for outlined primary buttons, drag & drop dragged state, outlined labels and wizard",
|
|
3087
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2818
3088
|
"isSource": true,
|
|
2819
3089
|
"original": {
|
|
2820
|
-
"value": "{colors.
|
|
3090
|
+
"value": "{colors.primary.50.value}",
|
|
3091
|
+
"description": "Use sparsely. Used for outlined primary buttons, drag & drop dragged state, outlined labels and wizard"
|
|
2821
3092
|
},
|
|
2822
|
-
"name": "
|
|
3093
|
+
"name": "PaletteLightPrimaryBorderStrong",
|
|
2823
3094
|
"attributes": {
|
|
2824
3095
|
"category": "palette",
|
|
2825
3096
|
"type": "light",
|
|
2826
|
-
"item": "
|
|
3097
|
+
"item": "primary",
|
|
2827
3098
|
"subitem": "border",
|
|
2828
3099
|
"state": "strong"
|
|
2829
3100
|
},
|
|
2830
3101
|
"path": [
|
|
2831
3102
|
"palette",
|
|
2832
3103
|
"light",
|
|
2833
|
-
"
|
|
3104
|
+
"primary",
|
|
2834
3105
|
"border",
|
|
2835
3106
|
"strong"
|
|
2836
3107
|
]
|
|
2837
3108
|
},
|
|
2838
3109
|
"weak": {
|
|
2839
|
-
"value": "#
|
|
2840
|
-
"
|
|
3110
|
+
"value": "#7ad1ff",
|
|
3111
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Primary-bg-weak to stand out more from the background",
|
|
3112
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
2841
3113
|
"isSource": true,
|
|
2842
3114
|
"original": {
|
|
2843
|
-
"value": "{colors.
|
|
3115
|
+
"value": "{colors.primary.30.value}",
|
|
3116
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Primary-bg-weak to stand out more from the background"
|
|
2844
3117
|
},
|
|
2845
|
-
"name": "
|
|
3118
|
+
"name": "PaletteLightPrimaryBorderWeak",
|
|
2846
3119
|
"attributes": {
|
|
2847
3120
|
"category": "palette",
|
|
2848
3121
|
"type": "light",
|
|
2849
|
-
"item": "
|
|
3122
|
+
"item": "primary",
|
|
2850
3123
|
"subitem": "border",
|
|
2851
3124
|
"state": "weak"
|
|
2852
3125
|
},
|
|
2853
3126
|
"path": [
|
|
2854
3127
|
"palette",
|
|
2855
3128
|
"light",
|
|
2856
|
-
"
|
|
3129
|
+
"primary",
|
|
2857
3130
|
"border",
|
|
2858
3131
|
"weak"
|
|
2859
3132
|
]
|
|
2860
3133
|
}
|
|
3134
|
+
},
|
|
3135
|
+
"focus": {
|
|
3136
|
+
"value": "#018bff",
|
|
3137
|
+
"description": "Used for all focused states",
|
|
3138
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3139
|
+
"isSource": true,
|
|
3140
|
+
"original": {
|
|
3141
|
+
"value": "{colors.primary.40.value}",
|
|
3142
|
+
"description": "Used for all focused states"
|
|
3143
|
+
},
|
|
3144
|
+
"name": "PaletteLightPrimaryFocus",
|
|
3145
|
+
"attributes": {
|
|
3146
|
+
"category": "palette",
|
|
3147
|
+
"type": "light",
|
|
3148
|
+
"item": "primary",
|
|
3149
|
+
"subitem": "focus"
|
|
3150
|
+
},
|
|
3151
|
+
"path": [
|
|
3152
|
+
"palette",
|
|
3153
|
+
"light",
|
|
3154
|
+
"primary",
|
|
3155
|
+
"focus"
|
|
3156
|
+
]
|
|
3157
|
+
},
|
|
3158
|
+
"hover": {
|
|
3159
|
+
"weak": {
|
|
3160
|
+
"alpha": "0.08",
|
|
3161
|
+
"value": "rgba(1,139,255,0.08)",
|
|
3162
|
+
"description": "Used for hover states where the background is either transparent or use Neutral-bg-weak",
|
|
3163
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3164
|
+
"isSource": true,
|
|
3165
|
+
"original": {
|
|
3166
|
+
"alpha": "0.08",
|
|
3167
|
+
"value": "rgba({colors.primary.40.rgb},{palette.light.primary.hover.weak.alpha})",
|
|
3168
|
+
"description": "Used for hover states where the background is either transparent or use Neutral-bg-weak"
|
|
3169
|
+
},
|
|
3170
|
+
"name": "PaletteLightPrimaryHoverWeak",
|
|
3171
|
+
"attributes": {
|
|
3172
|
+
"category": "palette",
|
|
3173
|
+
"type": "light",
|
|
3174
|
+
"item": "primary",
|
|
3175
|
+
"subitem": "hover",
|
|
3176
|
+
"state": "weak"
|
|
3177
|
+
},
|
|
3178
|
+
"path": [
|
|
3179
|
+
"palette",
|
|
3180
|
+
"light",
|
|
3181
|
+
"primary",
|
|
3182
|
+
"hover",
|
|
3183
|
+
"weak"
|
|
3184
|
+
]
|
|
3185
|
+
},
|
|
3186
|
+
"strong": {
|
|
3187
|
+
"value": "#0056b3",
|
|
3188
|
+
"description": "Used for hover states where the background is the Primary-bg-strong with the label being Neutral-text-inverse",
|
|
3189
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3190
|
+
"isSource": true,
|
|
3191
|
+
"original": {
|
|
3192
|
+
"value": "{colors.primary.60.value}",
|
|
3193
|
+
"description": "Used for hover states where the background is the Primary-bg-strong with the label being Neutral-text-inverse"
|
|
3194
|
+
},
|
|
3195
|
+
"name": "PaletteLightPrimaryHoverStrong",
|
|
3196
|
+
"attributes": {
|
|
3197
|
+
"category": "palette",
|
|
3198
|
+
"type": "light",
|
|
3199
|
+
"item": "primary",
|
|
3200
|
+
"subitem": "hover",
|
|
3201
|
+
"state": "strong"
|
|
3202
|
+
},
|
|
3203
|
+
"path": [
|
|
3204
|
+
"palette",
|
|
3205
|
+
"light",
|
|
3206
|
+
"primary",
|
|
3207
|
+
"hover",
|
|
3208
|
+
"strong"
|
|
3209
|
+
]
|
|
3210
|
+
}
|
|
3211
|
+
},
|
|
3212
|
+
"pressed": {
|
|
3213
|
+
"weak": {
|
|
3214
|
+
"alpha": "0.12",
|
|
3215
|
+
"value": "rgba(1,139,255,0.12)",
|
|
3216
|
+
"description": "Used for pressed states where the background is either transparent or use Neutral-bg-weak",
|
|
3217
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3218
|
+
"isSource": true,
|
|
3219
|
+
"original": {
|
|
3220
|
+
"alpha": "0.12",
|
|
3221
|
+
"value": "rgba({colors.primary.40.rgb},{palette.light.primary.pressed.weak.alpha})",
|
|
3222
|
+
"description": "Used for pressed states where the background is either transparent or use Neutral-bg-weak"
|
|
3223
|
+
},
|
|
3224
|
+
"name": "PaletteLightPrimaryPressedWeak",
|
|
3225
|
+
"attributes": {
|
|
3226
|
+
"category": "palette",
|
|
3227
|
+
"type": "light",
|
|
3228
|
+
"item": "primary",
|
|
3229
|
+
"subitem": "pressed",
|
|
3230
|
+
"state": "weak"
|
|
3231
|
+
},
|
|
3232
|
+
"path": [
|
|
3233
|
+
"palette",
|
|
3234
|
+
"light",
|
|
3235
|
+
"primary",
|
|
3236
|
+
"pressed",
|
|
3237
|
+
"weak"
|
|
3238
|
+
]
|
|
3239
|
+
},
|
|
3240
|
+
"strong": {
|
|
3241
|
+
"value": "#004092",
|
|
3242
|
+
"description": "Used for pressed states where the background is the Primary-bg-strong with the label being Neutral-text-inverse",
|
|
3243
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3244
|
+
"isSource": true,
|
|
3245
|
+
"original": {
|
|
3246
|
+
"value": "{colors.primary.70.value}",
|
|
3247
|
+
"description": "Used for pressed states where the background is the Primary-bg-strong with the label being Neutral-text-inverse"
|
|
3248
|
+
},
|
|
3249
|
+
"name": "PaletteLightPrimaryPressedStrong",
|
|
3250
|
+
"attributes": {
|
|
3251
|
+
"category": "palette",
|
|
3252
|
+
"type": "light",
|
|
3253
|
+
"item": "primary",
|
|
3254
|
+
"subitem": "pressed",
|
|
3255
|
+
"state": "strong"
|
|
3256
|
+
},
|
|
3257
|
+
"path": [
|
|
3258
|
+
"palette",
|
|
3259
|
+
"light",
|
|
3260
|
+
"primary",
|
|
3261
|
+
"pressed",
|
|
3262
|
+
"strong"
|
|
3263
|
+
]
|
|
3264
|
+
}
|
|
2861
3265
|
}
|
|
3266
|
+
},
|
|
3267
|
+
"danger": {
|
|
3268
|
+
"text": {
|
|
3269
|
+
"value": "#cc254b",
|
|
3270
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3271
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3272
|
+
"isSource": true,
|
|
3273
|
+
"original": {
|
|
3274
|
+
"value": "{colors.danger.50.value}",
|
|
3275
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3276
|
+
},
|
|
3277
|
+
"name": "PaletteLightDangerText",
|
|
3278
|
+
"attributes": {
|
|
3279
|
+
"category": "palette",
|
|
3280
|
+
"type": "light",
|
|
3281
|
+
"item": "danger",
|
|
3282
|
+
"subitem": "text"
|
|
3283
|
+
},
|
|
3284
|
+
"path": [
|
|
3285
|
+
"palette",
|
|
3286
|
+
"light",
|
|
3287
|
+
"danger",
|
|
3288
|
+
"text"
|
|
3289
|
+
]
|
|
3290
|
+
},
|
|
3291
|
+
"icon": {
|
|
3292
|
+
"value": "#cc254b",
|
|
3293
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3294
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3295
|
+
"isSource": true,
|
|
3296
|
+
"original": {
|
|
3297
|
+
"value": "{colors.danger.50.value}",
|
|
3298
|
+
"description": "Used for error state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3299
|
+
},
|
|
3300
|
+
"name": "PaletteLightDangerIcon",
|
|
3301
|
+
"attributes": {
|
|
3302
|
+
"category": "palette",
|
|
3303
|
+
"type": "light",
|
|
3304
|
+
"item": "danger",
|
|
3305
|
+
"subitem": "icon"
|
|
3306
|
+
},
|
|
3307
|
+
"path": [
|
|
3308
|
+
"palette",
|
|
3309
|
+
"light",
|
|
3310
|
+
"danger",
|
|
3311
|
+
"icon"
|
|
3312
|
+
]
|
|
3313
|
+
},
|
|
3314
|
+
"bg": {
|
|
3315
|
+
"strong": {
|
|
3316
|
+
"value": "#cc254b",
|
|
3317
|
+
"description": "Used as backgrounds for filled critical buttons. Can also be used for illustrative background elements in critical states",
|
|
3318
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3319
|
+
"isSource": true,
|
|
3320
|
+
"original": {
|
|
3321
|
+
"value": "{colors.danger.50.value}",
|
|
3322
|
+
"description": "Used as backgrounds for filled critical buttons. Can also be used for illustrative background elements in critical states"
|
|
3323
|
+
},
|
|
3324
|
+
"name": "PaletteLightDangerBgStrong",
|
|
3325
|
+
"attributes": {
|
|
3326
|
+
"category": "palette",
|
|
3327
|
+
"type": "light",
|
|
3328
|
+
"item": "danger",
|
|
3329
|
+
"subitem": "bg",
|
|
3330
|
+
"state": "strong"
|
|
3331
|
+
},
|
|
3332
|
+
"path": [
|
|
3333
|
+
"palette",
|
|
3334
|
+
"light",
|
|
3335
|
+
"danger",
|
|
3336
|
+
"bg",
|
|
3337
|
+
"strong"
|
|
3338
|
+
]
|
|
3339
|
+
},
|
|
3340
|
+
"weak": {
|
|
3341
|
+
"value": "#ffe6e9",
|
|
3342
|
+
"description": "Used as backgrounds for critical components states such as banner drag & drop (invalid file type), semi-filled labels and “clear all” tags",
|
|
3343
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3344
|
+
"isSource": true,
|
|
3345
|
+
"original": {
|
|
3346
|
+
"value": "{colors.danger.10.value}",
|
|
3347
|
+
"description": "Used as backgrounds for critical components states such as banner drag & drop (invalid file type), semi-filled labels and “clear all” tags"
|
|
3348
|
+
},
|
|
3349
|
+
"name": "PaletteLightDangerBgWeak",
|
|
3350
|
+
"attributes": {
|
|
3351
|
+
"category": "palette",
|
|
3352
|
+
"type": "light",
|
|
3353
|
+
"item": "danger",
|
|
3354
|
+
"subitem": "bg",
|
|
3355
|
+
"state": "weak"
|
|
3356
|
+
},
|
|
3357
|
+
"path": [
|
|
3358
|
+
"palette",
|
|
3359
|
+
"light",
|
|
3360
|
+
"danger",
|
|
3361
|
+
"bg",
|
|
3362
|
+
"weak"
|
|
3363
|
+
]
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
"border": {
|
|
3367
|
+
"strong": {
|
|
3368
|
+
"value": "#cc254b",
|
|
3369
|
+
"description": "Use sparsely. Used for outlined critical buttons, drag & drop (invalid file type) and outlined critical labels",
|
|
3370
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3371
|
+
"isSource": true,
|
|
3372
|
+
"original": {
|
|
3373
|
+
"value": "{colors.danger.50.value}",
|
|
3374
|
+
"description": "Use sparsely. Used for outlined critical buttons, drag & drop (invalid file type) and outlined critical labels"
|
|
3375
|
+
},
|
|
3376
|
+
"name": "PaletteLightDangerBorderStrong",
|
|
3377
|
+
"attributes": {
|
|
3378
|
+
"category": "palette",
|
|
3379
|
+
"type": "light",
|
|
3380
|
+
"item": "danger",
|
|
3381
|
+
"subitem": "border",
|
|
3382
|
+
"state": "strong"
|
|
3383
|
+
},
|
|
3384
|
+
"path": [
|
|
3385
|
+
"palette",
|
|
3386
|
+
"light",
|
|
3387
|
+
"danger",
|
|
3388
|
+
"border",
|
|
3389
|
+
"strong"
|
|
3390
|
+
]
|
|
3391
|
+
},
|
|
3392
|
+
"weak": {
|
|
3393
|
+
"value": "#ffb8c4",
|
|
3394
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Critical-bg-weak to stand out more from the background",
|
|
3395
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3396
|
+
"isSource": true,
|
|
3397
|
+
"original": {
|
|
3398
|
+
"value": "{colors.danger.20.value}",
|
|
3399
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Critical-bg-weak to stand out more from the background"
|
|
3400
|
+
},
|
|
3401
|
+
"name": "PaletteLightDangerBorderWeak",
|
|
3402
|
+
"attributes": {
|
|
3403
|
+
"category": "palette",
|
|
3404
|
+
"type": "light",
|
|
3405
|
+
"item": "danger",
|
|
3406
|
+
"subitem": "border",
|
|
3407
|
+
"state": "weak"
|
|
3408
|
+
},
|
|
3409
|
+
"path": [
|
|
3410
|
+
"palette",
|
|
3411
|
+
"light",
|
|
3412
|
+
"danger",
|
|
3413
|
+
"border",
|
|
3414
|
+
"weak"
|
|
3415
|
+
]
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
"hover": {
|
|
3419
|
+
"weak": {
|
|
3420
|
+
"alpha": "0.08",
|
|
3421
|
+
"value": "rgba(237,18,82,0.08)",
|
|
3422
|
+
"description": "Used for hover states for critical buttons where the background is either transparent or use Neutral-bg-weak",
|
|
3423
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3424
|
+
"isSource": true,
|
|
3425
|
+
"original": {
|
|
3426
|
+
"alpha": "0.08",
|
|
3427
|
+
"value": "rgba({colors.danger.40.rgb},{palette.light.danger.hover.weak.alpha})",
|
|
3428
|
+
"description": "Used for hover states for critical buttons where the background is either transparent or use Neutral-bg-weak"
|
|
3429
|
+
},
|
|
3430
|
+
"name": "PaletteLightDangerHoverWeak",
|
|
3431
|
+
"attributes": {
|
|
3432
|
+
"category": "palette",
|
|
3433
|
+
"type": "light",
|
|
3434
|
+
"item": "danger",
|
|
3435
|
+
"subitem": "hover",
|
|
3436
|
+
"state": "weak"
|
|
3437
|
+
},
|
|
3438
|
+
"path": [
|
|
3439
|
+
"palette",
|
|
3440
|
+
"light",
|
|
3441
|
+
"danger",
|
|
3442
|
+
"hover",
|
|
3443
|
+
"weak"
|
|
3444
|
+
]
|
|
3445
|
+
},
|
|
3446
|
+
"strong": {
|
|
3447
|
+
"value": "#a1003b",
|
|
3448
|
+
"description": "Only used for hover states in critical filled buttons",
|
|
3449
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3450
|
+
"isSource": true,
|
|
3451
|
+
"original": {
|
|
3452
|
+
"value": "{colors.danger.60.value}",
|
|
3453
|
+
"description": "Only used for hover states in critical filled buttons"
|
|
3454
|
+
},
|
|
3455
|
+
"name": "PaletteLightDangerHoverStrong",
|
|
3456
|
+
"attributes": {
|
|
3457
|
+
"category": "palette",
|
|
3458
|
+
"type": "light",
|
|
3459
|
+
"item": "danger",
|
|
3460
|
+
"subitem": "hover",
|
|
3461
|
+
"state": "strong"
|
|
3462
|
+
},
|
|
3463
|
+
"path": [
|
|
3464
|
+
"palette",
|
|
3465
|
+
"light",
|
|
3466
|
+
"danger",
|
|
3467
|
+
"hover",
|
|
3468
|
+
"strong"
|
|
3469
|
+
]
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
"pressed": {
|
|
3473
|
+
"weak": {
|
|
3474
|
+
"alpha": "0.12",
|
|
3475
|
+
"value": "rgba(237,18,82,0.12)",
|
|
3476
|
+
"description": "Used for pressed states for critical buttons where the background is either transparent or use Neutral-bg-weak",
|
|
3477
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3478
|
+
"isSource": true,
|
|
3479
|
+
"original": {
|
|
3480
|
+
"alpha": "0.12",
|
|
3481
|
+
"value": "rgba({colors.danger.40.rgb},{palette.light.danger.pressed.weak.alpha})",
|
|
3482
|
+
"description": "Used for pressed states for critical buttons where the background is either transparent or use Neutral-bg-weak"
|
|
3483
|
+
},
|
|
3484
|
+
"name": "PaletteLightDangerPressedWeak",
|
|
3485
|
+
"attributes": {
|
|
3486
|
+
"category": "palette",
|
|
3487
|
+
"type": "light",
|
|
3488
|
+
"item": "danger",
|
|
3489
|
+
"subitem": "pressed",
|
|
3490
|
+
"state": "weak"
|
|
3491
|
+
},
|
|
3492
|
+
"path": [
|
|
3493
|
+
"palette",
|
|
3494
|
+
"light",
|
|
3495
|
+
"danger",
|
|
3496
|
+
"pressed",
|
|
3497
|
+
"weak"
|
|
3498
|
+
]
|
|
3499
|
+
},
|
|
3500
|
+
"strong": {
|
|
3501
|
+
"value": "#7a0031",
|
|
3502
|
+
"description": "Only used for pressed states in critical filled buttons",
|
|
3503
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3504
|
+
"isSource": true,
|
|
3505
|
+
"original": {
|
|
3506
|
+
"value": "{colors.danger.70.value}",
|
|
3507
|
+
"description": "Only used for pressed states in critical filled buttons"
|
|
3508
|
+
},
|
|
3509
|
+
"name": "PaletteLightDangerPressedStrong",
|
|
3510
|
+
"attributes": {
|
|
3511
|
+
"category": "palette",
|
|
3512
|
+
"type": "light",
|
|
3513
|
+
"item": "danger",
|
|
3514
|
+
"subitem": "pressed",
|
|
3515
|
+
"state": "strong"
|
|
3516
|
+
},
|
|
3517
|
+
"path": [
|
|
3518
|
+
"palette",
|
|
3519
|
+
"light",
|
|
3520
|
+
"danger",
|
|
3521
|
+
"pressed",
|
|
3522
|
+
"strong"
|
|
3523
|
+
]
|
|
3524
|
+
}
|
|
3525
|
+
}
|
|
3526
|
+
},
|
|
3527
|
+
"warning": {
|
|
3528
|
+
"text": {
|
|
3529
|
+
"value": "#966c2e",
|
|
3530
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3531
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3532
|
+
"isSource": true,
|
|
3533
|
+
"original": {
|
|
3534
|
+
"value": "{colors.warning.60.value}",
|
|
3535
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3536
|
+
},
|
|
3537
|
+
"name": "PaletteLightWarningText",
|
|
3538
|
+
"attributes": {
|
|
3539
|
+
"category": "palette",
|
|
3540
|
+
"type": "light",
|
|
3541
|
+
"item": "warning",
|
|
3542
|
+
"subitem": "text"
|
|
3543
|
+
},
|
|
3544
|
+
"path": [
|
|
3545
|
+
"palette",
|
|
3546
|
+
"light",
|
|
3547
|
+
"warning",
|
|
3548
|
+
"text"
|
|
3549
|
+
]
|
|
3550
|
+
},
|
|
3551
|
+
"icon": {
|
|
3552
|
+
"value": "#966c2e",
|
|
3553
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3554
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3555
|
+
"isSource": true,
|
|
3556
|
+
"original": {
|
|
3557
|
+
"value": "{colors.warning.60.value}",
|
|
3558
|
+
"description": "Used for warning state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3559
|
+
},
|
|
3560
|
+
"name": "PaletteLightWarningIcon",
|
|
3561
|
+
"attributes": {
|
|
3562
|
+
"category": "palette",
|
|
3563
|
+
"type": "light",
|
|
3564
|
+
"item": "warning",
|
|
3565
|
+
"subitem": "icon"
|
|
3566
|
+
},
|
|
3567
|
+
"path": [
|
|
3568
|
+
"palette",
|
|
3569
|
+
"light",
|
|
3570
|
+
"warning",
|
|
3571
|
+
"icon"
|
|
3572
|
+
]
|
|
3573
|
+
},
|
|
3574
|
+
"bg": {
|
|
3575
|
+
"strong": {
|
|
3576
|
+
"value": "#966c2e",
|
|
3577
|
+
"description": "Use sparsely. Only used for filled labels",
|
|
3578
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3579
|
+
"isSource": true,
|
|
3580
|
+
"original": {
|
|
3581
|
+
"value": "{colors.warning.60.value}",
|
|
3582
|
+
"description": "Use sparsely. Only used for filled labels"
|
|
3583
|
+
},
|
|
3584
|
+
"name": "PaletteLightWarningBgStrong",
|
|
3585
|
+
"attributes": {
|
|
3586
|
+
"category": "palette",
|
|
3587
|
+
"type": "light",
|
|
3588
|
+
"item": "warning",
|
|
3589
|
+
"subitem": "bg",
|
|
3590
|
+
"state": "strong"
|
|
3591
|
+
},
|
|
3592
|
+
"path": [
|
|
3593
|
+
"palette",
|
|
3594
|
+
"light",
|
|
3595
|
+
"warning",
|
|
3596
|
+
"bg",
|
|
3597
|
+
"strong"
|
|
3598
|
+
]
|
|
3599
|
+
},
|
|
3600
|
+
"weak": {
|
|
3601
|
+
"value": "#FFFBDE",
|
|
3602
|
+
"description": "Used as backgrounds for warning components states such as banner and semi-filled labels",
|
|
3603
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3604
|
+
"isSource": true,
|
|
3605
|
+
"original": {
|
|
3606
|
+
"value": "{colors.warning.10.value}",
|
|
3607
|
+
"description": "Used as backgrounds for warning components states such as banner and semi-filled labels"
|
|
3608
|
+
},
|
|
3609
|
+
"name": "PaletteLightWarningBgWeak",
|
|
3610
|
+
"attributes": {
|
|
3611
|
+
"category": "palette",
|
|
3612
|
+
"type": "light",
|
|
3613
|
+
"item": "warning",
|
|
3614
|
+
"subitem": "bg",
|
|
3615
|
+
"state": "weak"
|
|
3616
|
+
},
|
|
3617
|
+
"path": [
|
|
3618
|
+
"palette",
|
|
3619
|
+
"light",
|
|
3620
|
+
"warning",
|
|
3621
|
+
"bg",
|
|
3622
|
+
"weak"
|
|
3623
|
+
]
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
"border": {
|
|
3627
|
+
"strong": {
|
|
3628
|
+
"value": "#966c2e",
|
|
3629
|
+
"description": "Use sparsely. Only used for outlined labels",
|
|
3630
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3631
|
+
"isSource": true,
|
|
3632
|
+
"original": {
|
|
3633
|
+
"value": "{colors.warning.60.value}",
|
|
3634
|
+
"description": "Use sparsely. Only used for outlined labels"
|
|
3635
|
+
},
|
|
3636
|
+
"name": "PaletteLightWarningBorderStrong",
|
|
3637
|
+
"attributes": {
|
|
3638
|
+
"category": "palette",
|
|
3639
|
+
"type": "light",
|
|
3640
|
+
"item": "warning",
|
|
3641
|
+
"subitem": "border",
|
|
3642
|
+
"state": "strong"
|
|
3643
|
+
},
|
|
3644
|
+
"path": [
|
|
3645
|
+
"palette",
|
|
3646
|
+
"light",
|
|
3647
|
+
"warning",
|
|
3648
|
+
"border",
|
|
3649
|
+
"strong"
|
|
3650
|
+
]
|
|
3651
|
+
},
|
|
3652
|
+
"weak": {
|
|
3653
|
+
"value": "#FFEA8C",
|
|
3654
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Warning-bg-weak to stand out more from the background",
|
|
3655
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3656
|
+
"isSource": true,
|
|
3657
|
+
"original": {
|
|
3658
|
+
"value": "{colors.warning.30.value}",
|
|
3659
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Warning-bg-weak to stand out more from the background"
|
|
3660
|
+
},
|
|
3661
|
+
"name": "PaletteLightWarningBorderWeak",
|
|
3662
|
+
"attributes": {
|
|
3663
|
+
"category": "palette",
|
|
3664
|
+
"type": "light",
|
|
3665
|
+
"item": "warning",
|
|
3666
|
+
"subitem": "border",
|
|
3667
|
+
"state": "weak"
|
|
3668
|
+
},
|
|
3669
|
+
"path": [
|
|
3670
|
+
"palette",
|
|
3671
|
+
"light",
|
|
3672
|
+
"warning",
|
|
3673
|
+
"border",
|
|
3674
|
+
"weak"
|
|
3675
|
+
]
|
|
3676
|
+
}
|
|
3677
|
+
}
|
|
3678
|
+
},
|
|
3679
|
+
"success": {
|
|
3680
|
+
"text": {
|
|
3681
|
+
"value": "#327D60",
|
|
3682
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3683
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3684
|
+
"isSource": true,
|
|
3685
|
+
"original": {
|
|
3686
|
+
"value": "{colors.success.50.value}",
|
|
3687
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3688
|
+
},
|
|
3689
|
+
"name": "PaletteLightSuccessText",
|
|
3690
|
+
"attributes": {
|
|
3691
|
+
"category": "palette",
|
|
3692
|
+
"type": "light",
|
|
3693
|
+
"item": "success",
|
|
3694
|
+
"subitem": "text"
|
|
3695
|
+
},
|
|
3696
|
+
"path": [
|
|
3697
|
+
"palette",
|
|
3698
|
+
"light",
|
|
3699
|
+
"success",
|
|
3700
|
+
"text"
|
|
3701
|
+
]
|
|
3702
|
+
},
|
|
3703
|
+
"icon": {
|
|
3704
|
+
"value": "#327D60",
|
|
3705
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors",
|
|
3706
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3707
|
+
"isSource": true,
|
|
3708
|
+
"original": {
|
|
3709
|
+
"value": "{colors.success.50.value}",
|
|
3710
|
+
"description": "Used for success state texts and icons. Do not use for other semantic states, visualization or graph colors"
|
|
3711
|
+
},
|
|
3712
|
+
"name": "PaletteLightSuccessIcon",
|
|
3713
|
+
"attributes": {
|
|
3714
|
+
"category": "palette",
|
|
3715
|
+
"type": "light",
|
|
3716
|
+
"item": "success",
|
|
3717
|
+
"subitem": "icon"
|
|
3718
|
+
},
|
|
3719
|
+
"path": [
|
|
3720
|
+
"palette",
|
|
3721
|
+
"light",
|
|
3722
|
+
"success",
|
|
3723
|
+
"icon"
|
|
3724
|
+
]
|
|
3725
|
+
},
|
|
3726
|
+
"bg": {
|
|
3727
|
+
"strong": {
|
|
3728
|
+
"value": "#327D60",
|
|
3729
|
+
"description": "Use sparsely. Only used for filled labels",
|
|
3730
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3731
|
+
"isSource": true,
|
|
3732
|
+
"original": {
|
|
3733
|
+
"value": "{colors.success.50.value}",
|
|
3734
|
+
"description": "Use sparsely. Only used for filled labels"
|
|
3735
|
+
},
|
|
3736
|
+
"name": "PaletteLightSuccessBgStrong",
|
|
3737
|
+
"attributes": {
|
|
3738
|
+
"category": "palette",
|
|
3739
|
+
"type": "light",
|
|
3740
|
+
"item": "success",
|
|
3741
|
+
"subitem": "bg",
|
|
3742
|
+
"state": "strong"
|
|
3743
|
+
},
|
|
3744
|
+
"path": [
|
|
3745
|
+
"palette",
|
|
3746
|
+
"light",
|
|
3747
|
+
"success",
|
|
3748
|
+
"bg",
|
|
3749
|
+
"strong"
|
|
3750
|
+
]
|
|
3751
|
+
},
|
|
3752
|
+
"weak": {
|
|
3753
|
+
"value": "#E1FAEF",
|
|
3754
|
+
"description": "Used as backgrounds for success components states such as banner and semi-filled labels",
|
|
3755
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3756
|
+
"isSource": true,
|
|
3757
|
+
"original": {
|
|
3758
|
+
"value": "{colors.success.10.value}",
|
|
3759
|
+
"description": "Used as backgrounds for success components states such as banner and semi-filled labels"
|
|
3760
|
+
},
|
|
3761
|
+
"name": "PaletteLightSuccessBgWeak",
|
|
3762
|
+
"attributes": {
|
|
3763
|
+
"category": "palette",
|
|
3764
|
+
"type": "light",
|
|
3765
|
+
"item": "success",
|
|
3766
|
+
"subitem": "bg",
|
|
3767
|
+
"state": "weak"
|
|
3768
|
+
},
|
|
3769
|
+
"path": [
|
|
3770
|
+
"palette",
|
|
3771
|
+
"light",
|
|
3772
|
+
"success",
|
|
3773
|
+
"bg",
|
|
3774
|
+
"weak"
|
|
3775
|
+
]
|
|
3776
|
+
}
|
|
3777
|
+
},
|
|
3778
|
+
"border": {
|
|
3779
|
+
"strong": {
|
|
3780
|
+
"value": "#327D60",
|
|
3781
|
+
"description": "Use sparsely. Only used for outlined labels",
|
|
3782
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3783
|
+
"isSource": true,
|
|
3784
|
+
"original": {
|
|
3785
|
+
"value": "{colors.success.50.value}",
|
|
3786
|
+
"description": "Use sparsely. Only used for outlined labels"
|
|
3787
|
+
},
|
|
3788
|
+
"name": "PaletteLightSuccessBorderStrong",
|
|
3789
|
+
"attributes": {
|
|
3790
|
+
"category": "palette",
|
|
3791
|
+
"type": "light",
|
|
3792
|
+
"item": "success",
|
|
3793
|
+
"subitem": "border",
|
|
3794
|
+
"state": "strong"
|
|
3795
|
+
},
|
|
3796
|
+
"path": [
|
|
3797
|
+
"palette",
|
|
3798
|
+
"light",
|
|
3799
|
+
"success",
|
|
3800
|
+
"border",
|
|
3801
|
+
"strong"
|
|
3802
|
+
]
|
|
3803
|
+
},
|
|
3804
|
+
"weak": {
|
|
3805
|
+
"value": "#98EDCB",
|
|
3806
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Success-bg-weak to stand out more from the background",
|
|
3807
|
+
"filePath": "src/tokens/lightPalette.json",
|
|
3808
|
+
"isSource": true,
|
|
3809
|
+
"original": {
|
|
3810
|
+
"value": "{colors.success.20.value}",
|
|
3811
|
+
"description": "Use sparsely. Mainly used in combination with elements that use the Success-bg-weak to stand out more from the background"
|
|
3812
|
+
},
|
|
3813
|
+
"name": "PaletteLightSuccessBorderWeak",
|
|
3814
|
+
"attributes": {
|
|
3815
|
+
"category": "palette",
|
|
3816
|
+
"type": "light",
|
|
3817
|
+
"item": "success",
|
|
3818
|
+
"subitem": "border",
|
|
3819
|
+
"state": "weak"
|
|
3820
|
+
},
|
|
3821
|
+
"path": [
|
|
3822
|
+
"palette",
|
|
3823
|
+
"light",
|
|
3824
|
+
"success",
|
|
3825
|
+
"border",
|
|
3826
|
+
"weak"
|
|
3827
|
+
]
|
|
3828
|
+
}
|
|
3829
|
+
}
|
|
3830
|
+
}
|
|
3831
|
+
}
|
|
3832
|
+
},
|
|
3833
|
+
"font": {
|
|
3834
|
+
"size": {
|
|
3835
|
+
"h1": {
|
|
3836
|
+
"value": "3rem",
|
|
3837
|
+
"description": "Do not use, mainly for web",
|
|
3838
|
+
"filePath": "src/tokens/fonts.json",
|
|
3839
|
+
"isSource": true,
|
|
3840
|
+
"original": {
|
|
3841
|
+
"value": "3rem",
|
|
3842
|
+
"description": "Do not use, mainly for web"
|
|
3843
|
+
},
|
|
3844
|
+
"name": "FontSizeH1",
|
|
3845
|
+
"attributes": {
|
|
3846
|
+
"category": "font",
|
|
3847
|
+
"type": "size",
|
|
3848
|
+
"item": "h1"
|
|
3849
|
+
},
|
|
3850
|
+
"path": [
|
|
3851
|
+
"font",
|
|
3852
|
+
"size",
|
|
3853
|
+
"h1"
|
|
3854
|
+
]
|
|
3855
|
+
},
|
|
3856
|
+
"h2": {
|
|
3857
|
+
"value": "2.5rem",
|
|
3858
|
+
"description": "Use for page headers",
|
|
3859
|
+
"filePath": "src/tokens/fonts.json",
|
|
3860
|
+
"isSource": true,
|
|
3861
|
+
"original": {
|
|
3862
|
+
"value": "2.5rem",
|
|
3863
|
+
"description": "Use for page headers"
|
|
3864
|
+
},
|
|
3865
|
+
"name": "FontSizeH2",
|
|
3866
|
+
"attributes": {
|
|
3867
|
+
"category": "font",
|
|
3868
|
+
"type": "size",
|
|
3869
|
+
"item": "h2"
|
|
3870
|
+
},
|
|
3871
|
+
"path": [
|
|
3872
|
+
"font",
|
|
3873
|
+
"size",
|
|
3874
|
+
"h2"
|
|
3875
|
+
]
|
|
3876
|
+
},
|
|
3877
|
+
"h3": {
|
|
3878
|
+
"value": "1.875rem",
|
|
3879
|
+
"description": "Use cautiously. Used for larger container header such as login screen and dialogs",
|
|
3880
|
+
"filePath": "src/tokens/fonts.json",
|
|
3881
|
+
"isSource": true,
|
|
3882
|
+
"original": {
|
|
3883
|
+
"value": "1.875rem",
|
|
3884
|
+
"description": "Use cautiously. Used for larger container header such as login screen and dialogs"
|
|
3885
|
+
},
|
|
3886
|
+
"name": "FontSizeH3",
|
|
3887
|
+
"attributes": {
|
|
3888
|
+
"category": "font",
|
|
3889
|
+
"type": "size",
|
|
3890
|
+
"item": "h3"
|
|
3891
|
+
},
|
|
3892
|
+
"path": [
|
|
3893
|
+
"font",
|
|
3894
|
+
"size",
|
|
3895
|
+
"h3"
|
|
3896
|
+
]
|
|
3897
|
+
},
|
|
3898
|
+
"h4": {
|
|
3899
|
+
"value": "1.5rem",
|
|
3900
|
+
"description": "Use cautiously. Not used in any components",
|
|
3901
|
+
"filePath": "src/tokens/fonts.json",
|
|
3902
|
+
"isSource": true,
|
|
3903
|
+
"original": {
|
|
3904
|
+
"value": "1.5rem",
|
|
3905
|
+
"description": "Use cautiously. Not used in any components"
|
|
3906
|
+
},
|
|
3907
|
+
"name": "FontSizeH4",
|
|
3908
|
+
"attributes": {
|
|
3909
|
+
"category": "font",
|
|
3910
|
+
"type": "size",
|
|
3911
|
+
"item": "h4"
|
|
3912
|
+
},
|
|
3913
|
+
"path": [
|
|
3914
|
+
"font",
|
|
3915
|
+
"size",
|
|
3916
|
+
"h4"
|
|
3917
|
+
]
|
|
3918
|
+
},
|
|
3919
|
+
"h5": {
|
|
3920
|
+
"value": "1.25rem",
|
|
3921
|
+
"description": "Used for larger containers such as drag & drop and drawer. Use instead of H3 if you want a more compact layout with less spacing and padding inside the container",
|
|
3922
|
+
"filePath": "src/tokens/fonts.json",
|
|
3923
|
+
"isSource": true,
|
|
3924
|
+
"original": {
|
|
3925
|
+
"value": "1.25rem",
|
|
3926
|
+
"description": "Used for larger containers such as drag & drop and drawer. Use instead of H3 if you want a more compact layout with less spacing and padding inside the container"
|
|
3927
|
+
},
|
|
3928
|
+
"name": "FontSizeH5",
|
|
3929
|
+
"attributes": {
|
|
3930
|
+
"category": "font",
|
|
3931
|
+
"type": "size",
|
|
3932
|
+
"item": "h5"
|
|
3933
|
+
},
|
|
3934
|
+
"path": [
|
|
3935
|
+
"font",
|
|
3936
|
+
"size",
|
|
3937
|
+
"h5"
|
|
3938
|
+
]
|
|
3939
|
+
},
|
|
3940
|
+
"h6": {
|
|
3941
|
+
"value": "1rem",
|
|
3942
|
+
"description": "Common smaller header. Used in banner, buttons, context menu, widget and wizard",
|
|
3943
|
+
"filePath": "src/tokens/fonts.json",
|
|
3944
|
+
"isSource": true,
|
|
3945
|
+
"original": {
|
|
3946
|
+
"value": "1rem",
|
|
3947
|
+
"description": "Common smaller header. Used in banner, buttons, context menu, widget and wizard"
|
|
3948
|
+
},
|
|
3949
|
+
"name": "FontSizeH6",
|
|
3950
|
+
"attributes": {
|
|
3951
|
+
"category": "font",
|
|
3952
|
+
"type": "size",
|
|
3953
|
+
"item": "h6"
|
|
3954
|
+
},
|
|
3955
|
+
"path": [
|
|
3956
|
+
"font",
|
|
3957
|
+
"size",
|
|
3958
|
+
"h6"
|
|
3959
|
+
]
|
|
3960
|
+
},
|
|
3961
|
+
"subheading-large": {
|
|
3962
|
+
"value": "1.25rem",
|
|
3963
|
+
"description": "Pair with larger headers. Not used in any components",
|
|
3964
|
+
"filePath": "src/tokens/fonts.json",
|
|
3965
|
+
"isSource": true,
|
|
3966
|
+
"original": {
|
|
3967
|
+
"value": "1.25rem",
|
|
3968
|
+
"description": "Pair with larger headers. Not used in any components"
|
|
3969
|
+
},
|
|
3970
|
+
"name": "FontSizeSubheadingLarge",
|
|
3971
|
+
"attributes": {
|
|
3972
|
+
"category": "font",
|
|
3973
|
+
"type": "size",
|
|
3974
|
+
"item": "subheading-large"
|
|
3975
|
+
},
|
|
3976
|
+
"path": [
|
|
3977
|
+
"font",
|
|
3978
|
+
"size",
|
|
3979
|
+
"subheading-large"
|
|
3980
|
+
]
|
|
3981
|
+
},
|
|
3982
|
+
"subheading-medium": {
|
|
3983
|
+
"value": "1rem",
|
|
3984
|
+
"description": "Use with medium sized headers or as a header of its own. Is used as header in smaller components and as a selected state to differentiate from body text. Is used in view selector, tabs and code block",
|
|
3985
|
+
"filePath": "src/tokens/fonts.json",
|
|
3986
|
+
"isSource": true,
|
|
3987
|
+
"original": {
|
|
3988
|
+
"value": "1rem",
|
|
3989
|
+
"description": "Use with medium sized headers or as a header of its own. Is used as header in smaller components and as a selected state to differentiate from body text. Is used in view selector, tabs and code block"
|
|
3990
|
+
},
|
|
3991
|
+
"name": "FontSizeSubheadingMedium",
|
|
3992
|
+
"attributes": {
|
|
3993
|
+
"category": "font",
|
|
3994
|
+
"type": "size",
|
|
3995
|
+
"item": "subheading-medium"
|
|
3996
|
+
},
|
|
3997
|
+
"path": [
|
|
3998
|
+
"font",
|
|
3999
|
+
"size",
|
|
4000
|
+
"subheading-medium"
|
|
4001
|
+
]
|
|
4002
|
+
},
|
|
4003
|
+
"subheading-small": {
|
|
4004
|
+
"value": "0.875rem",
|
|
4005
|
+
"description": "Use cautiously. Not used in any components",
|
|
4006
|
+
"filePath": "src/tokens/fonts.json",
|
|
4007
|
+
"isSource": true,
|
|
4008
|
+
"original": {
|
|
4009
|
+
"value": "0.875rem",
|
|
4010
|
+
"description": "Use cautiously. Not used in any components"
|
|
4011
|
+
},
|
|
4012
|
+
"name": "FontSizeSubheadingSmall",
|
|
4013
|
+
"attributes": {
|
|
4014
|
+
"category": "font",
|
|
4015
|
+
"type": "size",
|
|
4016
|
+
"item": "subheading-small"
|
|
4017
|
+
},
|
|
4018
|
+
"path": [
|
|
4019
|
+
"font",
|
|
4020
|
+
"size",
|
|
4021
|
+
"subheading-small"
|
|
4022
|
+
]
|
|
4023
|
+
},
|
|
4024
|
+
"body-large": {
|
|
4025
|
+
"value": "1rem",
|
|
4026
|
+
"description": "Use cautiously. Mainly used as the base font in web experiences. Can be used when wanting to create a subtle hierarchy such as in tables, dialogs. Is also used in some components where we provide a size “large”",
|
|
4027
|
+
"filePath": "src/tokens/fonts.json",
|
|
4028
|
+
"isSource": true,
|
|
4029
|
+
"original": {
|
|
4030
|
+
"value": "1rem",
|
|
4031
|
+
"description": "Use cautiously. Mainly used as the base font in web experiences. Can be used when wanting to create a subtle hierarchy such as in tables, dialogs. Is also used in some components where we provide a size “large”"
|
|
4032
|
+
},
|
|
4033
|
+
"name": "FontSizeBodyLarge",
|
|
4034
|
+
"attributes": {
|
|
4035
|
+
"category": "font",
|
|
4036
|
+
"type": "size",
|
|
4037
|
+
"item": "body-large"
|
|
4038
|
+
},
|
|
4039
|
+
"path": [
|
|
4040
|
+
"font",
|
|
4041
|
+
"size",
|
|
4042
|
+
"body-large"
|
|
4043
|
+
]
|
|
4044
|
+
},
|
|
4045
|
+
"body-medium": {
|
|
4046
|
+
"value": "0.875rem",
|
|
4047
|
+
"description": "This is the base font and should be used as much as possible",
|
|
4048
|
+
"filePath": "src/tokens/fonts.json",
|
|
4049
|
+
"isSource": true,
|
|
4050
|
+
"original": {
|
|
4051
|
+
"value": "0.875rem",
|
|
4052
|
+
"description": "This is the base font and should be used as much as possible"
|
|
4053
|
+
},
|
|
4054
|
+
"name": "FontSizeBodyMedium",
|
|
4055
|
+
"attributes": {
|
|
4056
|
+
"category": "font",
|
|
4057
|
+
"type": "size",
|
|
4058
|
+
"item": "body-medium"
|
|
4059
|
+
},
|
|
4060
|
+
"path": [
|
|
4061
|
+
"font",
|
|
4062
|
+
"size",
|
|
4063
|
+
"body-medium"
|
|
4064
|
+
]
|
|
4065
|
+
},
|
|
4066
|
+
"body-small": {
|
|
4067
|
+
"value": "0.75rem",
|
|
4068
|
+
"description": "Smallest accessible font. Use when having little space or crowded layouts.Examples include charts (widgets) and help texts",
|
|
4069
|
+
"filePath": "src/tokens/fonts.json",
|
|
4070
|
+
"isSource": true,
|
|
4071
|
+
"original": {
|
|
4072
|
+
"value": "0.75rem",
|
|
4073
|
+
"description": "Smallest accessible font. Use when having little space or crowded layouts.Examples include charts (widgets) and help texts"
|
|
4074
|
+
},
|
|
4075
|
+
"name": "FontSizeBodySmall",
|
|
4076
|
+
"attributes": {
|
|
4077
|
+
"category": "font",
|
|
4078
|
+
"type": "size",
|
|
4079
|
+
"item": "body-small"
|
|
4080
|
+
},
|
|
4081
|
+
"path": [
|
|
4082
|
+
"font",
|
|
4083
|
+
"size",
|
|
4084
|
+
"body-small"
|
|
4085
|
+
]
|
|
4086
|
+
},
|
|
4087
|
+
"code": {
|
|
4088
|
+
"value": "0.875rem",
|
|
4089
|
+
"description": "Base font for code. Uses the same font size as the base font for regular text (body/medium)",
|
|
4090
|
+
"filePath": "src/tokens/fonts.json",
|
|
4091
|
+
"isSource": true,
|
|
4092
|
+
"original": {
|
|
4093
|
+
"value": "0.875rem",
|
|
4094
|
+
"description": "Base font for code. Uses the same font size as the base font for regular text (body/medium)"
|
|
4095
|
+
},
|
|
4096
|
+
"name": "FontSizeCode",
|
|
4097
|
+
"attributes": {
|
|
4098
|
+
"category": "font",
|
|
4099
|
+
"type": "size",
|
|
4100
|
+
"item": "code"
|
|
4101
|
+
},
|
|
4102
|
+
"path": [
|
|
4103
|
+
"font",
|
|
4104
|
+
"size",
|
|
4105
|
+
"code"
|
|
4106
|
+
]
|
|
4107
|
+
},
|
|
4108
|
+
"label": {
|
|
4109
|
+
"value": "0.875rem",
|
|
4110
|
+
"description": "Mainly used for the label component but can also be used when needing a bold label inside a small component or space",
|
|
4111
|
+
"filePath": "src/tokens/fonts.json",
|
|
4112
|
+
"isSource": true,
|
|
4113
|
+
"original": {
|
|
4114
|
+
"value": "0.875rem",
|
|
4115
|
+
"description": "Mainly used for the label component but can also be used when needing a bold label inside a small component or space"
|
|
4116
|
+
},
|
|
4117
|
+
"name": "FontSizeLabel",
|
|
4118
|
+
"attributes": {
|
|
4119
|
+
"category": "font",
|
|
4120
|
+
"type": "size",
|
|
4121
|
+
"item": "label"
|
|
4122
|
+
},
|
|
4123
|
+
"path": [
|
|
4124
|
+
"font",
|
|
4125
|
+
"size",
|
|
4126
|
+
"label"
|
|
4127
|
+
]
|
|
4128
|
+
}
|
|
4129
|
+
},
|
|
4130
|
+
"weight": {
|
|
4131
|
+
"bold": {
|
|
4132
|
+
"value": "700",
|
|
4133
|
+
"filePath": "src/tokens/fonts.json",
|
|
4134
|
+
"isSource": true,
|
|
4135
|
+
"original": {
|
|
4136
|
+
"value": "700"
|
|
4137
|
+
},
|
|
4138
|
+
"name": "FontWeightBold",
|
|
4139
|
+
"attributes": {
|
|
4140
|
+
"category": "font",
|
|
4141
|
+
"type": "weight",
|
|
4142
|
+
"item": "bold"
|
|
4143
|
+
},
|
|
4144
|
+
"path": [
|
|
4145
|
+
"font",
|
|
4146
|
+
"weight",
|
|
4147
|
+
"bold"
|
|
4148
|
+
]
|
|
4149
|
+
},
|
|
4150
|
+
"semibold": {
|
|
4151
|
+
"value": "600",
|
|
4152
|
+
"filePath": "src/tokens/fonts.json",
|
|
4153
|
+
"isSource": true,
|
|
4154
|
+
"original": {
|
|
4155
|
+
"value": "600"
|
|
4156
|
+
},
|
|
4157
|
+
"name": "FontWeightSemibold",
|
|
4158
|
+
"attributes": {
|
|
4159
|
+
"category": "font",
|
|
4160
|
+
"type": "weight",
|
|
4161
|
+
"item": "semibold"
|
|
4162
|
+
},
|
|
4163
|
+
"path": [
|
|
4164
|
+
"font",
|
|
4165
|
+
"weight",
|
|
4166
|
+
"semibold"
|
|
4167
|
+
]
|
|
4168
|
+
},
|
|
4169
|
+
"normal": {
|
|
4170
|
+
"value": "400",
|
|
4171
|
+
"filePath": "src/tokens/fonts.json",
|
|
4172
|
+
"isSource": true,
|
|
4173
|
+
"original": {
|
|
4174
|
+
"value": "400"
|
|
4175
|
+
},
|
|
4176
|
+
"name": "FontWeightNormal",
|
|
4177
|
+
"attributes": {
|
|
4178
|
+
"category": "font",
|
|
4179
|
+
"type": "weight",
|
|
4180
|
+
"item": "normal"
|
|
4181
|
+
},
|
|
4182
|
+
"path": [
|
|
4183
|
+
"font",
|
|
4184
|
+
"weight",
|
|
4185
|
+
"normal"
|
|
4186
|
+
]
|
|
4187
|
+
},
|
|
4188
|
+
"medium": {
|
|
4189
|
+
"value": "500",
|
|
4190
|
+
"filePath": "src/tokens/fonts.json",
|
|
4191
|
+
"isSource": true,
|
|
4192
|
+
"original": {
|
|
4193
|
+
"value": "500"
|
|
4194
|
+
},
|
|
4195
|
+
"name": "FontWeightMedium",
|
|
4196
|
+
"attributes": {
|
|
4197
|
+
"category": "font",
|
|
4198
|
+
"type": "weight",
|
|
4199
|
+
"item": "medium"
|
|
4200
|
+
},
|
|
4201
|
+
"path": [
|
|
4202
|
+
"font",
|
|
4203
|
+
"weight",
|
|
4204
|
+
"medium"
|
|
4205
|
+
]
|
|
4206
|
+
},
|
|
4207
|
+
"light": {
|
|
4208
|
+
"value": "300",
|
|
4209
|
+
"filePath": "src/tokens/fonts.json",
|
|
4210
|
+
"isSource": true,
|
|
4211
|
+
"original": {
|
|
4212
|
+
"value": "300"
|
|
4213
|
+
},
|
|
4214
|
+
"name": "FontWeightLight",
|
|
4215
|
+
"attributes": {
|
|
4216
|
+
"category": "font",
|
|
4217
|
+
"type": "weight",
|
|
4218
|
+
"item": "light"
|
|
4219
|
+
},
|
|
4220
|
+
"path": [
|
|
4221
|
+
"font",
|
|
4222
|
+
"weight",
|
|
4223
|
+
"light"
|
|
4224
|
+
]
|
|
2862
4225
|
}
|
|
2863
4226
|
}
|
|
2864
4227
|
},
|
|
2865
4228
|
"boxShadow": {
|
|
2866
4229
|
"l2": {
|
|
2867
4230
|
"value": "0px 1px 2px 0px rgba(12, 26, 37, 0.18)",
|
|
4231
|
+
"description": "Used for small components that need sharper shadows to illustrate elevation. Only switch is using level 2",
|
|
2868
4232
|
"filePath": "src/tokens/shadows.json",
|
|
2869
4233
|
"isSource": true,
|
|
2870
4234
|
"original": {
|
|
2871
|
-
"value": "0px 1px 2px 0px rgba(12, 26, 37, 0.18)"
|
|
4235
|
+
"value": "0px 1px 2px 0px rgba(12, 26, 37, 0.18)",
|
|
4236
|
+
"description": "Used for small components that need sharper shadows to illustrate elevation. Only switch is using level 2"
|
|
2872
4237
|
},
|
|
2873
4238
|
"name": "BoxShadowL2",
|
|
2874
4239
|
"attributes": {
|
|
@@ -2882,10 +4247,12 @@ module.exports = {
|
|
|
2882
4247
|
},
|
|
2883
4248
|
"l3": {
|
|
2884
4249
|
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.04)",
|
|
4250
|
+
"description": "Not used in any components, do not use it since it will most likely be removed",
|
|
2885
4251
|
"filePath": "src/tokens/shadows.json",
|
|
2886
4252
|
"isSource": true,
|
|
2887
4253
|
"original": {
|
|
2888
|
-
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.04)"
|
|
4254
|
+
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.04)",
|
|
4255
|
+
"description": "Not used in any components, do not use it since it will most likely be removed"
|
|
2889
4256
|
},
|
|
2890
4257
|
"name": "BoxShadowL3",
|
|
2891
4258
|
"attributes": {
|
|
@@ -2899,10 +4266,12 @@ module.exports = {
|
|
|
2899
4266
|
},
|
|
2900
4267
|
"l4": {
|
|
2901
4268
|
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.08)",
|
|
4269
|
+
"description": "Used for most mid/large sized components with floating states. Components include banner, button, card, drop down, progress bar and view selector",
|
|
2902
4270
|
"filePath": "src/tokens/shadows.json",
|
|
2903
4271
|
"isSource": true,
|
|
2904
4272
|
"original": {
|
|
2905
|
-
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.08)"
|
|
4273
|
+
"value": "0px 4px 8px 0px rgba(12, 26, 37, 0.08)",
|
|
4274
|
+
"description": "Used for most mid/large sized components with floating states. Components include banner, button, card, drop down, progress bar and view selector"
|
|
2906
4275
|
},
|
|
2907
4276
|
"name": "BoxShadowL4",
|
|
2908
4277
|
"attributes": {
|
|
@@ -2916,10 +4285,12 @@ module.exports = {
|
|
|
2916
4285
|
},
|
|
2917
4286
|
"l5": {
|
|
2918
4287
|
"value": "0px 8px 20px 0px rgba(12, 26, 37, 0.12)",
|
|
4288
|
+
"description": "Use for large containers such as dialogs, login screens and context menus",
|
|
2919
4289
|
"filePath": "src/tokens/shadows.json",
|
|
2920
4290
|
"isSource": true,
|
|
2921
4291
|
"original": {
|
|
2922
|
-
"value": "0px 8px 20px 0px rgba(12, 26, 37, 0.12)"
|
|
4292
|
+
"value": "0px 8px 20px 0px rgba(12, 26, 37, 0.12)",
|
|
4293
|
+
"description": "Use for large containers such as dialogs, login screens and context menus"
|
|
2923
4294
|
},
|
|
2924
4295
|
"name": "BoxShadowL5",
|
|
2925
4296
|
"attributes": {
|