asksuite-citrus 3.6.7-beta.0 → 3.7.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.
Files changed (29) hide show
  1. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  2. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  3. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  4. package/esm2022/lib/components/box/box.component.mjs +2 -2
  5. package/esm2022/lib/components/button/button.component.mjs +2 -2
  6. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  7. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  8. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  9. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  10. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  11. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  12. package/esm2022/lib/components/input/input.component.mjs +2 -2
  13. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  14. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  15. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  16. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
  17. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  18. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  19. package/esm2022/lib/components/select/select.component.mjs +2 -2
  20. package/esm2022/lib/components/table/table.component.mjs +2 -2
  21. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  22. package/esm2022/lib/directives/button/ask-base-button.directive.mjs +1 -1
  23. package/fesm2022/asksuite-citrus.mjs +42 -42
  24. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  25. package/lib/directives/button/ask-base-button.directive.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/styles/button.scss +10 -2
  28. package/styles/colors.scss +297 -5
  29. package/styles/font-sizes.scss +8 -6
@@ -11,7 +11,7 @@ export declare abstract class AskBaseButtonDirective implements OnChanges {
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<AskBaseButtonDirective, never>;
12
12
  static ɵdir: i0.ɵɵDirectiveDeclaration<AskBaseButtonDirective, never, never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
13
13
  }
14
- type ButtonSize = 'x-large' | 'large' | 'default' | 'medium' | 'small' | 'mini';
14
+ type ButtonSize = 'x-large' | 'large' | 'default' | 'medium' | 'small' | 'mini' | 'x-mini';
15
15
  export type ButtonAppearance = 'outline' | 'text' | 'default';
16
16
  export type ButtonColor = 'primary' | 'secondary' | 'danger';
17
17
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.6.7-beta.0",
3
+ "version": "3.7.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",
@@ -1,7 +1,7 @@
1
1
  @import "./tokens";
2
2
 
3
3
  @mixin baseButton {
4
- display: flex;
4
+ display: inline-flex;
5
5
  flex-direction: row;
6
6
  align-items: center;
7
7
  justify-content: center;
@@ -14,7 +14,7 @@
14
14
  transition: background-color .1s, box-shadow .1s;
15
15
  cursor: pointer;
16
16
  font-weight: $font-weight-medium;
17
- color: var(--grey-500);
17
+ color: var(--color-text-contrast);
18
18
 
19
19
  &.-x-large {
20
20
  padding: 24px 32px;
@@ -35,6 +35,13 @@
35
35
  &.-mini {
36
36
  padding: 4px 8px;
37
37
  }
38
+
39
+ &.-x-mini{
40
+ padding: 2px 4px;
41
+ font-size: 11px;
42
+ border-radius: $radii-xs;
43
+ font-size: $font-xxs;
44
+ }
38
45
  }
39
46
 
40
47
  .ask-button {
@@ -50,6 +57,7 @@
50
57
  }
51
58
  &:hover:not(:disabled) {
52
59
  box-shadow: 0 0 6px rgba(255, 87, 36, 0.4);
60
+ background-color: $color-background-accent-grey-subtlest-hovered;
53
61
  }
54
62
 
55
63
  &.-primary:active:not(:disabled) {
@@ -265,13 +265,14 @@ $color-light-neutral-NLA200: $color-nla-200;
265
265
  $color-light-neutral-NLA300: #13293921;
266
266
  // livechat - tokens
267
267
 
268
+
269
+ //TODO: REMOVE DUPLICATE SEMANTICS
268
270
  $color-texticon-brand-asksuite-contrast: $color-a-600;
269
271
  $color-texticon-inverse-default: $color-nl-0;
270
272
  $color-texticon-contrast: $color-nla-1500;
271
273
  $color-texticon-subtle: $color-nla-1200;
272
274
  $color-texticon-subtlest: $color-nla-1000;
273
275
  $color-texticon-disabled: $color-nla-700;
274
- $color-texticon-link-default: $color-b-500;
275
276
 
276
277
  $color-elevation-surface-selected-ask: $color-a-100;
277
278
  $color-elevation-surface-sunken-default: $color-nl-0;
@@ -292,8 +293,302 @@ $color-text-contrast: $color-nla-1500;
292
293
  $color-text-subtlest: $color-nla-1000;
293
294
  $color-text-disabled: #13293961;
294
295
 
296
+
297
+
298
+
299
+ $color-background-accent-blue-bold-default: $color-b-800;
300
+ $color-background-accent-blue-bold-hovered: $color-b-900;
301
+ $color-background-accent-blue-bold-pressed: $color-b-1000;
302
+ $color-background-accent-blue-contrast-default: $color-b-600;
303
+ $color-background-accent-blue-contrast-hovered: $color-b-700;
304
+ $color-background-accent-blue-contrast-pressed: $color-b-800;
305
+ $color-background-accent-blue-subtle-default: $color-b-400;
306
+ $color-background-accent-blue-subtle-hovered: $color-b-500;
307
+ $color-background-accent-blue-subtle-pressed: $color-b-600;
308
+ $color-background-accent-blue-subtlest-default: $color-b-200;
309
+ $color-background-accent-blue-subtlest-hovered: $color-b-300;
310
+ $color-background-accent-blue-subtlest-pressed: $color-b-400;
311
+ $color-background-accent-green-bold-default: $color-g-800;
312
+ $color-background-accent-green-bold-hovered: $color-g-900;
313
+ $color-background-accent-green-bold-pressed: $color-g-1000;
314
+ $color-background-accent-green-contrast-default: $color-g-600;
315
+ $color-background-accent-green-contrast-hovered: $color-g-700;
316
+ $color-background-accent-green-contrast-pressed: $color-g-800;
317
+ $color-background-accent-green-subtle-default: $color-g-400;
318
+ $color-background-accent-green-subtle-hovered: $color-g-500;
319
+ $color-background-accent-green-subtle-pressed: $color-g-600;
320
+ $color-background-accent-green-subtlest-default: $color-g-200;
321
+ $color-background-accent-green-subtlest-hovered: $color-g-300;
322
+ $color-background-accent-green-subtlest-pressed: $color-g-400;
323
+ $color-background-accent-grey-bold-default: $color-nl-1400;
324
+ $color-background-accent-grey-bold-hovered: $color-nl-1600;
325
+ $color-background-accent-grey-bold-pressed: $color-nl-1700;
326
+ $color-background-accent-grey-bolder-default: $color-nl-1700;
327
+ $color-background-accent-grey-bolder-hovered: $color-nl-1500;
328
+ $color-background-accent-grey-bolder-pressed: $color-nl-1400;
329
+ $color-background-accent-grey-contrast-default: $color-nl-1000;
330
+ $color-background-accent-grey-contrast-hovered: $color-nl-1200;
331
+ $color-background-accent-grey-contrast-pressed: $color-nl-1300;
332
+ $color-background-accent-grey-disabled: $color-nl-300;
333
+ $color-background-accent-grey-inverse-default: $color-nl-0;
334
+ $color-background-accent-grey-inverse-hovered: $color-nl-200;
335
+ $color-background-accent-grey-inverse-pressed: $color-nl-300;
336
+ $color-background-accent-grey-subtle-default: $color-nl-500;
337
+ $color-background-accent-grey-subtle-hovered: $color-nl-700;
338
+ $color-background-accent-grey-subtle-pressed: $color-nl-800;
339
+ $color-background-accent-grey-subtler-default: $color-nl-200;
340
+ $color-background-accent-grey-subtler-hovered: $color-nl-400;
341
+ $color-background-accent-grey-subtler-pressed: $color-nl-500;
342
+ $color-background-accent-grey-subtlest-default: $color-nl-100;
343
+ $color-background-accent-grey-subtlest-hovered: $color-nl-300;
344
+ $color-background-accent-grey-subtlest-pressed: $color-nl-400;
345
+ $color-background-accent-lime-bold-default: $color-l-800;
346
+ $color-background-accent-lime-bold-hovered: $color-l-900;
347
+ $color-background-accent-lime-bold-pressed: $color-l-1000;
348
+ $color-background-accent-lime-contrast-default: $color-l-600;
349
+ $color-background-accent-lime-contrast-hovered: $color-l-700;
350
+ $color-background-accent-lime-contrast-pressed: $color-l-800;
351
+ $color-background-accent-lime-subtle-default: $color-l-400;
352
+ $color-background-accent-lime-subtle-hovered: $color-l-500;
353
+ $color-background-accent-lime-subtle-pressed: $color-l-600;
354
+ $color-background-accent-lime-subtlest-default: $color-l-200;
355
+ $color-background-accent-lime-subtlest-hovered: $color-l-300;
356
+ $color-background-accent-lime-subtlest-pressed: $color-l-400;
357
+ $color-background-accent-magenta-bold-default: $color-m-800;
358
+ $color-background-accent-magenta-bold-hovered: $color-m-900;
359
+ $color-background-accent-magenta-bold-pressed: $color-m-1000;
360
+ $color-background-accent-magenta-contrast-default: $color-m-600;
361
+ $color-background-accent-magenta-contrast-hovered: $color-m-700;
362
+ $color-background-accent-magenta-contrast-pressed: $color-m-800;
363
+ $color-background-accent-magenta-subtle-default: $color-m-400;
364
+ $color-background-accent-magenta-subtle-hovered: $color-m-500;
365
+ $color-background-accent-magenta-subtle-pressed: $color-m-600;
366
+ $color-background-accent-magenta-subtlest-default: $color-m-200;
367
+ $color-background-accent-magenta-subtlest-hovered: $color-m-300;
368
+ $color-background-accent-magenta-subtlest-pressed: $color-m-400;
369
+ $color-background-accent-orange-bold-default: $color-o-800;
370
+ $color-background-accent-orange-bold-hovered: $color-o-900;
371
+ $color-background-accent-orange-bold-pressed: $color-o-1000;
372
+ $color-background-accent-orange-contrast-default: $color-o-600;
373
+ $color-background-accent-orange-contrast-hovered: $color-o-700;
374
+ $color-background-accent-orange-contrast-pressed: $color-o-800;
375
+ $color-background-accent-orange-subtle-default: $color-o-400;
376
+ $color-background-accent-orange-subtle-hovered: $color-o-500;
377
+ $color-background-accent-orange-subtle-pressed: $color-o-600;
378
+ $color-background-accent-orange-subtlest-default: $color-o-200;
379
+ $color-background-accent-orange-subtlest-hovered: $color-o-300;
380
+ $color-background-accent-orange-subtlest-pressed: $color-o-400;
381
+ $color-background-accent-purple-bold-default: $color-p-800;
382
+ $color-background-accent-purple-bold-hovered: $color-p-900;
383
+ $color-background-accent-purple-bold-pressed: $color-p-1000;
384
+ $color-background-accent-purple-contrast-default: $color-p-600;
385
+ $color-background-accent-purple-contrast-hovered: $color-p-700;
386
+ $color-background-accent-purple-contrast-pressed: $color-p-800;
387
+ $color-background-accent-purple-subtle-default: $color-p-400;
388
+ $color-background-accent-purple-subtle-hovered: $color-p-500;
389
+ $color-background-accent-purple-subtle-pressed: $color-p-600;
390
+ $color-background-accent-purple-subtlest-default: $color-p-200;
391
+ $color-background-accent-purple-subtlest-hovered: $color-p-300;
392
+ $color-background-accent-purple-subtlest-pressed: $color-p-400;
393
+ $color-background-accent-red-bold-default: $color-r-800;
394
+ $color-background-accent-red-bold-hovered: $color-r-900;
395
+ $color-background-accent-red-bold-pressed: $color-r-1000;
396
+ $color-background-accent-red-contrast-default: $color-r-600;
397
+ $color-background-accent-red-contrast-hovered: $color-r-700;
398
+ $color-background-accent-red-contrast-pressed: $color-r-800;
399
+ $color-background-accent-red-subtle-default: $color-r-400;
400
+ $color-background-accent-red-subtle-hovered: $color-r-500;
401
+ $color-background-accent-red-subtle-pressed: $color-r-600;
402
+ $color-background-accent-red-subtlest-default: $color-r-200;
403
+ $color-background-accent-red-subtlest-hovered: $color-r-300;
404
+ $color-background-accent-red-subtlest-pressed: $color-r-400;
405
+ $color-background-accent-teal-bold-default: $color-t-800;
406
+ $color-background-accent-teal-bold-hovered: $color-t-900;
407
+ $color-background-accent-teal-bold-pressed: $color-t-1000;
408
+ $color-background-accent-teal-contrast-default: $color-t-600;
409
+ $color-background-accent-teal-contrast-hovered: $color-t-700;
410
+ $color-background-accent-teal-contrast-pressed: $color-t-800;
411
+ $color-background-accent-teal-subtler-default: $color-t-400;
412
+ $color-background-accent-teal-subtler-hovered: $color-t-500;
413
+ $color-background-accent-teal-subtler-pressed: $color-t-600;
414
+ $color-background-accent-teal-subtlest-default: $color-t-200;
415
+ $color-background-accent-teal-subtlest-hovered: $color-t-300;
416
+ $color-background-accent-teal-subtlest-pressed: $color-t-400;
417
+ $color-background-accent-violet-bold-default: $color-v-800;
418
+ $color-background-accent-violet-bold-hovered: $color-v-900;
419
+ $color-background-accent-violet-bold-pressed: $color-v-1000;
420
+ $color-background-accent-violet-contrast-default: $color-v-600;
421
+ $color-background-accent-violet-contrast-hovered: $color-v-700;
422
+ $color-background-accent-violet-contrast-pressed: $color-v-800;
423
+ $color-background-accent-violet-subtle-default: $color-v-400;
424
+ $color-background-accent-violet-subtle-hovered: $color-v-500;
425
+ $color-background-accent-violet-subtle-pressed: $color-v-600;
426
+ $color-background-accent-violet-subtlest-default: $color-v-200;
427
+ $color-background-accent-violet-subtlest-hovered: $color-v-300;
428
+ $color-background-accent-violet-subtlest-pressed: $color-v-400;
429
+ $color-background-accent-yellow-bold-default: $color-y-800;
430
+ $color-background-accent-yellow-bold-hovered: $color-y-900;
431
+ $color-background-accent-yellow-bold-pressed: $color-y-1000;
432
+ $color-background-accent-yellow-contrast-default: $color-y-600;
433
+ $color-background-accent-yellow-contrast-hovered: $color-y-700;
434
+ $color-background-accent-yellow-contrast-pressed: $color-y-800;
435
+ $color-background-accent-yellow-subtle-default: $color-y-400;
436
+ $color-background-accent-yellow-subtle-hovered: $color-y-500;
437
+ $color-background-accent-yellow-subtle-pressed: $color-y-600;
438
+ $color-background-accent-yellow-subtlest-default: $color-y-200;
439
+ $color-background-accent-yellow-subtlest-hovered: $color-y-300;
440
+ $color-background-accent-yellow-subtlest-pressed: $color-y-400;
441
+ $color-background-alpha-bolder-default: $color-nla-1600;
442
+ $color-background-alpha-bolder-hovered: $color-nla-1400;
443
+ $color-background-alpha-bolder-pressed: $color-nla-1200;
444
+ $color-background-alpha-subtler-default: $color-nla-400;
445
+ $color-background-alpha-subtler-hovered: $color-nla-600;
446
+ $color-background-alpha-subtler-pressed: $color-nla-700;
447
+ $color-background-alpha-subtlest-default: $color-nla-200;
448
+ $color-background-alpha-subtlest-hovered: $color-nla-400;
449
+ $color-background-alpha-subtlest-pressed: $color-nla-500;
450
+ $color-background-bounding-box: $color-nla-0;
451
+ $color-background-danger-contrast-default: $color-r-600;
452
+ $color-background-danger-contrast-hovered: $color-r-700;
453
+ $color-background-danger-contrast-pressed: $color-r-800;
454
+ $color-background-disabled: $color-nla-200;
455
+ $color-background-info-contrast-enabled: $color-b-600;
456
+ $color-background-info-contrast-hovered: $color-b-700;
457
+ $color-background-info-contrast-pressed: $color-b-800;
458
+ $color-background-inverse-default: $color-nl-0;
459
+ $color-background-inverse-hovered: $color-nla-200;
460
+ $color-background-inverse-pressed: $color-nla-300;
461
+ $color-background-success-contrast-default: $color-g-600;
462
+ $color-background-success-contrast-hovered: $color-g-700;
463
+ $color-background-success-contrast-pressed: $color-g-800;
464
+ $color-background-warning-contrast-default: $color-y-500;
465
+ $color-background-warning-contrast-hovered: $color-y-600;
466
+ $color-background-warning-contrast-pressed: $color-y-700;
467
+
468
+ $color-border-accent-blue: $color-b-600;
469
+ $color-border-accent-green: $color-g-600;
470
+ $color-border-accent-grey: $color-nl-1000;
471
+ $color-border-accent-lime: $color-l-600;
472
+ $color-border-accent-magenta: $color-m-600;
473
+ $color-border-accent-orange: $color-o-600;
474
+ $color-border-accent-purple: $color-p-600;
475
+ $color-border-accent-red: $color-r-600;
476
+ $color-border-accent-teal: $color-t-600;
477
+ $color-border-accent-violet: $color-v-600;
478
+ $color-border-accent-yellow: $color-y-600;
479
+ $color-border-danger: $color-r-700;
480
+ $color-border-default: $color-nla-200;
481
+ $color-border-high-contrast-black-default: $color-nd-200;
482
+ $color-border-high-contrast-black-disabled: $color-nla-1000;
483
+ $color-border-high-contrast-white-default: $color-nl-0;
484
+ $color-border-high-contrast-white-disabled: $color-nda-1000;
485
+ $color-border-info: $color-b-700;
486
+ $color-border-inverse-contrast: $color-nl-0;
487
+ $color-border-inverse-disabled: $color-nda-300;
488
+ $color-border-inverse-subtle: $color-nl-400;
489
+ $color-border-link-default: $color-b-500;
490
+ $color-border-link-visited: $color-p-500;
491
+ $color-border-success: $color-g-700;
492
+ $color-border-warning: $color-y-700;
493
+
295
494
  $color-divider-default: $color-nl-400;
296
- $color-skeleton: $color-nla-200;
495
+
496
+ $color-elevation-surface-default-default: $color-nl-100;
497
+ $color-elevation-surface-default-hovered: $color-nl-200;
498
+ $color-elevation-surface-sunken-default: $color-nl-0;
499
+ $color-elevation-surface-sunken-hovered: $color-nl-100;
500
+
501
+ $color-texticon-accent-blue-bold: $color-b-800;
502
+ $color-texticon-accent-blue-contrast: $color-b-600;
503
+ $color-texticon-accent-green-bold: $color-g-800;
504
+ $color-texticon-accent-green-contrast: $color-g-600;
505
+ $color-texticon-accent-grey-bold: $color-nl-1300;
506
+ $color-texticon-accent-grey-contrast: $color-nl-1000;
507
+ $color-texticon-accent-lime-bold: $color-l-800;
508
+ $color-texticon-accent-lime-contrast: $color-l-600;
509
+ $color-texticon-accent-magenta-bold: $color-m-800;
510
+ $color-texticon-accent-magenta-contrast: $color-m-600;
511
+ $color-texticon-accent-orange-bold: $color-o-800;
512
+ $color-texticon-accent-orange-contrast: $color-o-600;
513
+ $color-texticon-accent-purple-bold: $color-p-800;
514
+ $color-texticon-accent-purple-contrast: $color-p-600;
515
+ $color-texticon-accent-red-bold: $color-r-800;
516
+ $color-texticon-accent-red-contrast: $color-r-600;
517
+ $color-texticon-accent-teal-bold: $color-t-800;
518
+ $color-texticon-accent-teal-contrast: $color-t-600;
519
+ $color-texticon-accent-violet-bold: $color-v-800;
520
+ $color-texticon-accent-violet-contrast: $color-v-600;
521
+ $color-texticon-accent-yellow-bold: $color-y-800;
522
+ $color-texticon-accent-yellow-contrast: $color-y-600;
523
+ $color-texticon-contrast: $color-nla-1500;
524
+ $color-texticon-disabled: $color-nla-700;
525
+ $color-texticon-high-contrast-black-default: $color-nla-1500;
526
+ $color-texticon-high-contrast-black-disabled: $color-nla-1000;
527
+ $color-texticon-high-contrast-white-default: $color-nl-0;
528
+ $color-texticon-high-contrast-white-disabled: $color-nda-1000;
529
+ $color-texticon-inverse-default: $color-nl-0;
530
+ $color-texticon-inverse-disabled: $color-nda-1000;
531
+ $color-texticon-link-default: $color-b-500;
532
+ $color-texticon-link-visited: $color-p-500;
533
+ $color-texticon-subtle: $color-nla-1200;
534
+ $color-texticon-subtlest: $color-nla-1000;
535
+
536
+ $color-background-brand-asksuite-bold-default: $color-a-700;
537
+ $color-background-brand-asksuite-bold-hovered: $color-a-800;
538
+ $color-background-brand-asksuite-bold-pressed: $color-a-900;
539
+ $color-background-brand-asksuite-contrast-default: $color-a-600;
540
+ $color-background-brand-asksuite-contrast-hovered: $color-a-700;
541
+ $color-background-brand-asksuite-contrast-pressed: $color-a-800;
542
+ $color-background-brand-asksuite-subtler-default: $color-a-200;
543
+ $color-background-brand-asksuite-subtler-hovered: $color-a-300;
544
+ $color-background-brand-asksuite-subtler-pressed: $color-a-400;
545
+ $color-background-brand-asksuite-subtlest-default: $color-a-100;
546
+ $color-background-brand-asksuite-subtlest-hovered: $color-a-200;
547
+ $color-background-brand-asksuite-subtlest-pressed: $color-a-300;
548
+ $color-background-brand-flow-bold-default: $color-f-700;
549
+ $color-background-brand-flow-bold-hovered: $color-f-800;
550
+ $color-background-brand-flow-bold-pressed: $color-f-900;
551
+ $color-background-brand-flow-contrast-default: $color-f-500;
552
+ $color-background-brand-flow-contrast-hovered: $color-f-600;
553
+ $color-background-brand-flow-contrast-pressed: $color-f-700;
554
+ $color-background-brand-flow-subtler-default: $color-f-200;
555
+ $color-background-brand-flow-subtler-hovered: $color-f-300;
556
+ $color-background-brand-flow-subtler-pressed: $color-f-400;
557
+ $color-background-brand-flow-subtlest-default: $color-f-100;
558
+ $color-background-brand-flow-subtlest-hovered: $color-f-200;
559
+ $color-background-brand-flow-subtlest-pressed: $color-f-300;
560
+
561
+ $color-background-selected-ask: $color-a-100;
562
+ $color-background-selected-flow: $color-f-100;
563
+
564
+ $color-border-brand-asksuite-bold: $color-a-700;
565
+ $color-border-brand-asksuite-bolder: $color-a-900;
566
+ $color-border-brand-asksuite-contrast: $color-a-500;
567
+ $color-border-brand-asksuite-subtle: $color-a-300;
568
+ $color-border-brand-asksuite-subtler: $color-a-100;
569
+ $color-border-brand-flow-bold: $color-f-700;
570
+ $color-border-brand-flow-bolder: $color-f-900;
571
+ $color-border-brand-flow-contrast: $color-f-500;
572
+ $color-border-brand-flow-subtle: $color-f-300;
573
+ $color-border-brand-flow-subtler: $color-f-100;
574
+
575
+ $color-skeleton: $color-background-alpha-subtlest-default;
576
+
577
+ $color-texticon-brand-asksuite-bold: $color-a-700;
578
+ $color-texticon-brand-asksuite-bolder: $color-a-900;
579
+ $color-texticon-brand-asksuite-contrast: $color-a-600;
580
+ $color-texticon-brand-asksuite-subtle: $color-a-300;
581
+ $color-texticon-brand-asksuite-subtler: $color-a-100;
582
+ $color-texticon-brand-flow-bold: $color-f-700;
583
+ $color-texticon-brand-flow-bolder: $color-f-900;
584
+ $color-texticon-brand-flow-contrast: $color-f-500;
585
+ $color-texticon-brand-flow-subtle: $color-f-300;
586
+ $color-texticon-brand-flow-subtler: $color-f-100;
587
+ $color-texticon-danger: $color-texticon-accent-red-contrast;
588
+ $color-texticon-info: $color-texticon-accent-blue-contrast;
589
+ $color-texticon-success: $color-texticon-accent-green-contrast;
590
+ $color-texticon-warning: $color-texticon-accent-yellow-contrast;
591
+
297
592
 
298
593
  :root {
299
594
  // brand
@@ -380,7 +675,4 @@ $color-skeleton: $color-nla-200;
380
675
  --color-text-contrast: #{$color-text-contrast};
381
676
  --color-text-subtlest: #{$color-text-subtlest};
382
677
  --color-text-disabled: #{$color-text-disabled};
383
- --color-texticon-link-default: #{$color-texticon-link-default};
384
- --color-divider-default: #{$color-divider-default};
385
- --color-skeleton: #{$color-skeleton};
386
678
  }
@@ -1,11 +1,13 @@
1
- $font-xs: 0.75rem; // 12px
2
- $font-sm: 0.875rem; // 14px
3
- $font-md: 1rem; // 16px
4
- $font-lg: 1.125rem; // 18px
5
- $font-xl: 1.25rem; // 20px
6
- $font-xxl: 1.5rem; // 24px
1
+ $font-xxs: 11px;
2
+ $font-xs: 12px;
3
+ $font-sm: 14px;
4
+ $font-md: 16px;
5
+ $font-lg: 18px;
6
+ $font-xl: 20px;
7
+ $font-xxl: 24px;
7
8
 
8
9
  :root {
10
+ --font-xxs: $font-xxs;
9
11
  --font-xs: $font-xs;
10
12
  --font-sm: $font-sm;
11
13
  --font-md: $font-md;