@carbon/colors 10.22.0 → 10.24.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/package.json +3 -3
- package/scss/mixins.scss +438 -219
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/colors",
|
|
3
3
|
"description": "Colors for digital and software products using the Carbon Design System",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.24.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"clean": "rimraf css es lib umd scss index.scss"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@carbon/cli": "^10.
|
|
38
|
+
"@carbon/cli": "^10.22.0",
|
|
39
39
|
"@carbon/cli-reporter": "^10.4.0",
|
|
40
40
|
"@carbon/scss-generator": "^10.13.0",
|
|
41
41
|
"@carbon/test-utils": "^10.15.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"sassDir": "scss",
|
|
52
52
|
"needs": "^1.3.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "ee650dfb14b7428a1509fcef32db2438b9b9eb76"
|
|
55
55
|
}
|
package/scss/mixins.scss
CHANGED
|
@@ -286,225 +286,444 @@
|
|
|
286
286
|
/// Define color variables
|
|
287
287
|
/// @access public
|
|
288
288
|
/// @group @carbon/colors
|
|
289
|
+
$carbon--black-100: #000000;
|
|
290
|
+
$carbon--blue-10: #edf5ff;
|
|
291
|
+
$carbon--blue-20: #d0e2ff;
|
|
292
|
+
$carbon--blue-30: #a6c8ff;
|
|
293
|
+
$carbon--blue-40: #78a9ff;
|
|
294
|
+
$carbon--blue-50: #4589ff;
|
|
295
|
+
$carbon--blue-60: #0f62fe;
|
|
296
|
+
$carbon--blue-70: #0043ce;
|
|
297
|
+
$carbon--blue-80: #002d9c;
|
|
298
|
+
$carbon--blue-90: #001d6c;
|
|
299
|
+
$carbon--blue-100: #001141;
|
|
300
|
+
$carbon--cool-gray-10: #f2f4f8;
|
|
301
|
+
$carbon--cool-gray-20: #dde1e6;
|
|
302
|
+
$carbon--cool-gray-30: #c1c7cd;
|
|
303
|
+
$carbon--cool-gray-40: #a2a9b0;
|
|
304
|
+
$carbon--cool-gray-50: #878d96;
|
|
305
|
+
$carbon--cool-gray-60: #697077;
|
|
306
|
+
$carbon--cool-gray-70: #4d5358;
|
|
307
|
+
$carbon--cool-gray-80: #343a3f;
|
|
308
|
+
$carbon--cool-gray-90: #21272a;
|
|
309
|
+
$carbon--cool-gray-100: #121619;
|
|
310
|
+
$carbon--cyan-10: #e5f6ff;
|
|
311
|
+
$carbon--cyan-20: #bae6ff;
|
|
312
|
+
$carbon--cyan-30: #82cfff;
|
|
313
|
+
$carbon--cyan-40: #33b1ff;
|
|
314
|
+
$carbon--cyan-50: #1192e8;
|
|
315
|
+
$carbon--cyan-60: #0072c3;
|
|
316
|
+
$carbon--cyan-70: #00539a;
|
|
317
|
+
$carbon--cyan-80: #003a6d;
|
|
318
|
+
$carbon--cyan-90: #012749;
|
|
319
|
+
$carbon--cyan-100: #061727;
|
|
320
|
+
$carbon--gray-10: #f4f4f4;
|
|
321
|
+
$carbon--gray-20: #e0e0e0;
|
|
322
|
+
$carbon--gray-30: #c6c6c6;
|
|
323
|
+
$carbon--gray-40: #a8a8a8;
|
|
324
|
+
$carbon--gray-50: #8d8d8d;
|
|
325
|
+
$carbon--gray-60: #6f6f6f;
|
|
326
|
+
$carbon--gray-70: #525252;
|
|
327
|
+
$carbon--gray-80: #393939;
|
|
328
|
+
$carbon--gray-90: #262626;
|
|
329
|
+
$carbon--gray-100: #161616;
|
|
330
|
+
$carbon--green-10: #defbe6;
|
|
331
|
+
$carbon--green-20: #a7f0ba;
|
|
332
|
+
$carbon--green-30: #6fdc8c;
|
|
333
|
+
$carbon--green-40: #42be65;
|
|
334
|
+
$carbon--green-50: #24a148;
|
|
335
|
+
$carbon--green-60: #198038;
|
|
336
|
+
$carbon--green-70: #0e6027;
|
|
337
|
+
$carbon--green-80: #044317;
|
|
338
|
+
$carbon--green-90: #022d0d;
|
|
339
|
+
$carbon--green-100: #071908;
|
|
340
|
+
$carbon--magenta-10: #fff0f7;
|
|
341
|
+
$carbon--magenta-20: #ffd6e8;
|
|
342
|
+
$carbon--magenta-30: #ffafd2;
|
|
343
|
+
$carbon--magenta-40: #ff7eb6;
|
|
344
|
+
$carbon--magenta-50: #ee5396;
|
|
345
|
+
$carbon--magenta-60: #d02670;
|
|
346
|
+
$carbon--magenta-70: #9f1853;
|
|
347
|
+
$carbon--magenta-80: #740937;
|
|
348
|
+
$carbon--magenta-90: #510224;
|
|
349
|
+
$carbon--magenta-100: #2a0a18;
|
|
350
|
+
$carbon--orange-40: #ff832b;
|
|
351
|
+
$carbon--orange-60: #ba4e00;
|
|
352
|
+
$carbon--orange-70: #8a3800;
|
|
353
|
+
$carbon--purple-10: #f6f2ff;
|
|
354
|
+
$carbon--purple-20: #e8daff;
|
|
355
|
+
$carbon--purple-30: #d4bbff;
|
|
356
|
+
$carbon--purple-40: #be95ff;
|
|
357
|
+
$carbon--purple-50: #a56eff;
|
|
358
|
+
$carbon--purple-60: #8a3ffc;
|
|
359
|
+
$carbon--purple-70: #6929c4;
|
|
360
|
+
$carbon--purple-80: #491d8b;
|
|
361
|
+
$carbon--purple-90: #31135e;
|
|
362
|
+
$carbon--purple-100: #1c0f30;
|
|
363
|
+
$carbon--red-10: #fff1f1;
|
|
364
|
+
$carbon--red-20: #ffd7d9;
|
|
365
|
+
$carbon--red-30: #ffb3b8;
|
|
366
|
+
$carbon--red-40: #ff8389;
|
|
367
|
+
$carbon--red-50: #fa4d56;
|
|
368
|
+
$carbon--red-60: #da1e28;
|
|
369
|
+
$carbon--red-70: #a2191f;
|
|
370
|
+
$carbon--red-80: #750e13;
|
|
371
|
+
$carbon--red-90: #520408;
|
|
372
|
+
$carbon--red-100: #2d0709;
|
|
373
|
+
$carbon--teal-10: #d9fbfb;
|
|
374
|
+
$carbon--teal-20: #9ef0f0;
|
|
375
|
+
$carbon--teal-30: #3ddbd9;
|
|
376
|
+
$carbon--teal-40: #08bdba;
|
|
377
|
+
$carbon--teal-50: #009d9a;
|
|
378
|
+
$carbon--teal-60: #007d79;
|
|
379
|
+
$carbon--teal-70: #005d5d;
|
|
380
|
+
$carbon--teal-80: #004144;
|
|
381
|
+
$carbon--teal-90: #022b30;
|
|
382
|
+
$carbon--teal-100: #081a1c;
|
|
383
|
+
$carbon--warm-gray-10: #f7f3f2;
|
|
384
|
+
$carbon--warm-gray-20: #e5e0df;
|
|
385
|
+
$carbon--warm-gray-30: #cac5c4;
|
|
386
|
+
$carbon--warm-gray-40: #ada8a8;
|
|
387
|
+
$carbon--warm-gray-50: #8f8b8b;
|
|
388
|
+
$carbon--warm-gray-60: #726e6e;
|
|
389
|
+
$carbon--warm-gray-70: #565151;
|
|
390
|
+
$carbon--warm-gray-80: #3c3838;
|
|
391
|
+
$carbon--warm-gray-90: #272525;
|
|
392
|
+
$carbon--warm-gray-100: #171414;
|
|
393
|
+
$carbon--white-0: #ffffff;
|
|
394
|
+
$carbon--yellow-20: #fdd13a;
|
|
395
|
+
$carbon--yellow-30: #f1c21b;
|
|
396
|
+
$carbon--yellow-40: #d2a106;
|
|
397
|
+
$carbon--yellow-50: #b28600;
|
|
398
|
+
$black-100: #000000;
|
|
399
|
+
$blue-10: #edf5ff;
|
|
400
|
+
$blue-20: #d0e2ff;
|
|
401
|
+
$blue-30: #a6c8ff;
|
|
402
|
+
$blue-40: #78a9ff;
|
|
403
|
+
$blue-50: #4589ff;
|
|
404
|
+
$blue-60: #0f62fe;
|
|
405
|
+
$blue-70: #0043ce;
|
|
406
|
+
$blue-80: #002d9c;
|
|
407
|
+
$blue-90: #001d6c;
|
|
408
|
+
$blue-100: #001141;
|
|
409
|
+
$cool-gray-10: #f2f4f8;
|
|
410
|
+
$cool-gray-20: #dde1e6;
|
|
411
|
+
$cool-gray-30: #c1c7cd;
|
|
412
|
+
$cool-gray-40: #a2a9b0;
|
|
413
|
+
$cool-gray-50: #878d96;
|
|
414
|
+
$cool-gray-60: #697077;
|
|
415
|
+
$cool-gray-70: #4d5358;
|
|
416
|
+
$cool-gray-80: #343a3f;
|
|
417
|
+
$cool-gray-90: #21272a;
|
|
418
|
+
$cool-gray-100: #121619;
|
|
419
|
+
$cyan-10: #e5f6ff;
|
|
420
|
+
$cyan-20: #bae6ff;
|
|
421
|
+
$cyan-30: #82cfff;
|
|
422
|
+
$cyan-40: #33b1ff;
|
|
423
|
+
$cyan-50: #1192e8;
|
|
424
|
+
$cyan-60: #0072c3;
|
|
425
|
+
$cyan-70: #00539a;
|
|
426
|
+
$cyan-80: #003a6d;
|
|
427
|
+
$cyan-90: #012749;
|
|
428
|
+
$cyan-100: #061727;
|
|
429
|
+
$gray-10: #f4f4f4;
|
|
430
|
+
$gray-20: #e0e0e0;
|
|
431
|
+
$gray-30: #c6c6c6;
|
|
432
|
+
$gray-40: #a8a8a8;
|
|
433
|
+
$gray-50: #8d8d8d;
|
|
434
|
+
$gray-60: #6f6f6f;
|
|
435
|
+
$gray-70: #525252;
|
|
436
|
+
$gray-80: #393939;
|
|
437
|
+
$gray-90: #262626;
|
|
438
|
+
$gray-100: #161616;
|
|
439
|
+
$green-10: #defbe6;
|
|
440
|
+
$green-20: #a7f0ba;
|
|
441
|
+
$green-30: #6fdc8c;
|
|
442
|
+
$green-40: #42be65;
|
|
443
|
+
$green-50: #24a148;
|
|
444
|
+
$green-60: #198038;
|
|
445
|
+
$green-70: #0e6027;
|
|
446
|
+
$green-80: #044317;
|
|
447
|
+
$green-90: #022d0d;
|
|
448
|
+
$green-100: #071908;
|
|
449
|
+
$magenta-10: #fff0f7;
|
|
450
|
+
$magenta-20: #ffd6e8;
|
|
451
|
+
$magenta-30: #ffafd2;
|
|
452
|
+
$magenta-40: #ff7eb6;
|
|
453
|
+
$magenta-50: #ee5396;
|
|
454
|
+
$magenta-60: #d02670;
|
|
455
|
+
$magenta-70: #9f1853;
|
|
456
|
+
$magenta-80: #740937;
|
|
457
|
+
$magenta-90: #510224;
|
|
458
|
+
$magenta-100: #2a0a18;
|
|
459
|
+
$orange-40: #ff832b;
|
|
460
|
+
$orange-60: #ba4e00;
|
|
461
|
+
$orange-70: #8a3800;
|
|
462
|
+
$purple-10: #f6f2ff;
|
|
463
|
+
$purple-20: #e8daff;
|
|
464
|
+
$purple-30: #d4bbff;
|
|
465
|
+
$purple-40: #be95ff;
|
|
466
|
+
$purple-50: #a56eff;
|
|
467
|
+
$purple-60: #8a3ffc;
|
|
468
|
+
$purple-70: #6929c4;
|
|
469
|
+
$purple-80: #491d8b;
|
|
470
|
+
$purple-90: #31135e;
|
|
471
|
+
$purple-100: #1c0f30;
|
|
472
|
+
$red-10: #fff1f1;
|
|
473
|
+
$red-20: #ffd7d9;
|
|
474
|
+
$red-30: #ffb3b8;
|
|
475
|
+
$red-40: #ff8389;
|
|
476
|
+
$red-50: #fa4d56;
|
|
477
|
+
$red-60: #da1e28;
|
|
478
|
+
$red-70: #a2191f;
|
|
479
|
+
$red-80: #750e13;
|
|
480
|
+
$red-90: #520408;
|
|
481
|
+
$red-100: #2d0709;
|
|
482
|
+
$teal-10: #d9fbfb;
|
|
483
|
+
$teal-20: #9ef0f0;
|
|
484
|
+
$teal-30: #3ddbd9;
|
|
485
|
+
$teal-40: #08bdba;
|
|
486
|
+
$teal-50: #009d9a;
|
|
487
|
+
$teal-60: #007d79;
|
|
488
|
+
$teal-70: #005d5d;
|
|
489
|
+
$teal-80: #004144;
|
|
490
|
+
$teal-90: #022b30;
|
|
491
|
+
$teal-100: #081a1c;
|
|
492
|
+
$warm-gray-10: #f7f3f2;
|
|
493
|
+
$warm-gray-20: #e5e0df;
|
|
494
|
+
$warm-gray-30: #cac5c4;
|
|
495
|
+
$warm-gray-40: #ada8a8;
|
|
496
|
+
$warm-gray-50: #8f8b8b;
|
|
497
|
+
$warm-gray-60: #726e6e;
|
|
498
|
+
$warm-gray-70: #565151;
|
|
499
|
+
$warm-gray-80: #3c3838;
|
|
500
|
+
$warm-gray-90: #272525;
|
|
501
|
+
$warm-gray-100: #171414;
|
|
502
|
+
$white-0: #ffffff;
|
|
503
|
+
$yellow-20: #fdd13a;
|
|
504
|
+
$yellow-30: #f1c21b;
|
|
505
|
+
$yellow-40: #d2a106;
|
|
506
|
+
$yellow-50: #b28600;
|
|
507
|
+
|
|
289
508
|
@mixin carbon--colors() {
|
|
290
|
-
$carbon--black-100: #000000 !default
|
|
291
|
-
$carbon--blue-10: #edf5ff !default
|
|
292
|
-
$carbon--blue-20: #d0e2ff !default
|
|
293
|
-
$carbon--blue-30: #a6c8ff !default
|
|
294
|
-
$carbon--blue-40: #78a9ff !default
|
|
295
|
-
$carbon--blue-50: #4589ff !default
|
|
296
|
-
$carbon--blue-60: #0f62fe !default
|
|
297
|
-
$carbon--blue-70: #0043ce !default
|
|
298
|
-
$carbon--blue-80: #002d9c !default
|
|
299
|
-
$carbon--blue-90: #001d6c !default
|
|
300
|
-
$carbon--blue-100: #001141 !default
|
|
301
|
-
$carbon--cool-gray-10: #f2f4f8 !default
|
|
302
|
-
$carbon--cool-gray-20: #dde1e6 !default
|
|
303
|
-
$carbon--cool-gray-30: #c1c7cd !default
|
|
304
|
-
$carbon--cool-gray-40: #a2a9b0 !default
|
|
305
|
-
$carbon--cool-gray-50: #878d96 !default
|
|
306
|
-
$carbon--cool-gray-60: #697077 !default
|
|
307
|
-
$carbon--cool-gray-70: #4d5358 !default
|
|
308
|
-
$carbon--cool-gray-80: #343a3f !default
|
|
309
|
-
$carbon--cool-gray-90: #21272a !default
|
|
310
|
-
$carbon--cool-gray-100: #121619 !default
|
|
311
|
-
$carbon--cyan-10: #e5f6ff !default
|
|
312
|
-
$carbon--cyan-20: #bae6ff !default
|
|
313
|
-
$carbon--cyan-30: #82cfff !default
|
|
314
|
-
$carbon--cyan-40: #33b1ff !default
|
|
315
|
-
$carbon--cyan-50: #1192e8 !default
|
|
316
|
-
$carbon--cyan-60: #0072c3 !default
|
|
317
|
-
$carbon--cyan-70: #00539a !default
|
|
318
|
-
$carbon--cyan-80: #003a6d !default
|
|
319
|
-
$carbon--cyan-90: #012749 !default
|
|
320
|
-
$carbon--cyan-100: #061727 !default
|
|
321
|
-
$carbon--gray-10: #f4f4f4 !default
|
|
322
|
-
$carbon--gray-20: #e0e0e0 !default
|
|
323
|
-
$carbon--gray-30: #c6c6c6 !default
|
|
324
|
-
$carbon--gray-40: #a8a8a8 !default
|
|
325
|
-
$carbon--gray-50: #8d8d8d !default
|
|
326
|
-
$carbon--gray-60: #6f6f6f !default
|
|
327
|
-
$carbon--gray-70: #525252 !default
|
|
328
|
-
$carbon--gray-80: #393939 !default
|
|
329
|
-
$carbon--gray-90: #262626 !default
|
|
330
|
-
$carbon--gray-100: #161616 !default
|
|
331
|
-
$carbon--green-10: #defbe6 !default
|
|
332
|
-
$carbon--green-20: #a7f0ba !default
|
|
333
|
-
$carbon--green-30: #6fdc8c !default
|
|
334
|
-
$carbon--green-40: #42be65 !default
|
|
335
|
-
$carbon--green-50: #24a148 !default
|
|
336
|
-
$carbon--green-60: #198038 !default
|
|
337
|
-
$carbon--green-70: #0e6027 !default
|
|
338
|
-
$carbon--green-80: #044317 !default
|
|
339
|
-
$carbon--green-90: #022d0d !default
|
|
340
|
-
$carbon--green-100: #071908 !default
|
|
341
|
-
$carbon--magenta-10: #fff0f7 !default
|
|
342
|
-
$carbon--magenta-20: #ffd6e8 !default
|
|
343
|
-
$carbon--magenta-30: #ffafd2 !default
|
|
344
|
-
$carbon--magenta-40: #ff7eb6 !default
|
|
345
|
-
$carbon--magenta-50: #ee5396 !default
|
|
346
|
-
$carbon--magenta-60: #d02670 !default
|
|
347
|
-
$carbon--magenta-70: #9f1853 !default
|
|
348
|
-
$carbon--magenta-80: #740937 !default
|
|
349
|
-
$carbon--magenta-90: #510224 !default
|
|
350
|
-
$carbon--magenta-100: #2a0a18 !default
|
|
351
|
-
$carbon--orange-40: #ff832b !default
|
|
352
|
-
$carbon--orange-60: #ba4e00 !default
|
|
353
|
-
$carbon--orange-70: #8a3800 !default
|
|
354
|
-
$carbon--purple-10: #f6f2ff !default
|
|
355
|
-
$carbon--purple-20: #e8daff !default
|
|
356
|
-
$carbon--purple-30: #d4bbff !default
|
|
357
|
-
$carbon--purple-40: #be95ff !default
|
|
358
|
-
$carbon--purple-50: #a56eff !default
|
|
359
|
-
$carbon--purple-60: #8a3ffc !default
|
|
360
|
-
$carbon--purple-70: #6929c4 !default
|
|
361
|
-
$carbon--purple-80: #491d8b !default
|
|
362
|
-
$carbon--purple-90: #31135e !default
|
|
363
|
-
$carbon--purple-100: #1c0f30 !default
|
|
364
|
-
$carbon--red-10: #fff1f1 !default
|
|
365
|
-
$carbon--red-20: #ffd7d9 !default
|
|
366
|
-
$carbon--red-30: #ffb3b8 !default
|
|
367
|
-
$carbon--red-40: #ff8389 !default
|
|
368
|
-
$carbon--red-50: #fa4d56 !default
|
|
369
|
-
$carbon--red-60: #da1e28 !default
|
|
370
|
-
$carbon--red-70: #a2191f !default
|
|
371
|
-
$carbon--red-80: #750e13 !default
|
|
372
|
-
$carbon--red-90: #520408 !default
|
|
373
|
-
$carbon--red-100: #2d0709 !default
|
|
374
|
-
$carbon--teal-10: #d9fbfb !default
|
|
375
|
-
$carbon--teal-20: #9ef0f0 !default
|
|
376
|
-
$carbon--teal-30: #3ddbd9 !default
|
|
377
|
-
$carbon--teal-40: #08bdba !default
|
|
378
|
-
$carbon--teal-50: #009d9a !default
|
|
379
|
-
$carbon--teal-60: #007d79 !default
|
|
380
|
-
$carbon--teal-70: #005d5d !default
|
|
381
|
-
$carbon--teal-80: #004144 !default
|
|
382
|
-
$carbon--teal-90: #022b30 !default
|
|
383
|
-
$carbon--teal-100: #081a1c !default
|
|
384
|
-
$carbon--warm-gray-10: #f7f3f2 !default
|
|
385
|
-
$carbon--warm-gray-20: #e5e0df !default
|
|
386
|
-
$carbon--warm-gray-30: #cac5c4 !default
|
|
387
|
-
$carbon--warm-gray-40: #ada8a8 !default
|
|
388
|
-
$carbon--warm-gray-50: #8f8b8b !default
|
|
389
|
-
$carbon--warm-gray-60: #726e6e !default
|
|
390
|
-
$carbon--warm-gray-70: #565151 !default
|
|
391
|
-
$carbon--warm-gray-80: #3c3838 !default
|
|
392
|
-
$carbon--warm-gray-90: #272525 !default
|
|
393
|
-
$carbon--warm-gray-100: #171414 !default
|
|
394
|
-
$carbon--white-0: #ffffff !default
|
|
395
|
-
$carbon--yellow-20: #fdd13a !default
|
|
396
|
-
$carbon--yellow-30: #f1c21b !default
|
|
397
|
-
$carbon--yellow-40: #d2a106 !default
|
|
398
|
-
$carbon--yellow-50: #b28600 !default
|
|
399
|
-
$black-100: #000000 !default
|
|
400
|
-
$blue-10: #edf5ff !default
|
|
401
|
-
$blue-20: #d0e2ff !default
|
|
402
|
-
$blue-30: #a6c8ff !default
|
|
403
|
-
$blue-40: #78a9ff !default
|
|
404
|
-
$blue-50: #4589ff !default
|
|
405
|
-
$blue-60: #0f62fe !default
|
|
406
|
-
$blue-70: #0043ce !default
|
|
407
|
-
$blue-80: #002d9c !default
|
|
408
|
-
$blue-90: #001d6c !default
|
|
409
|
-
$blue-100: #001141 !default
|
|
410
|
-
$cool-gray-10: #f2f4f8 !default
|
|
411
|
-
$cool-gray-20: #dde1e6 !default
|
|
412
|
-
$cool-gray-30: #c1c7cd !default
|
|
413
|
-
$cool-gray-40: #a2a9b0 !default
|
|
414
|
-
$cool-gray-50: #878d96 !default
|
|
415
|
-
$cool-gray-60: #697077 !default
|
|
416
|
-
$cool-gray-70: #4d5358 !default
|
|
417
|
-
$cool-gray-80: #343a3f !default
|
|
418
|
-
$cool-gray-90: #21272a !default
|
|
419
|
-
$cool-gray-100: #121619 !default
|
|
420
|
-
$cyan-10: #e5f6ff !default
|
|
421
|
-
$cyan-20: #bae6ff !default
|
|
422
|
-
$cyan-30: #82cfff !default
|
|
423
|
-
$cyan-40: #33b1ff !default
|
|
424
|
-
$cyan-50: #1192e8 !default
|
|
425
|
-
$cyan-60: #0072c3 !default
|
|
426
|
-
$cyan-70: #00539a !default
|
|
427
|
-
$cyan-80: #003a6d !default
|
|
428
|
-
$cyan-90: #012749 !default
|
|
429
|
-
$cyan-100: #061727 !default
|
|
430
|
-
$gray-10: #f4f4f4 !default
|
|
431
|
-
$gray-20: #e0e0e0 !default
|
|
432
|
-
$gray-30: #c6c6c6 !default
|
|
433
|
-
$gray-40: #a8a8a8 !default
|
|
434
|
-
$gray-50: #8d8d8d !default
|
|
435
|
-
$gray-60: #6f6f6f !default
|
|
436
|
-
$gray-70: #525252 !default
|
|
437
|
-
$gray-80: #393939 !default
|
|
438
|
-
$gray-90: #262626 !default
|
|
439
|
-
$gray-100: #161616 !default
|
|
440
|
-
$green-10: #defbe6 !default
|
|
441
|
-
$green-20: #a7f0ba !default
|
|
442
|
-
$green-30: #6fdc8c !default
|
|
443
|
-
$green-40: #42be65 !default
|
|
444
|
-
$green-50: #24a148 !default
|
|
445
|
-
$green-60: #198038 !default
|
|
446
|
-
$green-70: #0e6027 !default
|
|
447
|
-
$green-80: #044317 !default
|
|
448
|
-
$green-90: #022d0d !default
|
|
449
|
-
$green-100: #071908 !default
|
|
450
|
-
$magenta-10: #fff0f7 !default
|
|
451
|
-
$magenta-20: #ffd6e8 !default
|
|
452
|
-
$magenta-30: #ffafd2 !default
|
|
453
|
-
$magenta-40: #ff7eb6 !default
|
|
454
|
-
$magenta-50: #ee5396 !default
|
|
455
|
-
$magenta-60: #d02670 !default
|
|
456
|
-
$magenta-70: #9f1853 !default
|
|
457
|
-
$magenta-80: #740937 !default
|
|
458
|
-
$magenta-90: #510224 !default
|
|
459
|
-
$magenta-100: #2a0a18 !default
|
|
460
|
-
$orange-40: #ff832b !default
|
|
461
|
-
$orange-60: #ba4e00 !default
|
|
462
|
-
$orange-70: #8a3800 !default
|
|
463
|
-
$purple-10: #f6f2ff !default
|
|
464
|
-
$purple-20: #e8daff !default
|
|
465
|
-
$purple-30: #d4bbff !default
|
|
466
|
-
$purple-40: #be95ff !default
|
|
467
|
-
$purple-50: #a56eff !default
|
|
468
|
-
$purple-60: #8a3ffc !default
|
|
469
|
-
$purple-70: #6929c4 !default
|
|
470
|
-
$purple-80: #491d8b !default
|
|
471
|
-
$purple-90: #31135e !default
|
|
472
|
-
$purple-100: #1c0f30 !default
|
|
473
|
-
$red-10: #fff1f1 !default
|
|
474
|
-
$red-20: #ffd7d9 !default
|
|
475
|
-
$red-30: #ffb3b8 !default
|
|
476
|
-
$red-40: #ff8389 !default
|
|
477
|
-
$red-50: #fa4d56 !default
|
|
478
|
-
$red-60: #da1e28 !default
|
|
479
|
-
$red-70: #a2191f !default
|
|
480
|
-
$red-80: #750e13 !default
|
|
481
|
-
$red-90: #520408 !default
|
|
482
|
-
$red-100: #2d0709 !default
|
|
483
|
-
$teal-10: #d9fbfb !default
|
|
484
|
-
$teal-20: #9ef0f0 !default
|
|
485
|
-
$teal-30: #3ddbd9 !default
|
|
486
|
-
$teal-40: #08bdba !default
|
|
487
|
-
$teal-50: #009d9a !default
|
|
488
|
-
$teal-60: #007d79 !default
|
|
489
|
-
$teal-70: #005d5d !default
|
|
490
|
-
$teal-80: #004144 !default
|
|
491
|
-
$teal-90: #022b30 !default
|
|
492
|
-
$teal-100: #081a1c !default
|
|
493
|
-
$warm-gray-10: #f7f3f2 !default
|
|
494
|
-
$warm-gray-20: #e5e0df !default
|
|
495
|
-
$warm-gray-30: #cac5c4 !default
|
|
496
|
-
$warm-gray-40: #ada8a8 !default
|
|
497
|
-
$warm-gray-50: #8f8b8b !default
|
|
498
|
-
$warm-gray-60: #726e6e !default
|
|
499
|
-
$warm-gray-70: #565151 !default
|
|
500
|
-
$warm-gray-80: #3c3838 !default
|
|
501
|
-
$warm-gray-90: #272525 !default
|
|
502
|
-
$warm-gray-100: #171414 !default
|
|
503
|
-
$white-0: #ffffff !default
|
|
504
|
-
$yellow-20: #fdd13a !default
|
|
505
|
-
$yellow-30: #f1c21b !default
|
|
506
|
-
$yellow-40: #d2a106 !default
|
|
507
|
-
$yellow-50: #b28600 !default
|
|
509
|
+
$carbon--black-100: #000000 !default;
|
|
510
|
+
$carbon--blue-10: #edf5ff !default;
|
|
511
|
+
$carbon--blue-20: #d0e2ff !default;
|
|
512
|
+
$carbon--blue-30: #a6c8ff !default;
|
|
513
|
+
$carbon--blue-40: #78a9ff !default;
|
|
514
|
+
$carbon--blue-50: #4589ff !default;
|
|
515
|
+
$carbon--blue-60: #0f62fe !default;
|
|
516
|
+
$carbon--blue-70: #0043ce !default;
|
|
517
|
+
$carbon--blue-80: #002d9c !default;
|
|
518
|
+
$carbon--blue-90: #001d6c !default;
|
|
519
|
+
$carbon--blue-100: #001141 !default;
|
|
520
|
+
$carbon--cool-gray-10: #f2f4f8 !default;
|
|
521
|
+
$carbon--cool-gray-20: #dde1e6 !default;
|
|
522
|
+
$carbon--cool-gray-30: #c1c7cd !default;
|
|
523
|
+
$carbon--cool-gray-40: #a2a9b0 !default;
|
|
524
|
+
$carbon--cool-gray-50: #878d96 !default;
|
|
525
|
+
$carbon--cool-gray-60: #697077 !default;
|
|
526
|
+
$carbon--cool-gray-70: #4d5358 !default;
|
|
527
|
+
$carbon--cool-gray-80: #343a3f !default;
|
|
528
|
+
$carbon--cool-gray-90: #21272a !default;
|
|
529
|
+
$carbon--cool-gray-100: #121619 !default;
|
|
530
|
+
$carbon--cyan-10: #e5f6ff !default;
|
|
531
|
+
$carbon--cyan-20: #bae6ff !default;
|
|
532
|
+
$carbon--cyan-30: #82cfff !default;
|
|
533
|
+
$carbon--cyan-40: #33b1ff !default;
|
|
534
|
+
$carbon--cyan-50: #1192e8 !default;
|
|
535
|
+
$carbon--cyan-60: #0072c3 !default;
|
|
536
|
+
$carbon--cyan-70: #00539a !default;
|
|
537
|
+
$carbon--cyan-80: #003a6d !default;
|
|
538
|
+
$carbon--cyan-90: #012749 !default;
|
|
539
|
+
$carbon--cyan-100: #061727 !default;
|
|
540
|
+
$carbon--gray-10: #f4f4f4 !default;
|
|
541
|
+
$carbon--gray-20: #e0e0e0 !default;
|
|
542
|
+
$carbon--gray-30: #c6c6c6 !default;
|
|
543
|
+
$carbon--gray-40: #a8a8a8 !default;
|
|
544
|
+
$carbon--gray-50: #8d8d8d !default;
|
|
545
|
+
$carbon--gray-60: #6f6f6f !default;
|
|
546
|
+
$carbon--gray-70: #525252 !default;
|
|
547
|
+
$carbon--gray-80: #393939 !default;
|
|
548
|
+
$carbon--gray-90: #262626 !default;
|
|
549
|
+
$carbon--gray-100: #161616 !default;
|
|
550
|
+
$carbon--green-10: #defbe6 !default;
|
|
551
|
+
$carbon--green-20: #a7f0ba !default;
|
|
552
|
+
$carbon--green-30: #6fdc8c !default;
|
|
553
|
+
$carbon--green-40: #42be65 !default;
|
|
554
|
+
$carbon--green-50: #24a148 !default;
|
|
555
|
+
$carbon--green-60: #198038 !default;
|
|
556
|
+
$carbon--green-70: #0e6027 !default;
|
|
557
|
+
$carbon--green-80: #044317 !default;
|
|
558
|
+
$carbon--green-90: #022d0d !default;
|
|
559
|
+
$carbon--green-100: #071908 !default;
|
|
560
|
+
$carbon--magenta-10: #fff0f7 !default;
|
|
561
|
+
$carbon--magenta-20: #ffd6e8 !default;
|
|
562
|
+
$carbon--magenta-30: #ffafd2 !default;
|
|
563
|
+
$carbon--magenta-40: #ff7eb6 !default;
|
|
564
|
+
$carbon--magenta-50: #ee5396 !default;
|
|
565
|
+
$carbon--magenta-60: #d02670 !default;
|
|
566
|
+
$carbon--magenta-70: #9f1853 !default;
|
|
567
|
+
$carbon--magenta-80: #740937 !default;
|
|
568
|
+
$carbon--magenta-90: #510224 !default;
|
|
569
|
+
$carbon--magenta-100: #2a0a18 !default;
|
|
570
|
+
$carbon--orange-40: #ff832b !default;
|
|
571
|
+
$carbon--orange-60: #ba4e00 !default;
|
|
572
|
+
$carbon--orange-70: #8a3800 !default;
|
|
573
|
+
$carbon--purple-10: #f6f2ff !default;
|
|
574
|
+
$carbon--purple-20: #e8daff !default;
|
|
575
|
+
$carbon--purple-30: #d4bbff !default;
|
|
576
|
+
$carbon--purple-40: #be95ff !default;
|
|
577
|
+
$carbon--purple-50: #a56eff !default;
|
|
578
|
+
$carbon--purple-60: #8a3ffc !default;
|
|
579
|
+
$carbon--purple-70: #6929c4 !default;
|
|
580
|
+
$carbon--purple-80: #491d8b !default;
|
|
581
|
+
$carbon--purple-90: #31135e !default;
|
|
582
|
+
$carbon--purple-100: #1c0f30 !default;
|
|
583
|
+
$carbon--red-10: #fff1f1 !default;
|
|
584
|
+
$carbon--red-20: #ffd7d9 !default;
|
|
585
|
+
$carbon--red-30: #ffb3b8 !default;
|
|
586
|
+
$carbon--red-40: #ff8389 !default;
|
|
587
|
+
$carbon--red-50: #fa4d56 !default;
|
|
588
|
+
$carbon--red-60: #da1e28 !default;
|
|
589
|
+
$carbon--red-70: #a2191f !default;
|
|
590
|
+
$carbon--red-80: #750e13 !default;
|
|
591
|
+
$carbon--red-90: #520408 !default;
|
|
592
|
+
$carbon--red-100: #2d0709 !default;
|
|
593
|
+
$carbon--teal-10: #d9fbfb !default;
|
|
594
|
+
$carbon--teal-20: #9ef0f0 !default;
|
|
595
|
+
$carbon--teal-30: #3ddbd9 !default;
|
|
596
|
+
$carbon--teal-40: #08bdba !default;
|
|
597
|
+
$carbon--teal-50: #009d9a !default;
|
|
598
|
+
$carbon--teal-60: #007d79 !default;
|
|
599
|
+
$carbon--teal-70: #005d5d !default;
|
|
600
|
+
$carbon--teal-80: #004144 !default;
|
|
601
|
+
$carbon--teal-90: #022b30 !default;
|
|
602
|
+
$carbon--teal-100: #081a1c !default;
|
|
603
|
+
$carbon--warm-gray-10: #f7f3f2 !default;
|
|
604
|
+
$carbon--warm-gray-20: #e5e0df !default;
|
|
605
|
+
$carbon--warm-gray-30: #cac5c4 !default;
|
|
606
|
+
$carbon--warm-gray-40: #ada8a8 !default;
|
|
607
|
+
$carbon--warm-gray-50: #8f8b8b !default;
|
|
608
|
+
$carbon--warm-gray-60: #726e6e !default;
|
|
609
|
+
$carbon--warm-gray-70: #565151 !default;
|
|
610
|
+
$carbon--warm-gray-80: #3c3838 !default;
|
|
611
|
+
$carbon--warm-gray-90: #272525 !default;
|
|
612
|
+
$carbon--warm-gray-100: #171414 !default;
|
|
613
|
+
$carbon--white-0: #ffffff !default;
|
|
614
|
+
$carbon--yellow-20: #fdd13a !default;
|
|
615
|
+
$carbon--yellow-30: #f1c21b !default;
|
|
616
|
+
$carbon--yellow-40: #d2a106 !default;
|
|
617
|
+
$carbon--yellow-50: #b28600 !default;
|
|
618
|
+
$black-100: #000000 !default;
|
|
619
|
+
$blue-10: #edf5ff !default;
|
|
620
|
+
$blue-20: #d0e2ff !default;
|
|
621
|
+
$blue-30: #a6c8ff !default;
|
|
622
|
+
$blue-40: #78a9ff !default;
|
|
623
|
+
$blue-50: #4589ff !default;
|
|
624
|
+
$blue-60: #0f62fe !default;
|
|
625
|
+
$blue-70: #0043ce !default;
|
|
626
|
+
$blue-80: #002d9c !default;
|
|
627
|
+
$blue-90: #001d6c !default;
|
|
628
|
+
$blue-100: #001141 !default;
|
|
629
|
+
$cool-gray-10: #f2f4f8 !default;
|
|
630
|
+
$cool-gray-20: #dde1e6 !default;
|
|
631
|
+
$cool-gray-30: #c1c7cd !default;
|
|
632
|
+
$cool-gray-40: #a2a9b0 !default;
|
|
633
|
+
$cool-gray-50: #878d96 !default;
|
|
634
|
+
$cool-gray-60: #697077 !default;
|
|
635
|
+
$cool-gray-70: #4d5358 !default;
|
|
636
|
+
$cool-gray-80: #343a3f !default;
|
|
637
|
+
$cool-gray-90: #21272a !default;
|
|
638
|
+
$cool-gray-100: #121619 !default;
|
|
639
|
+
$cyan-10: #e5f6ff !default;
|
|
640
|
+
$cyan-20: #bae6ff !default;
|
|
641
|
+
$cyan-30: #82cfff !default;
|
|
642
|
+
$cyan-40: #33b1ff !default;
|
|
643
|
+
$cyan-50: #1192e8 !default;
|
|
644
|
+
$cyan-60: #0072c3 !default;
|
|
645
|
+
$cyan-70: #00539a !default;
|
|
646
|
+
$cyan-80: #003a6d !default;
|
|
647
|
+
$cyan-90: #012749 !default;
|
|
648
|
+
$cyan-100: #061727 !default;
|
|
649
|
+
$gray-10: #f4f4f4 !default;
|
|
650
|
+
$gray-20: #e0e0e0 !default;
|
|
651
|
+
$gray-30: #c6c6c6 !default;
|
|
652
|
+
$gray-40: #a8a8a8 !default;
|
|
653
|
+
$gray-50: #8d8d8d !default;
|
|
654
|
+
$gray-60: #6f6f6f !default;
|
|
655
|
+
$gray-70: #525252 !default;
|
|
656
|
+
$gray-80: #393939 !default;
|
|
657
|
+
$gray-90: #262626 !default;
|
|
658
|
+
$gray-100: #161616 !default;
|
|
659
|
+
$green-10: #defbe6 !default;
|
|
660
|
+
$green-20: #a7f0ba !default;
|
|
661
|
+
$green-30: #6fdc8c !default;
|
|
662
|
+
$green-40: #42be65 !default;
|
|
663
|
+
$green-50: #24a148 !default;
|
|
664
|
+
$green-60: #198038 !default;
|
|
665
|
+
$green-70: #0e6027 !default;
|
|
666
|
+
$green-80: #044317 !default;
|
|
667
|
+
$green-90: #022d0d !default;
|
|
668
|
+
$green-100: #071908 !default;
|
|
669
|
+
$magenta-10: #fff0f7 !default;
|
|
670
|
+
$magenta-20: #ffd6e8 !default;
|
|
671
|
+
$magenta-30: #ffafd2 !default;
|
|
672
|
+
$magenta-40: #ff7eb6 !default;
|
|
673
|
+
$magenta-50: #ee5396 !default;
|
|
674
|
+
$magenta-60: #d02670 !default;
|
|
675
|
+
$magenta-70: #9f1853 !default;
|
|
676
|
+
$magenta-80: #740937 !default;
|
|
677
|
+
$magenta-90: #510224 !default;
|
|
678
|
+
$magenta-100: #2a0a18 !default;
|
|
679
|
+
$orange-40: #ff832b !default;
|
|
680
|
+
$orange-60: #ba4e00 !default;
|
|
681
|
+
$orange-70: #8a3800 !default;
|
|
682
|
+
$purple-10: #f6f2ff !default;
|
|
683
|
+
$purple-20: #e8daff !default;
|
|
684
|
+
$purple-30: #d4bbff !default;
|
|
685
|
+
$purple-40: #be95ff !default;
|
|
686
|
+
$purple-50: #a56eff !default;
|
|
687
|
+
$purple-60: #8a3ffc !default;
|
|
688
|
+
$purple-70: #6929c4 !default;
|
|
689
|
+
$purple-80: #491d8b !default;
|
|
690
|
+
$purple-90: #31135e !default;
|
|
691
|
+
$purple-100: #1c0f30 !default;
|
|
692
|
+
$red-10: #fff1f1 !default;
|
|
693
|
+
$red-20: #ffd7d9 !default;
|
|
694
|
+
$red-30: #ffb3b8 !default;
|
|
695
|
+
$red-40: #ff8389 !default;
|
|
696
|
+
$red-50: #fa4d56 !default;
|
|
697
|
+
$red-60: #da1e28 !default;
|
|
698
|
+
$red-70: #a2191f !default;
|
|
699
|
+
$red-80: #750e13 !default;
|
|
700
|
+
$red-90: #520408 !default;
|
|
701
|
+
$red-100: #2d0709 !default;
|
|
702
|
+
$teal-10: #d9fbfb !default;
|
|
703
|
+
$teal-20: #9ef0f0 !default;
|
|
704
|
+
$teal-30: #3ddbd9 !default;
|
|
705
|
+
$teal-40: #08bdba !default;
|
|
706
|
+
$teal-50: #009d9a !default;
|
|
707
|
+
$teal-60: #007d79 !default;
|
|
708
|
+
$teal-70: #005d5d !default;
|
|
709
|
+
$teal-80: #004144 !default;
|
|
710
|
+
$teal-90: #022b30 !default;
|
|
711
|
+
$teal-100: #081a1c !default;
|
|
712
|
+
$warm-gray-10: #f7f3f2 !default;
|
|
713
|
+
$warm-gray-20: #e5e0df !default;
|
|
714
|
+
$warm-gray-30: #cac5c4 !default;
|
|
715
|
+
$warm-gray-40: #ada8a8 !default;
|
|
716
|
+
$warm-gray-50: #8f8b8b !default;
|
|
717
|
+
$warm-gray-60: #726e6e !default;
|
|
718
|
+
$warm-gray-70: #565151 !default;
|
|
719
|
+
$warm-gray-80: #3c3838 !default;
|
|
720
|
+
$warm-gray-90: #272525 !default;
|
|
721
|
+
$warm-gray-100: #171414 !default;
|
|
722
|
+
$white-0: #ffffff !default;
|
|
723
|
+
$yellow-20: #fdd13a !default;
|
|
724
|
+
$yellow-30: #f1c21b !default;
|
|
725
|
+
$yellow-40: #d2a106 !default;
|
|
726
|
+
$yellow-50: #b28600 !default;
|
|
508
727
|
$carbon--colors: (
|
|
509
728
|
'black': (
|
|
510
729
|
100: #000000,
|
|
@@ -667,5 +886,5 @@
|
|
|
667
886
|
40: #d2a106,
|
|
668
887
|
50: #b28600,
|
|
669
888
|
),
|
|
670
|
-
) !default
|
|
889
|
+
) !default;
|
|
671
890
|
}
|