@aurodesignsystem/design-tokens 4.5.0 → 4.6.1
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 +21 -0
- package/README.md +5 -1
- package/dist/tokens/CSSCustomProperties.css +10 -10
- package/dist/tokens/CSSSizeCustomProperties.css +1 -1
- package/dist/tokens/JSData--color.js +239 -221
- package/dist/tokens/JSONVariablesFlat.json +9 -9
- package/dist/tokens/JSONVariablesNested.json +18 -16
- package/dist/tokens/JSObject--allTokens.js +239 -221
- package/dist/tokens/JSObject--deprecated.js +1 -1
- package/dist/tokens/JSVariables--color.js +10 -10
- package/dist/tokens/SCSSVariableMap.scss +1 -1
- package/dist/tokens/SCSSVariables.scss +10 -10
- package/dist/tokens/SCSSVariablesMapFlat.scss +10 -10
- package/dist/tokens/SassCustomProperties.scss +10 -10
- package/dist/tokens/SassSizeCustomProperties.scss +1 -1
- package/dist/tokens/darkmode/CSSCustomProperties.css +1 -1
- package/dist/tokens/darkmode/JSDataColor.js +1 -1
- package/dist/tokens/darkmode/JSObject--deprecatedDark.js +1 -1
- package/dist/tokens/darkmode/JSVariablesColor.js +1 -1
- package/dist/tokens/darkmode/SCSSVariables.scss +1 -1
- package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +1 -1
- package/dist/tokens/darkmode/SassCustomProperties.scss +1 -1
- package/dist/tokens/excursion/JSONVariablesFlat.json +699 -30
- package/dist/tokens/excursion/JSONVariablesNested.json +1156 -39
- package/package.json +1 -1
- package/src/color/background.json +69 -67
- package/src/color/icon.json +1 -1
- package/src/themes/excursion/animation.json +21 -0
- package/src/themes/excursion/asset/font.json +35 -0
- package/src/themes/excursion/color/alert.json +90 -0
- package/src/themes/excursion/color/background.json +208 -1
- package/src/themes/excursion/color/base.json +1295 -226
- package/src/themes/excursion/color/border.json +288 -0
- package/src/themes/excursion/color/brand.json +1388 -93
- package/src/themes/excursion/color/container.json +464 -0
- package/src/themes/excursion/color/excursion.json +254 -0
- package/src/themes/excursion/color/icon.json +476 -0
- package/src/themes/excursion/color/text.json +270 -0
- package/src/themes/excursion/color/tier.json +180 -0
- package/src/themes/excursion/color/ui.json +125 -0
- package/src/themes/excursion/comments.json +34 -0
- package/src/themes/excursion/depth copy.json +22 -0
- package/src/themes/excursion/elevation.json +22 -0
- package/src/themes/excursion/grid-breakpoint.json +29 -0
- package/src/themes/excursion/grid-column.json +29 -0
- package/src/themes/excursion/grid-gutter.json +29 -0
- package/src/themes/excursion/grid-margin.json +29 -0
- package/src/themes/excursion/size/radius.json +9 -0
- package/src/themes/excursion/size/scale.json +234 -0
- package/src/themes/excursion/size/unitless-scale.json +82 -0
- package/src/themes/excursion/text.json +572 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
## [4.6.1](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v4.6.0...v4.6.1) (2024-05-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **iconSuccess:** update icon success to use correct base color #[#162](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/162) ([f4f0d4b](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/f4f0d4bcc59305ed77ea3b33dc19dd32982f6b6e))
|
|
9
|
+
|
|
10
|
+
# [4.6.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v4.5.0...v4.6.0) (2024-05-28)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add all tier 2 excursion tokens [#153](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/153) ([c9957da](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/c9957da1a6b683807f19c6c618d137238db9bd90))
|
|
16
|
+
* add full list of excursion tier 1 tokens [#153](https://github.com/AlaskaAirlines/AuroDesignTokens/issues/153) ([7909ad3](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/7909ad3155a3ddfdbca9303197a75cb8662556f1))
|
|
17
|
+
* **background:** add additional name convention for theme support ([49fa189](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/49fa189cbd20ec777994f9819739e9a6862a2d3e))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Performance Improvements
|
|
21
|
+
|
|
22
|
+
* add all non color classic tokens to excursion theme ([a6ffc04](https://github.com/AlaskaAirlines/AuroDesignTokens/commit/a6ffc0459e407500a9102a814d5b89059b1612df))
|
|
23
|
+
|
|
3
24
|
# [4.5.0](https://github.com/AlaskaAirlines/AuroDesignTokens/compare/v4.4.0...v4.5.0) (2024-05-23)
|
|
4
25
|
|
|
5
26
|
|
package/README.md
CHANGED
|
@@ -37,11 +37,15 @@ Pre-processed resources are available in the `./dist/tokens` directory of the [n
|
|
|
37
37
|
| ├── SCSSVariables.scss
|
|
38
38
|
| ├── SCSSVariablesMapFlat.scss
|
|
39
39
|
| └── SassCustomProperties.scss
|
|
40
|
-
└── excursion
|
|
40
|
+
└── excursion (BETA)
|
|
41
41
|
├── JSONVariablesFlat.json
|
|
42
42
|
└── JSONVariablesNested.json
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
+
### BETA Excursion release
|
|
46
|
+
|
|
47
|
+
Auro Design Tokens v4.5.x includes some changes to existing token values as well as the inclusion of the new Excursion theme. This new theme is to be considered a BETA release with limited use. For all primary Auro UIs, please continue to use the primary Auro design tokens. Excursion is only intended for UIs that are being custom built to support this new UI with limited release. Expect significant changes in this space WITHOUT a MAJOR release. **You have been warned**.
|
|
48
|
+
|
|
45
49
|
### Resource Descriptions
|
|
46
50
|
|
|
47
51
|
| File | Syntax | Type | Status | Filter Type / Description |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 28 May 2024 20:49:13 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -159,14 +159,14 @@
|
|
|
159
159
|
--ds-color-alert-advisory-default: #fff0cd;
|
|
160
160
|
--ds-color-alert-bkg-success-default: #ddf6e8;
|
|
161
161
|
--ds-color-alert-bkg-error-default: #ffedf1;
|
|
162
|
-
--ds-color-background-100-default: #ffffff;
|
|
163
|
-
--ds-color-background-100-inverse: #0e2b4f;
|
|
164
|
-
--ds-color-background-200-default: #f7f7f7;
|
|
165
|
-
--ds-color-background-200-inverse: #194069;
|
|
166
|
-
--ds-color-background-300-default: #e4e8ec;
|
|
167
|
-
--ds-color-background-300-inverse: #265688;
|
|
168
|
-
--ds-color-background-400-default: #dddddd;
|
|
169
|
-
--ds-color-background-400-inverse: #326aa5;
|
|
162
|
+
--ds-color-background-primary-100-default: #ffffff;
|
|
163
|
+
--ds-color-background-primary-100-inverse: #0e2b4f;
|
|
164
|
+
--ds-color-background-primary-200-default: #f7f7f7;
|
|
165
|
+
--ds-color-background-primary-200-inverse: #194069;
|
|
166
|
+
--ds-color-background-primary-300-default: #e4e8ec;
|
|
167
|
+
--ds-color-background-primary-300-inverse: #265688;
|
|
168
|
+
--ds-color-background-primary-400-default: #dddddd;
|
|
169
|
+
--ds-color-background-primary-400-inverse: #326aa5;
|
|
170
170
|
--ds-color-background-success-default: #eef8f5;
|
|
171
171
|
--ds-color-background-success-inverse: #173c30;
|
|
172
172
|
--ds-color-background-error-default: #fff4f4;
|
|
@@ -1841,7 +1841,7 @@
|
|
|
1841
1841
|
--ds-color-icon-error-inverse: #f9aca6;
|
|
1842
1842
|
--ds-color-icon-warning-default: #fef8e9;
|
|
1843
1843
|
--ds-color-icon-warning-inverse: #f2c153;
|
|
1844
|
-
--ds-color-icon-success-default: #
|
|
1844
|
+
--ds-color-icon-success-default: #40a080;
|
|
1845
1845
|
--ds-color-icon-success-inverse: #8eceb9;
|
|
1846
1846
|
--ds-color-icon-subtle-default: #a0c9f1;
|
|
1847
1847
|
--ds-color-icon-subtle-inverse: #326aa5;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 28 May 2024 20:49:13 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
@@ -267,260 +267,278 @@ module.exports = {
|
|
|
267
267
|
}
|
|
268
268
|
},
|
|
269
269
|
"background": {
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
274
|
-
"default": true,
|
|
275
|
-
"usage": "Used for creating light backgrounds",
|
|
276
|
-
"wcag": "n/a",
|
|
277
|
-
"deprecated": false,
|
|
278
|
-
"filePath": "src/color/background.json",
|
|
279
|
-
"isSource": true,
|
|
280
|
-
"original": {
|
|
281
|
-
"value": "{color.base.white.value}",
|
|
270
|
+
"primary": {
|
|
271
|
+
"100": {
|
|
272
|
+
"default": {
|
|
273
|
+
"value": "#ffffff",
|
|
282
274
|
"public": true,
|
|
283
275
|
"default": true,
|
|
284
276
|
"usage": "Used for creating light backgrounds",
|
|
285
277
|
"wcag": "n/a",
|
|
286
|
-
"deprecated": false
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
278
|
+
"deprecated": false,
|
|
279
|
+
"filePath": "src/color/background.json",
|
|
280
|
+
"isSource": true,
|
|
281
|
+
"original": {
|
|
282
|
+
"value": "{color.base.white.value}",
|
|
283
|
+
"public": true,
|
|
284
|
+
"default": true,
|
|
285
|
+
"usage": "Used for creating light backgrounds",
|
|
286
|
+
"wcag": "n/a",
|
|
287
|
+
"deprecated": false
|
|
288
|
+
},
|
|
289
|
+
"name": "ds-color-background-primary-100-default",
|
|
290
|
+
"attributes": {
|
|
291
|
+
"category": "color",
|
|
292
|
+
"type": "background",
|
|
293
|
+
"item": "primary",
|
|
294
|
+
"subitem": "100",
|
|
295
|
+
"state": "default"
|
|
296
|
+
},
|
|
297
|
+
"path": [
|
|
298
|
+
"color",
|
|
299
|
+
"background",
|
|
300
|
+
"primary",
|
|
301
|
+
"100",
|
|
302
|
+
"default"
|
|
303
|
+
]
|
|
294
304
|
},
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"background",
|
|
298
|
-
"100",
|
|
299
|
-
"default"
|
|
300
|
-
]
|
|
301
|
-
},
|
|
302
|
-
"inverse": {
|
|
303
|
-
"value": "#0e2b4f",
|
|
304
|
-
"public": true,
|
|
305
|
-
"inverse": true,
|
|
306
|
-
"usage": "Used for creating dark backgrounds",
|
|
307
|
-
"wcag": "n/a",
|
|
308
|
-
"deprecated": false,
|
|
309
|
-
"filePath": "src/color/background.json",
|
|
310
|
-
"isSource": true,
|
|
311
|
-
"original": {
|
|
312
|
-
"value": "{color.brand.navy.1000.value}",
|
|
305
|
+
"inverse": {
|
|
306
|
+
"value": "#0e2b4f",
|
|
313
307
|
"public": true,
|
|
314
308
|
"inverse": true,
|
|
315
309
|
"usage": "Used for creating dark backgrounds",
|
|
316
310
|
"wcag": "n/a",
|
|
317
|
-
"deprecated": false
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
"background",
|
|
329
|
-
"
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
311
|
+
"deprecated": false,
|
|
312
|
+
"filePath": "src/color/background.json",
|
|
313
|
+
"isSource": true,
|
|
314
|
+
"original": {
|
|
315
|
+
"value": "{color.brand.navy.1000.value}",
|
|
316
|
+
"public": true,
|
|
317
|
+
"inverse": true,
|
|
318
|
+
"usage": "Used for creating dark backgrounds",
|
|
319
|
+
"wcag": "n/a",
|
|
320
|
+
"deprecated": false
|
|
321
|
+
},
|
|
322
|
+
"name": "ds-color-background-primary-100-inverse",
|
|
323
|
+
"attributes": {
|
|
324
|
+
"category": "color",
|
|
325
|
+
"type": "background",
|
|
326
|
+
"item": "primary",
|
|
327
|
+
"subitem": "100",
|
|
328
|
+
"state": "inverse"
|
|
329
|
+
},
|
|
330
|
+
"path": [
|
|
331
|
+
"color",
|
|
332
|
+
"background",
|
|
333
|
+
"primary",
|
|
334
|
+
"100",
|
|
335
|
+
"inverse"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"200": {
|
|
340
|
+
"default": {
|
|
341
|
+
"value": "#f7f7f7",
|
|
346
342
|
"public": true,
|
|
347
343
|
"default": true,
|
|
348
344
|
"usage": "Used for creating light backgrounds",
|
|
349
345
|
"wcag": "n/a",
|
|
350
|
-
"deprecated": false
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
346
|
+
"deprecated": false,
|
|
347
|
+
"filePath": "src/color/background.json",
|
|
348
|
+
"isSource": true,
|
|
349
|
+
"original": {
|
|
350
|
+
"value": "{color.brand.gray.100.value}",
|
|
351
|
+
"public": true,
|
|
352
|
+
"default": true,
|
|
353
|
+
"usage": "Used for creating light backgrounds",
|
|
354
|
+
"wcag": "n/a",
|
|
355
|
+
"deprecated": false
|
|
356
|
+
},
|
|
357
|
+
"name": "ds-color-background-primary-200-default",
|
|
358
|
+
"attributes": {
|
|
359
|
+
"category": "color",
|
|
360
|
+
"type": "background",
|
|
361
|
+
"item": "primary",
|
|
362
|
+
"subitem": "200",
|
|
363
|
+
"state": "default"
|
|
364
|
+
},
|
|
365
|
+
"path": [
|
|
366
|
+
"color",
|
|
367
|
+
"background",
|
|
368
|
+
"primary",
|
|
369
|
+
"200",
|
|
370
|
+
"default"
|
|
371
|
+
]
|
|
358
372
|
},
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"background",
|
|
362
|
-
"200",
|
|
363
|
-
"default"
|
|
364
|
-
]
|
|
365
|
-
},
|
|
366
|
-
"inverse": {
|
|
367
|
-
"value": "#194069",
|
|
368
|
-
"public": true,
|
|
369
|
-
"inverse": true,
|
|
370
|
-
"usage": "Used for creating dark backgrounds",
|
|
371
|
-
"wcag": "n/a",
|
|
372
|
-
"deprecated": false,
|
|
373
|
-
"filePath": "src/color/background.json",
|
|
374
|
-
"isSource": true,
|
|
375
|
-
"original": {
|
|
376
|
-
"value": "{color.brand.navy.900.value}",
|
|
373
|
+
"inverse": {
|
|
374
|
+
"value": "#194069",
|
|
377
375
|
"public": true,
|
|
378
376
|
"inverse": true,
|
|
379
377
|
"usage": "Used for creating dark backgrounds",
|
|
380
378
|
"wcag": "n/a",
|
|
381
|
-
"deprecated": false
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
"background",
|
|
393
|
-
"
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
379
|
+
"deprecated": false,
|
|
380
|
+
"filePath": "src/color/background.json",
|
|
381
|
+
"isSource": true,
|
|
382
|
+
"original": {
|
|
383
|
+
"value": "{color.brand.navy.900.value}",
|
|
384
|
+
"public": true,
|
|
385
|
+
"inverse": true,
|
|
386
|
+
"usage": "Used for creating dark backgrounds",
|
|
387
|
+
"wcag": "n/a",
|
|
388
|
+
"deprecated": false
|
|
389
|
+
},
|
|
390
|
+
"name": "ds-color-background-primary-200-inverse",
|
|
391
|
+
"attributes": {
|
|
392
|
+
"category": "color",
|
|
393
|
+
"type": "background",
|
|
394
|
+
"item": "primary",
|
|
395
|
+
"subitem": "200",
|
|
396
|
+
"state": "inverse"
|
|
397
|
+
},
|
|
398
|
+
"path": [
|
|
399
|
+
"color",
|
|
400
|
+
"background",
|
|
401
|
+
"primary",
|
|
402
|
+
"200",
|
|
403
|
+
"inverse"
|
|
404
|
+
]
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"300": {
|
|
408
|
+
"default": {
|
|
409
|
+
"value": "#e4e8ec",
|
|
410
410
|
"public": true,
|
|
411
411
|
"default": true,
|
|
412
412
|
"usage": "Used for creating light backgrounds",
|
|
413
413
|
"wcag": "n/a",
|
|
414
|
-
"deprecated": false
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
414
|
+
"deprecated": false,
|
|
415
|
+
"filePath": "src/color/background.json",
|
|
416
|
+
"isSource": true,
|
|
417
|
+
"original": {
|
|
418
|
+
"value": "{color.brand.neutral.200.value}",
|
|
419
|
+
"public": true,
|
|
420
|
+
"default": true,
|
|
421
|
+
"usage": "Used for creating light backgrounds",
|
|
422
|
+
"wcag": "n/a",
|
|
423
|
+
"deprecated": false
|
|
424
|
+
},
|
|
425
|
+
"name": "ds-color-background-primary-300-default",
|
|
426
|
+
"attributes": {
|
|
427
|
+
"category": "color",
|
|
428
|
+
"type": "background",
|
|
429
|
+
"item": "primary",
|
|
430
|
+
"subitem": "300",
|
|
431
|
+
"state": "default"
|
|
432
|
+
},
|
|
433
|
+
"path": [
|
|
434
|
+
"color",
|
|
435
|
+
"background",
|
|
436
|
+
"primary",
|
|
437
|
+
"300",
|
|
438
|
+
"default"
|
|
439
|
+
]
|
|
422
440
|
},
|
|
423
|
-
"
|
|
424
|
-
"
|
|
425
|
-
"background",
|
|
426
|
-
"300",
|
|
427
|
-
"default"
|
|
428
|
-
]
|
|
429
|
-
},
|
|
430
|
-
"inverse": {
|
|
431
|
-
"value": "#265688",
|
|
432
|
-
"public": true,
|
|
433
|
-
"inverse": true,
|
|
434
|
-
"usage": "Used for creating dark backgrounds",
|
|
435
|
-
"wcag": "n/a",
|
|
436
|
-
"deprecated": false,
|
|
437
|
-
"filePath": "src/color/background.json",
|
|
438
|
-
"isSource": true,
|
|
439
|
-
"original": {
|
|
440
|
-
"value": "{color.brand.navy.800.value}",
|
|
441
|
+
"inverse": {
|
|
442
|
+
"value": "#265688",
|
|
441
443
|
"public": true,
|
|
442
444
|
"inverse": true,
|
|
443
445
|
"usage": "Used for creating dark backgrounds",
|
|
444
446
|
"wcag": "n/a",
|
|
445
|
-
"deprecated": false
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
"background",
|
|
457
|
-
"
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
447
|
+
"deprecated": false,
|
|
448
|
+
"filePath": "src/color/background.json",
|
|
449
|
+
"isSource": true,
|
|
450
|
+
"original": {
|
|
451
|
+
"value": "{color.brand.navy.800.value}",
|
|
452
|
+
"public": true,
|
|
453
|
+
"inverse": true,
|
|
454
|
+
"usage": "Used for creating dark backgrounds",
|
|
455
|
+
"wcag": "n/a",
|
|
456
|
+
"deprecated": false
|
|
457
|
+
},
|
|
458
|
+
"name": "ds-color-background-primary-300-inverse",
|
|
459
|
+
"attributes": {
|
|
460
|
+
"category": "color",
|
|
461
|
+
"type": "background",
|
|
462
|
+
"item": "primary",
|
|
463
|
+
"subitem": "300",
|
|
464
|
+
"state": "inverse"
|
|
465
|
+
},
|
|
466
|
+
"path": [
|
|
467
|
+
"color",
|
|
468
|
+
"background",
|
|
469
|
+
"primary",
|
|
470
|
+
"300",
|
|
471
|
+
"inverse"
|
|
472
|
+
]
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"400": {
|
|
476
|
+
"default": {
|
|
477
|
+
"value": "#dddddd",
|
|
474
478
|
"public": true,
|
|
475
479
|
"default": true,
|
|
476
480
|
"usage": "Used for creating light backgrounds",
|
|
477
481
|
"wcag": "n/a",
|
|
478
|
-
"deprecated": false
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
482
|
+
"deprecated": false,
|
|
483
|
+
"filePath": "src/color/background.json",
|
|
484
|
+
"isSource": true,
|
|
485
|
+
"original": {
|
|
486
|
+
"value": "{color.brand.gray.200.value}",
|
|
487
|
+
"public": true,
|
|
488
|
+
"default": true,
|
|
489
|
+
"usage": "Used for creating light backgrounds",
|
|
490
|
+
"wcag": "n/a",
|
|
491
|
+
"deprecated": false
|
|
492
|
+
},
|
|
493
|
+
"name": "ds-color-background-primary-400-default",
|
|
494
|
+
"attributes": {
|
|
495
|
+
"category": "color",
|
|
496
|
+
"type": "background",
|
|
497
|
+
"item": "primary",
|
|
498
|
+
"subitem": "400",
|
|
499
|
+
"state": "default"
|
|
500
|
+
},
|
|
501
|
+
"path": [
|
|
502
|
+
"color",
|
|
503
|
+
"background",
|
|
504
|
+
"primary",
|
|
505
|
+
"400",
|
|
506
|
+
"default"
|
|
507
|
+
]
|
|
486
508
|
},
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"background",
|
|
490
|
-
"400",
|
|
491
|
-
"default"
|
|
492
|
-
]
|
|
493
|
-
},
|
|
494
|
-
"inverse": {
|
|
495
|
-
"value": "#326aa5",
|
|
496
|
-
"public": true,
|
|
497
|
-
"inverse": true,
|
|
498
|
-
"usage": "Used for creating dark backgrounds",
|
|
499
|
-
"wcag": "n/a",
|
|
500
|
-
"deprecated": false,
|
|
501
|
-
"filePath": "src/color/background.json",
|
|
502
|
-
"isSource": true,
|
|
503
|
-
"original": {
|
|
504
|
-
"value": "{color.brand.navy.700.value}",
|
|
509
|
+
"inverse": {
|
|
510
|
+
"value": "#326aa5",
|
|
505
511
|
"public": true,
|
|
506
512
|
"inverse": true,
|
|
507
513
|
"usage": "Used for creating dark backgrounds",
|
|
508
514
|
"wcag": "n/a",
|
|
509
|
-
"deprecated": false
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
"background",
|
|
521
|
-
"
|
|
522
|
-
|
|
523
|
-
|
|
515
|
+
"deprecated": false,
|
|
516
|
+
"filePath": "src/color/background.json",
|
|
517
|
+
"isSource": true,
|
|
518
|
+
"original": {
|
|
519
|
+
"value": "{color.brand.navy.700.value}",
|
|
520
|
+
"public": true,
|
|
521
|
+
"inverse": true,
|
|
522
|
+
"usage": "Used for creating dark backgrounds",
|
|
523
|
+
"wcag": "n/a",
|
|
524
|
+
"deprecated": false
|
|
525
|
+
},
|
|
526
|
+
"name": "ds-color-background-primary-400-inverse",
|
|
527
|
+
"attributes": {
|
|
528
|
+
"category": "color",
|
|
529
|
+
"type": "background",
|
|
530
|
+
"item": "primary",
|
|
531
|
+
"subitem": "400",
|
|
532
|
+
"state": "inverse"
|
|
533
|
+
},
|
|
534
|
+
"path": [
|
|
535
|
+
"color",
|
|
536
|
+
"background",
|
|
537
|
+
"primary",
|
|
538
|
+
"400",
|
|
539
|
+
"inverse"
|
|
540
|
+
]
|
|
541
|
+
}
|
|
524
542
|
}
|
|
525
543
|
},
|
|
526
544
|
"success": {
|
|
@@ -14977,7 +14995,7 @@ module.exports = {
|
|
|
14977
14995
|
},
|
|
14978
14996
|
"success": {
|
|
14979
14997
|
"default": {
|
|
14980
|
-
"value": "#
|
|
14998
|
+
"value": "#40a080",
|
|
14981
14999
|
"public": true,
|
|
14982
15000
|
"default": true,
|
|
14983
15001
|
"usage": "Success icon color on light backgrounds",
|
|
@@ -14986,7 +15004,7 @@ module.exports = {
|
|
|
14986
15004
|
"filePath": "src/color/icon.json",
|
|
14987
15005
|
"isSource": true,
|
|
14988
15006
|
"original": {
|
|
14989
|
-
"value": "{color.base.success.
|
|
15007
|
+
"value": "{color.base.success.300.value}",
|
|
14990
15008
|
"public": true,
|
|
14991
15009
|
"default": true,
|
|
14992
15010
|
"usage": "Success icon color on light backgrounds",
|
|
@@ -154,14 +154,14 @@
|
|
|
154
154
|
"ds-color-alert-advisory-default": "#fff0cd",
|
|
155
155
|
"ds-color-alert-bkg-success-default": "#ddf6e8",
|
|
156
156
|
"ds-color-alert-bkg-error-default": "#ffedf1",
|
|
157
|
-
"ds-color-background-100-default": "#ffffff",
|
|
158
|
-
"ds-color-background-100-inverse": "#0e2b4f",
|
|
159
|
-
"ds-color-background-200-default": "#f7f7f7",
|
|
160
|
-
"ds-color-background-200-inverse": "#194069",
|
|
161
|
-
"ds-color-background-300-default": "#e4e8ec",
|
|
162
|
-
"ds-color-background-300-inverse": "#265688",
|
|
163
|
-
"ds-color-background-400-default": "#dddddd",
|
|
164
|
-
"ds-color-background-400-inverse": "#326aa5",
|
|
157
|
+
"ds-color-background-primary-100-default": "#ffffff",
|
|
158
|
+
"ds-color-background-primary-100-inverse": "#0e2b4f",
|
|
159
|
+
"ds-color-background-primary-200-default": "#f7f7f7",
|
|
160
|
+
"ds-color-background-primary-200-inverse": "#194069",
|
|
161
|
+
"ds-color-background-primary-300-default": "#e4e8ec",
|
|
162
|
+
"ds-color-background-primary-300-inverse": "#265688",
|
|
163
|
+
"ds-color-background-primary-400-default": "#dddddd",
|
|
164
|
+
"ds-color-background-primary-400-inverse": "#326aa5",
|
|
165
165
|
"ds-color-background-success-default": "#eef8f5",
|
|
166
166
|
"ds-color-background-success-inverse": "#173c30",
|
|
167
167
|
"ds-color-background-error-default": "#fff4f4",
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
"ds-color-icon-error-inverse": "#f9aca6",
|
|
609
609
|
"ds-color-icon-warning-default": "#fef8e9",
|
|
610
610
|
"ds-color-icon-warning-inverse": "#f2c153",
|
|
611
|
-
"ds-color-icon-success-default": "#
|
|
611
|
+
"ds-color-icon-success-default": "#40a080",
|
|
612
612
|
"ds-color-icon-success-inverse": "#8eceb9",
|
|
613
613
|
"ds-color-icon-subtle-default": "#a0c9f1",
|
|
614
614
|
"ds-color-icon-subtle-inverse": "#326aa5",
|