@gitlab/ui 87.8.0 → 88.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/index.css +2 -2
  3. package/dist/index.css.map +1 -1
  4. package/dist/tokens/build/js/tokens.dark.js +124 -5
  5. package/dist/tokens/build/js/tokens.js +124 -5
  6. package/dist/tokens/css/tokens.css +123 -4
  7. package/dist/tokens/css/tokens.dark.css +123 -4
  8. package/dist/tokens/js/tokens.dark.js +123 -4
  9. package/dist/tokens/js/tokens.js +123 -4
  10. package/dist/tokens/json/tokens.dark.json +2904 -32
  11. package/dist/tokens/json/tokens.json +2904 -32
  12. package/dist/tokens/scss/_tokens.dark.scss +123 -4
  13. package/dist/tokens/scss/_tokens.scss +123 -4
  14. package/dist/tokens/scss/_tokens_custom_properties.scss +123 -4
  15. package/package.json +3 -3
  16. package/src/components/base/button/button.scss +273 -258
  17. package/src/components/base/keyset_pagination/keyset_pagination.scss +0 -7
  18. package/src/components/base/search_box_by_click/search_box_by_click.scss +2 -3
  19. package/src/components/base/tooltip/tooltip.scss +6 -6
  20. package/src/tokens/build/css/tokens.css +123 -4
  21. package/src/tokens/build/css/tokens.dark.css +123 -4
  22. package/src/tokens/build/js/tokens.dark.js +123 -4
  23. package/src/tokens/build/js/tokens.js +123 -4
  24. package/src/tokens/build/json/tokens.dark.json +2904 -32
  25. package/src/tokens/build/json/tokens.json +2904 -32
  26. package/src/tokens/build/scss/_tokens.dark.scss +123 -4
  27. package/src/tokens/build/scss/_tokens.scss +123 -4
  28. package/src/tokens/build/scss/_tokens_custom_properties.scss +123 -4
  29. package/src/tokens/contextual/button.tokens.json +883 -0
  30. package/src/tokens/feedback.tokens.json +13 -19
@@ -8,8 +8,8 @@
8
8
  @include gl-font-weight-normal;
9
9
  @include gl-py-3;
10
10
  @include gl-px-4;
11
- background: var(--gl-feedback-background-color-strong);
12
- color: var(--gl-feedback-text-color-strong);
11
+ background: var(--gl-feedback-strong-background-color);
12
+ color: var(--gl-feedback-strong-text-color);
13
13
  }
14
14
 
15
15
  .arrow {
@@ -32,20 +32,20 @@
32
32
 
33
33
  .gl-tooltip.bs-tooltip-top .arrow::before {
34
34
  @apply gl-border-b-0;
35
- border-top-color: var(--gl-feedback-background-color-strong);
35
+ border-top-color: var(--gl-feedback-strong-background-color);
36
36
  }
37
37
 
38
38
  .gl-tooltip.bs-tooltip-right .arrow::before {
39
39
  @apply gl-border-l-0;
40
- border-right-color: var(--gl-feedback-background-color-strong);
40
+ border-right-color: var(--gl-feedback-strong-background-color);
41
41
  }
42
42
 
43
43
  .gl-tooltip.bs-tooltip-bottom .arrow::before {
44
44
  @apply gl-border-t-0;
45
- border-bottom-color: var(--gl-feedback-background-color-strong);
45
+ border-bottom-color: var(--gl-feedback-strong-background-color);
46
46
  }
47
47
 
48
48
  .gl-tooltip.bs-tooltip-left .arrow::before {
49
49
  @apply gl-border-r-0;
50
- border-left-color: var(--gl-feedback-background-color-strong);
50
+ border-left-color: var(--gl-feedback-strong-background-color);
51
51
  }
@@ -468,10 +468,10 @@
468
468
  --gl-feedback-neutral-icon-color: var(--gl-color-neutral-600); /* Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency. */
469
469
  --gl-feedback-neutral-text-color: var(--gl-color-neutral-700); /* Used for the text of a neutral feedback item when there isn't a specific meaning or urgency. */
470
470
  --gl-feedback-neutral-background-color: var(--gl-color-neutral-50); /* Used for the background of a neutral feedback item when there isn't a specific meaning or urgency. */
471
- --gl-feedback-link-color-strong: var(--gl-color-blue-300); /* Used for a link on a strong feedback background. */
472
- --gl-feedback-icon-color-strong: var(--gl-color-neutral-0); /* Used for an icon on a strong feedback background. */
473
- --gl-feedback-text-color-strong: var(--gl-color-neutral-0); /* Used for text on a strong feedback background. */
474
- --gl-feedback-background-color-strong: var(--gl-color-neutral-950); /* Used for a background associated with feedback like a tooltip or toast message. */
471
+ --gl-feedback-strong-link-color: var(--gl-color-blue-300); /* Used for a link on a strong feedback background. */
472
+ --gl-feedback-strong-icon-color: var(--gl-color-neutral-0); /* Used for an icon on a strong feedback background. */
473
+ --gl-feedback-strong-text-color: var(--gl-color-neutral-0); /* Used for text on a strong feedback background. */
474
+ --gl-feedback-strong-background-color: var(--gl-color-neutral-950); /* Used for a background associated with strong feedback like a tooltip or toast message. */
475
475
  --gl-control-indicator-color-disabled: var(--gl-color-neutral-500); /* Used for disabled checkbox and radio button state indicators. */
476
476
  --gl-control-indicator-color-selected: var(--gl-color-neutral-0); /* Used for checkbox and radio button state indicators. */
477
477
  --gl-control-placeholder-color: var(--gl-color-neutral-400); /* Used for placeholder text within inputs. */
@@ -509,6 +509,61 @@
509
509
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
510
510
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
511
511
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
512
+ --gl-button-disabled-border-color: var(--gl-color-neutral-100); /* Used for the border of a disabled button. */
513
+ --gl-button-disabled-background-color: var(--gl-color-neutral-10); /* Used for the background of a disabled button. */
514
+ --gl-button-disabled-foreground-color: var(--gl-color-neutral-500); /* Used for the foreground of a disabled button. */
515
+ --gl-button-selected-border-color-active: var(--gl-color-neutral-600); /* Used for the border of a selected button in the active state. */
516
+ --gl-button-selected-border-color-hover: var(--gl-color-neutral-400); /* Used for the border of a selected button in the hover state. */
517
+ --gl-button-selected-border-color-default: var(--gl-color-neutral-300); /* Used for the border of a selected button in the default state. */
518
+ --gl-button-dashed-border-color-active: var(--gl-color-neutral-600); /* Used for the border of a dashed button in the active state. */
519
+ --gl-button-danger-tertiary-background-color-active: var(--gl-action-danger-background-color-active); /* Used for the background of a borderless, tertiary danger (destructive) button in the active state. */
520
+ --gl-button-danger-tertiary-background-color-hover: var(--gl-action-danger-background-color-hover); /* Used for the background of a borderless, tertiary danger (destructive) button in the hover state. */
521
+ --gl-button-danger-tertiary-background-color-default: var(--gl-action-danger-background-color-default); /* Used for the background of a borderless, tertiary danger (destructive) button in the default state. */
522
+ --gl-button-danger-secondary-border-color-active: var(--gl-color-red-900); /* Used for the border of an outlined danger (destructive) button in the active state. */
523
+ --gl-button-danger-secondary-border-color-hover: var(--gl-color-red-700); /* Used for the border of an outlined danger (destructive) button in the hover state. */
524
+ --gl-button-danger-secondary-border-color-default: var(--gl-color-red-500); /* Used for the border of an outlined danger (destructive) button in the default state. */
525
+ --gl-button-danger-secondary-background-color-active: var(--gl-color-red-100); /* Used for the background of an outlined danger (destructive) button in the active state. */
526
+ --gl-button-danger-secondary-background-color-hover: var(--gl-color-red-50); /* Used for the background of an outlined danger (destructive) button in the hover state. */
527
+ --gl-button-danger-secondary-background-color-default: var(--gl-color-neutral-0); /* Used for the background of an outlined danger (destructive) button in the default state. */
528
+ --gl-button-danger-secondary-foreground-color-active: var(--gl-color-red-900); /* Used for the foreground of a danger (destructive) button in the active state. */
529
+ --gl-button-danger-secondary-foreground-color-hover: var(--gl-color-red-700); /* Used for the foreground of a danger (destructive) button in the hover state. */
530
+ --gl-button-danger-secondary-foreground-color-default: var(--gl-color-red-500); /* Used for the foreground of a danger (destructive) button in the default state. */
531
+ --gl-button-danger-primary-border-color-active: var(--gl-color-red-900); /* Used for the border of a danger (destructive) primary button in the active state. */
532
+ --gl-button-danger-primary-border-color-hover: var(--gl-color-red-800); /* Used for the border of a danger (destructive) primary button in the hover state. */
533
+ --gl-button-danger-primary-border-color-default: var(--gl-color-red-600); /* Used for the border of a danger (destructive) primary button in the default state. */
534
+ --gl-button-danger-primary-background-color-active: var(--gl-color-red-800); /* Used for the background of a danger (destructive) primary button in the active state. */
535
+ --gl-button-danger-primary-background-color-hover: var(--gl-color-red-600); /* Used for the background of a danger (destructive) primary button in the hover state. */
536
+ --gl-button-danger-primary-background-color-default: var(--gl-color-red-500); /* Used for the background of a danger (destructive) primary button in the default state. */
537
+ --gl-button-danger-primary-foreground-color-default: var(--gl-color-neutral-0); /* Used for the foreground of a danger (destructive) primary button in the default state. */
538
+ --gl-button-confirm-tertiary-background-color-active: var(--gl-action-confirm-background-color-active); /* Used for the background of a borderless, tertiary confirm (positive) button in the active state. */
539
+ --gl-button-confirm-tertiary-background-color-hover: var(--gl-action-confirm-background-color-hover); /* Used for the background of a borderless, tertiary confirm (positive) button in the hover state. */
540
+ --gl-button-confirm-tertiary-background-color-default: var(--gl-action-confirm-background-color-default); /* Used for the background of a borderless, tertiary confirm (positive) button in the default state. */
541
+ --gl-button-confirm-secondary-border-color-active: var(--gl-color-blue-900); /* Used for the border of an outlined confirm (positive) button in the active state. */
542
+ --gl-button-confirm-secondary-border-color-hover: var(--gl-color-blue-700); /* Used for the border of an outlined confirm (positive) button in the hover state. */
543
+ --gl-button-confirm-secondary-border-color-default: var(--gl-color-blue-500); /* Used for the border of an outlined confirm (positive) button in the default state. */
544
+ --gl-button-confirm-secondary-background-color-active: var(--gl-color-blue-100); /* Used for the background of an outlined confirm (positive) button in the active state. */
545
+ --gl-button-confirm-secondary-background-color-hover: var(--gl-color-blue-50); /* Used for the background of an outlined confirm (positive) button in the hover state. */
546
+ --gl-button-confirm-secondary-background-color-default: var(--gl-color-neutral-0); /* Used for the background of an outlined confirm (positive) button in the default state. */
547
+ --gl-button-confirm-secondary-foreground-color-active: var(--gl-color-blue-900); /* Used for the foreground of a confirm (positive) button in the active state. */
548
+ --gl-button-confirm-secondary-foreground-color-hover: var(--gl-color-blue-700); /* Used for the foreground of a confirm (positive) button in the hover state. */
549
+ --gl-button-confirm-secondary-foreground-color-default: var(--gl-color-blue-500); /* Used for the foreground of a confirm (positive) button in the default state. */
550
+ --gl-button-confirm-primary-border-color-active: var(--gl-color-blue-900); /* Used for the border of a confirm (positive) primary button in the active state. */
551
+ --gl-button-confirm-primary-border-color-hover: var(--gl-color-blue-800); /* Used for the border of a confirm (positive) primary button in the hover state. */
552
+ --gl-button-confirm-primary-border-color-default: var(--gl-color-blue-600); /* Used for the border of a confirm (positive) primary button in the default state. */
553
+ --gl-button-confirm-primary-background-color-active: var(--gl-color-blue-700); /* Used for the background of a confirm (positive) primary button in the active state. */
554
+ --gl-button-confirm-primary-background-color-hover: var(--gl-color-blue-600); /* Used for the background of a confirm (positive) primary button in the hover state. */
555
+ --gl-button-confirm-primary-background-color-default: var(--gl-color-blue-500); /* Used for the background of a confirm (positive) primary button in the default state. */
556
+ --gl-button-confirm-primary-foreground-color-default: var(--gl-color-neutral-0); /* Used for the foreground of a confirm (positive) primary button in the default state. */
557
+ --gl-button-default-tertiary-background-color-active: var(--gl-action-neutral-background-color-active); /* Used for the background of a default borderless, tertiary button in the active state. */
558
+ --gl-button-default-tertiary-background-color-hover: var(--gl-action-neutral-background-color-hover); /* Used for the background of a default borderless, tertiary button in the hover state. */
559
+ --gl-button-default-tertiary-background-color-default: var(--gl-action-neutral-background-color-default); /* Used for the background of a default borderless, tertiary button in the default state. */
560
+ --gl-button-default-primary-border-color-active: var(--gl-color-neutral-600); /* Used for the border of an default primary button in the active state. */
561
+ --gl-button-default-primary-border-color-hover: var(--gl-color-neutral-400); /* Used for the border of an default primary button in the hover state. */
562
+ --gl-button-default-primary-border-color-default: var(--gl-color-neutral-200); /* Used for the border of an default primary button in the default state. */
563
+ --gl-button-default-primary-background-color-active: var(--gl-color-neutral-100); /* Used for the background of an default primary button in the active state. */
564
+ --gl-button-default-primary-background-color-hover: var(--gl-color-neutral-50); /* Used for the background of an default primary button in the hover state. */
565
+ --gl-button-default-primary-background-color-default: var(--gl-color-neutral-0); /* Used for the background of an default primary button in the default state. */
566
+ --gl-button-default-primary-foreground-color-default: var(--gl-color-neutral-800); /* Used for the foreground of a default primary button in the default state. */
512
567
  --gl-breadcrumb-separator-color: var(--gl-color-neutral-400); /* Used for the breadcrumb level separator. */
513
568
  --gl-banner-promo-background-color: var(--gl-color-neutral-10); /* Used as background for the default banner type. */
514
569
  --gl-banner-intro-border-color: var(--gl-color-blue-300); /* Used to compliment the info banner. */
@@ -611,6 +666,47 @@
611
666
  --gl-focus-ring-inner-color: var(--gl-background-color-default); /* Used for the inner neutral portion of the focus ring. */
612
667
  --gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
613
668
  --gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
669
+ --gl-button-selected-border-color-focus: var(--gl-button-selected-border-color-hover); /* Used for the border of a selected button in the focus state. */
670
+ --gl-button-selected-background-color-active: var(--gl-button-default-primary-background-color-active); /* Used for the background of a selected button in the active state. */
671
+ --gl-button-selected-background-color-hover: var(--gl-button-default-primary-background-color-hover); /* Used for the background of a selected button in the hover state. */
672
+ --gl-button-selected-background-color-default: var(--gl-button-default-primary-background-color-default); /* Used for the background of a selected button in the default state. */
673
+ --gl-button-selected-foreground-color-default: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a selected button in the default state. */
674
+ --gl-button-link-text-color-default: var(--gl-text-color-link); /* Used for the text of a link button in the default state. */
675
+ --gl-button-dashed-border-color-default: var(--gl-border-color-strong); /* Used for the border of a dashed button in the default state. */
676
+ --gl-button-danger-tertiary-border-color-default: var(--gl-action-danger-border-color-default); /* Used for the border of a borderless, tertiary danger (destructive) button in the default state. */
677
+ --gl-button-danger-tertiary-background-color-focus: var(--gl-action-danger-background-color-focus); /* Used for the background of a borderless, tertiary danger (destructive) button in the focus state. */
678
+ --gl-button-danger-tertiary-foreground-color-active: var(--gl-action-danger-foreground-color-active); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the active state. */
679
+ --gl-button-danger-tertiary-foreground-color-hover: var(--gl-action-danger-foreground-color-hover); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the hover state. */
680
+ --gl-button-danger-tertiary-foreground-color-default: var(--gl-action-danger-foreground-color-default); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the default state. */
681
+ --gl-button-danger-secondary-border-color-focus: var(--gl-button-danger-secondary-border-color-hover); /* Used for the border of an outlined danger (destructive) button in the focus state. */
682
+ --gl-button-danger-secondary-background-color-focus: var(--gl-button-danger-secondary-background-color-hover); /* Used for the background of an outlined danger (destructive) button in the focus state. */
683
+ --gl-button-danger-secondary-foreground-color-focus: var(--gl-button-danger-secondary-foreground-color-hover); /* Used for the foreground of a danger (destructive) button in the focus state. */
684
+ --gl-button-danger-primary-border-color-focus: var(--gl-button-danger-primary-border-color-hover); /* Used for the border of a danger (destructive) primary button in the focus state. */
685
+ --gl-button-danger-primary-background-color-focus: var(--gl-button-danger-primary-background-color-hover); /* Used for the background of a danger (destructive) primary button in the focus state. */
686
+ --gl-button-danger-primary-foreground-color-active: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the active state. */
687
+ --gl-button-danger-primary-foreground-color-focus: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the focus state. */
688
+ --gl-button-danger-primary-foreground-color-hover: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the hover state. */
689
+ --gl-button-confirm-tertiary-border-color-default: var(--gl-action-confirm-border-color-default); /* Used for the border of a borderless, tertiary confirm (positive) button in the default state. */
690
+ --gl-button-confirm-tertiary-background-color-focus: var(--gl-action-confirm-background-color-focus); /* Used for the background of a borderless, tertiary confirm (positive) button in the focus state. */
691
+ --gl-button-confirm-tertiary-foreground-color-active: var(--gl-action-confirm-foreground-color-active); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the active state. */
692
+ --gl-button-confirm-tertiary-foreground-color-hover: var(--gl-action-confirm-foreground-color-hover); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the hover state. */
693
+ --gl-button-confirm-tertiary-foreground-color-default: var(--gl-action-confirm-foreground-color-default); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the default state. */
694
+ --gl-button-confirm-secondary-border-color-focus: var(--gl-button-confirm-secondary-border-color-hover); /* Used for the border of an outlined confirm (positive) button in the focus state. */
695
+ --gl-button-confirm-secondary-background-color-focus: var(--gl-button-confirm-secondary-background-color-hover); /* Used for the background of an outlined confirm (positive) button in the focus state. */
696
+ --gl-button-confirm-secondary-foreground-color-focus: var(--gl-button-confirm-secondary-foreground-color-hover); /* Used for the foreground of a confirm (positive) button in the focus state. */
697
+ --gl-button-confirm-primary-border-color-focus: var(--gl-button-confirm-primary-border-color-hover); /* Used for the border of a confirm (positive) primary button in the focus state. */
698
+ --gl-button-confirm-primary-background-color-focus: var(--gl-button-confirm-primary-background-color-hover); /* Used for the background of a confirm (positive) primary button in the focus state. */
699
+ --gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the active state. */
700
+ --gl-button-confirm-primary-foreground-color-focus: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the focus state. */
701
+ --gl-button-confirm-primary-foreground-color-hover: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the hover state. */
702
+ --gl-button-default-tertiary-border-color-default: var(--gl-action-neutral-border-color-default); /* Used for the border of a default borderless, tertiary button in the default state. */
703
+ --gl-button-default-tertiary-background-color-focus: var(--gl-action-neutral-background-color-focus); /* Used for the background of a default borderless, tertiary button in the focus state. */
704
+ --gl-button-default-tertiary-foreground-color-default: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a default borderless, tertiary button in the default state. */
705
+ --gl-button-default-primary-border-color-focus: var(--gl-button-default-primary-border-color-hover); /* Used for the border of an default primary button in the focus state. */
706
+ --gl-button-default-primary-background-color-focus: var(--gl-button-default-primary-background-color-hover); /* Used for the background of an default primary button in the focus state. */
707
+ --gl-button-default-primary-foreground-color-active: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the active state. */
708
+ --gl-button-default-primary-foreground-color-focus: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the focus state. */
709
+ --gl-button-default-primary-foreground-color-hover: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the hover state. */
614
710
  --gl-badge-tier-icon-color-focus: var(--gl-badge-tier-icon-color-hover); /* Used for the icon of a tier related badge in the focus state. */
615
711
  --gl-badge-tier-text-color-focus: var(--gl-badge-tier-text-color-hover); /* Used for the text of a tier related badge in the focus state. */
616
712
  --gl-badge-danger-icon-color-focus: var(--gl-badge-danger-icon-color-hover); /* Used for the icon of a danger (critical) badge in the focus state. */
@@ -639,4 +735,27 @@
639
735
  --gl-action-neutral-foreground-color-active: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the active state. */
640
736
  --gl-action-neutral-foreground-color-focus: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the focus state. */
641
737
  --gl-action-neutral-foreground-color-hover: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the hover state. */
738
+ --gl-button-selected-background-color-focus: var(--gl-button-default-primary-background-color-focus); /* Used for the background of a selected button in the focus state. */
739
+ --gl-button-selected-foreground-color-active: var(--gl-button-default-primary-foreground-color-active); /* Used for the foreground of a selected button in the active state. */
740
+ --gl-button-selected-foreground-color-focus: var(--gl-button-default-primary-foreground-color-focus); /* Used for the foreground of a selected button in the focus state. */
741
+ --gl-button-selected-foreground-color-hover: var(--gl-button-default-primary-foreground-color-hover); /* Used for the foreground of a selected button in the hover state. */
742
+ --gl-button-link-text-color-active: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the active state. */
743
+ --gl-button-link-text-color-focus: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the focus state. */
744
+ --gl-button-link-text-color-hover: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the hover state. */
745
+ --gl-button-dashed-border-color-focus: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the focus state. */
746
+ --gl-button-dashed-border-color-hover: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the hover state. */
747
+ --gl-button-danger-tertiary-border-color-active: var(--gl-action-danger-border-color-active); /* Used for the border of a borderless, tertiary danger (destructive) button in the active state. */
748
+ --gl-button-danger-tertiary-border-color-focus: var(--gl-action-danger-border-color-focus); /* Used for the border of a borderless, tertiary danger (destructive) button in the focus state. */
749
+ --gl-button-danger-tertiary-border-color-hover: var(--gl-action-danger-border-color-hover); /* Used for the border of a borderless, tertiary danger (destructive) button in the hover state. */
750
+ --gl-button-danger-tertiary-foreground-color-focus: var(--gl-action-danger-foreground-color-focus); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the focus state. */
751
+ --gl-button-confirm-tertiary-border-color-active: var(--gl-action-confirm-border-color-active); /* Used for the border of a borderless, tertiary confirm (positive) button in the active state. */
752
+ --gl-button-confirm-tertiary-border-color-focus: var(--gl-action-confirm-border-color-focus); /* Used for the border of a borderless, tertiary confirm (positive) button in the focus state. */
753
+ --gl-button-confirm-tertiary-border-color-hover: var(--gl-action-confirm-border-color-hover); /* Used for the border of a borderless, tertiary confirm (positive) button in the hover state. */
754
+ --gl-button-confirm-tertiary-foreground-color-focus: var(--gl-action-confirm-foreground-color-focus); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the focus state. */
755
+ --gl-button-default-tertiary-border-color-active: var(--gl-action-neutral-border-color-active); /* Used for the border of a default borderless, tertiary button in the active state. */
756
+ --gl-button-default-tertiary-border-color-focus: var(--gl-action-neutral-border-color-focus); /* Used for the border of a default borderless, tertiary button in the focus state. */
757
+ --gl-button-default-tertiary-border-color-hover: var(--gl-action-neutral-border-color-hover); /* Used for the border of a default borderless, tertiary button in the hover state. */
758
+ --gl-button-default-tertiary-foreground-color-active: var(--gl-action-neutral-foreground-color-active); /* Used for the foreground of a default borderless, tertiary button in the active state. */
759
+ --gl-button-default-tertiary-foreground-color-focus: var(--gl-action-neutral-foreground-color-focus); /* Used for the foreground of a default borderless, tertiary button in the focus state. */
760
+ --gl-button-default-tertiary-foreground-color-hover: var(--gl-action-neutral-foreground-color-hover); /* Used for the foreground of a default borderless, tertiary button in the hover state. */
642
761
  }
@@ -468,10 +468,10 @@
468
468
  --gl-feedback-neutral-icon-color: var(--gl-color-neutral-300); /* Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency. */
469
469
  --gl-feedback-neutral-text-color: var(--gl-color-neutral-200); /* Used for the text of a neutral feedback item when there isn't a specific meaning or urgency. */
470
470
  --gl-feedback-neutral-background-color: var(--gl-color-neutral-900); /* Used for the background of a neutral feedback item when there isn't a specific meaning or urgency. */
471
- --gl-feedback-link-color-strong: var(--gl-color-blue-700); /* Used for a link on a strong feedback background. */
472
- --gl-feedback-icon-color-strong: var(--gl-color-neutral-900); /* Used for an icon on a strong feedback background. */
473
- --gl-feedback-text-color-strong: var(--gl-color-neutral-900); /* Used for text on a strong feedback background. */
474
- --gl-feedback-background-color-strong: var(--gl-color-neutral-10); /* Used for a background associated with feedback like a tooltip or toast message. */
471
+ --gl-feedback-strong-link-color: var(--gl-color-blue-700); /* Used for a link on a strong feedback background. */
472
+ --gl-feedback-strong-icon-color: var(--gl-color-neutral-900); /* Used for an icon on a strong feedback background. */
473
+ --gl-feedback-strong-text-color: var(--gl-color-neutral-900); /* Used for text on a strong feedback background. */
474
+ --gl-feedback-strong-background-color: var(--gl-color-neutral-10); /* Used for a background associated with strong feedback like a tooltip or toast message. */
475
475
  --gl-control-indicator-color-disabled: var(--gl-color-neutral-400); /* Used for disabled checkbox and radio button state indicators. */
476
476
  --gl-control-indicator-color-selected: var(--gl-color-neutral-900); /* Used for checkbox and radio button state indicators. */
477
477
  --gl-control-placeholder-color: var(--gl-color-neutral-500); /* Used for placeholder text within inputs. */
@@ -509,6 +509,61 @@
509
509
  --gl-label-light-button-background-color-hover: var(--gl-color-neutral-950); /* Used for the label remove button background on a light background color in the hover state. */
510
510
  --gl-label-light-button-background-color-default: var(--gl-color-alpha-0); /* Used for the label remove button background on a light background color in the default state. */
511
511
  --gl-label-light-text-color: var(--gl-color-neutral-950); /* Used for the label text color on a light background color. */
512
+ --gl-button-disabled-border-color: var(--gl-color-neutral-800); /* Used for the border of a disabled button. */
513
+ --gl-button-disabled-background-color: var(--gl-color-neutral-950); /* Used for the background of a disabled button. */
514
+ --gl-button-disabled-foreground-color: var(--gl-color-neutral-400); /* Used for the foreground of a disabled button. */
515
+ --gl-button-selected-border-color-active: var(--gl-color-neutral-300); /* Used for the border of a selected button in the active state. */
516
+ --gl-button-selected-border-color-hover: var(--gl-color-neutral-500); /* Used for the border of a selected button in the hover state. */
517
+ --gl-button-selected-border-color-default: var(--gl-color-neutral-600); /* Used for the border of a selected button in the default state. */
518
+ --gl-button-dashed-border-color-active: var(--gl-color-neutral-300); /* Used for the border of a dashed button in the active state. */
519
+ --gl-button-danger-tertiary-background-color-active: var(--gl-action-danger-background-color-active); /* Used for the background of a borderless, tertiary danger (destructive) button in the active state. */
520
+ --gl-button-danger-tertiary-background-color-hover: var(--gl-action-danger-background-color-hover); /* Used for the background of a borderless, tertiary danger (destructive) button in the hover state. */
521
+ --gl-button-danger-tertiary-background-color-default: var(--gl-action-danger-background-color-default); /* Used for the background of a borderless, tertiary danger (destructive) button in the default state. */
522
+ --gl-button-danger-secondary-border-color-active: var(--gl-color-red-50); /* Used for the border of an outlined danger (destructive) button in the active state. */
523
+ --gl-button-danger-secondary-border-color-hover: var(--gl-color-red-200); /* Used for the border of an outlined danger (destructive) button in the hover state. */
524
+ --gl-button-danger-secondary-border-color-default: var(--gl-color-red-400); /* Used for the border of an outlined danger (destructive) button in the default state. */
525
+ --gl-button-danger-secondary-background-color-active: var(--gl-color-red-800); /* Used for the background of an outlined danger (destructive) button in the active state. */
526
+ --gl-button-danger-secondary-background-color-hover: var(--gl-color-red-900); /* Used for the background of an outlined danger (destructive) button in the hover state. */
527
+ --gl-button-danger-secondary-background-color-default: var(--gl-color-neutral-900); /* Used for the background of an outlined danger (destructive) button in the default state. */
528
+ --gl-button-danger-secondary-foreground-color-active: var(--gl-color-red-50); /* Used for the foreground of a danger (destructive) button in the active state. */
529
+ --gl-button-danger-secondary-foreground-color-hover: var(--gl-color-red-200); /* Used for the foreground of a danger (destructive) button in the hover state. */
530
+ --gl-button-danger-secondary-foreground-color-default: var(--gl-color-red-400); /* Used for the foreground of a danger (destructive) button in the default state. */
531
+ --gl-button-danger-primary-border-color-active: var(--gl-color-red-50); /* Used for the border of a danger (destructive) primary button in the active state. */
532
+ --gl-button-danger-primary-border-color-hover: var(--gl-color-red-100); /* Used for the border of a danger (destructive) primary button in the hover state. */
533
+ --gl-button-danger-primary-border-color-default: var(--gl-color-red-300); /* Used for the border of a danger (destructive) primary button in the default state. */
534
+ --gl-button-danger-primary-background-color-active: var(--gl-color-red-100); /* Used for the background of a danger (destructive) primary button in the active state. */
535
+ --gl-button-danger-primary-background-color-hover: var(--gl-color-red-300); /* Used for the background of a danger (destructive) primary button in the hover state. */
536
+ --gl-button-danger-primary-background-color-default: var(--gl-color-red-400); /* Used for the background of a danger (destructive) primary button in the default state. */
537
+ --gl-button-danger-primary-foreground-color-default: var(--gl-color-neutral-0); /* Used for the foreground of a danger (destructive) primary button in the default state. */
538
+ --gl-button-confirm-tertiary-background-color-active: var(--gl-action-confirm-background-color-active); /* Used for the background of a borderless, tertiary confirm (positive) button in the active state. */
539
+ --gl-button-confirm-tertiary-background-color-hover: var(--gl-action-confirm-background-color-hover); /* Used for the background of a borderless, tertiary confirm (positive) button in the hover state. */
540
+ --gl-button-confirm-tertiary-background-color-default: var(--gl-action-confirm-background-color-default); /* Used for the background of a borderless, tertiary confirm (positive) button in the default state. */
541
+ --gl-button-confirm-secondary-border-color-active: var(--gl-color-blue-50); /* Used for the border of an outlined confirm (positive) button in the active state. */
542
+ --gl-button-confirm-secondary-border-color-hover: var(--gl-color-blue-200); /* Used for the border of an outlined confirm (positive) button in the hover state. */
543
+ --gl-button-confirm-secondary-border-color-default: var(--gl-color-blue-400); /* Used for the border of an outlined confirm (positive) button in the default state. */
544
+ --gl-button-confirm-secondary-background-color-active: var(--gl-color-blue-800); /* Used for the background of an outlined confirm (positive) button in the active state. */
545
+ --gl-button-confirm-secondary-background-color-hover: var(--gl-color-blue-900); /* Used for the background of an outlined confirm (positive) button in the hover state. */
546
+ --gl-button-confirm-secondary-background-color-default: var(--gl-color-neutral-900); /* Used for the background of an outlined confirm (positive) button in the default state. */
547
+ --gl-button-confirm-secondary-foreground-color-active: var(--gl-color-blue-50); /* Used for the foreground of a confirm (positive) button in the active state. */
548
+ --gl-button-confirm-secondary-foreground-color-hover: var(--gl-color-blue-200); /* Used for the foreground of a confirm (positive) button in the hover state. */
549
+ --gl-button-confirm-secondary-foreground-color-default: var(--gl-color-blue-400); /* Used for the foreground of a confirm (positive) button in the default state. */
550
+ --gl-button-confirm-primary-border-color-active: var(--gl-color-blue-50); /* Used for the border of a confirm (positive) primary button in the active state. */
551
+ --gl-button-confirm-primary-border-color-hover: var(--gl-color-blue-100); /* Used for the border of a confirm (positive) primary button in the hover state. */
552
+ --gl-button-confirm-primary-border-color-default: var(--gl-color-blue-300); /* Used for the border of a confirm (positive) primary button in the default state. */
553
+ --gl-button-confirm-primary-background-color-active: var(--gl-color-blue-200); /* Used for the background of a confirm (positive) primary button in the active state. */
554
+ --gl-button-confirm-primary-background-color-hover: var(--gl-color-blue-300); /* Used for the background of a confirm (positive) primary button in the hover state. */
555
+ --gl-button-confirm-primary-background-color-default: var(--gl-color-blue-400); /* Used for the background of a confirm (positive) primary button in the default state. */
556
+ --gl-button-confirm-primary-foreground-color-default: var(--gl-color-neutral-0); /* Used for the foreground of a confirm (positive) primary button in the default state. */
557
+ --gl-button-default-tertiary-background-color-active: var(--gl-action-neutral-background-color-active); /* Used for the background of a default borderless, tertiary button in the active state. */
558
+ --gl-button-default-tertiary-background-color-hover: var(--gl-action-neutral-background-color-hover); /* Used for the background of a default borderless, tertiary button in the hover state. */
559
+ --gl-button-default-tertiary-background-color-default: var(--gl-action-neutral-background-color-default); /* Used for the background of a default borderless, tertiary button in the default state. */
560
+ --gl-button-default-primary-border-color-active: var(--gl-color-neutral-300); /* Used for the border of an default primary button in the active state. */
561
+ --gl-button-default-primary-border-color-hover: var(--gl-color-neutral-500); /* Used for the border of an default primary button in the hover state. */
562
+ --gl-button-default-primary-border-color-default: var(--gl-color-neutral-700); /* Used for the border of an default primary button in the default state. */
563
+ --gl-button-default-primary-background-color-active: var(--gl-color-neutral-800); /* Used for the background of an default primary button in the active state. */
564
+ --gl-button-default-primary-background-color-hover: var(--gl-color-neutral-900); /* Used for the background of an default primary button in the hover state. */
565
+ --gl-button-default-primary-background-color-default: var(--gl-color-neutral-900); /* Used for the background of an default primary button in the default state. */
566
+ --gl-button-default-primary-foreground-color-default: var(--gl-color-neutral-50); /* Used for the foreground of a default primary button in the default state. */
512
567
  --gl-breadcrumb-separator-color: var(--gl-color-neutral-400); /* Used for the breadcrumb level separator. */
513
568
  --gl-banner-promo-background-color: var(--gl-color-neutral-900); /* Used as background for the default banner type. */
514
569
  --gl-banner-intro-border-color: var(--gl-color-blue-600); /* Used to compliment the info banner. */
@@ -611,6 +666,47 @@
611
666
  --gl-focus-ring-inner-color: var(--gl-background-color-default); /* Used for the inner neutral portion of the focus ring. */
612
667
  --gl-table-sorting-icon-color: var(--gl-text-color-heading); /* Used for the color of the sorting icons in the column headers. */
613
668
  --gl-table-row-background-color-hover: var(--gl-background-color-subtle); /* Used for the background of a table row in hover state. */
669
+ --gl-button-selected-border-color-focus: var(--gl-button-selected-border-color-hover); /* Used for the border of a selected button in the focus state. */
670
+ --gl-button-selected-background-color-active: var(--gl-button-default-primary-background-color-active); /* Used for the background of a selected button in the active state. */
671
+ --gl-button-selected-background-color-hover: var(--gl-button-default-primary-background-color-hover); /* Used for the background of a selected button in the hover state. */
672
+ --gl-button-selected-background-color-default: var(--gl-button-default-primary-background-color-default); /* Used for the background of a selected button in the default state. */
673
+ --gl-button-selected-foreground-color-default: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a selected button in the default state. */
674
+ --gl-button-link-text-color-default: var(--gl-text-color-link); /* Used for the text of a link button in the default state. */
675
+ --gl-button-dashed-border-color-default: var(--gl-border-color-strong); /* Used for the border of a dashed button in the default state. */
676
+ --gl-button-danger-tertiary-border-color-default: var(--gl-action-danger-border-color-default); /* Used for the border of a borderless, tertiary danger (destructive) button in the default state. */
677
+ --gl-button-danger-tertiary-background-color-focus: var(--gl-action-danger-background-color-focus); /* Used for the background of a borderless, tertiary danger (destructive) button in the focus state. */
678
+ --gl-button-danger-tertiary-foreground-color-active: var(--gl-action-danger-foreground-color-active); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the active state. */
679
+ --gl-button-danger-tertiary-foreground-color-hover: var(--gl-action-danger-foreground-color-hover); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the hover state. */
680
+ --gl-button-danger-tertiary-foreground-color-default: var(--gl-action-danger-foreground-color-default); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the default state. */
681
+ --gl-button-danger-secondary-border-color-focus: var(--gl-button-danger-secondary-border-color-hover); /* Used for the border of an outlined danger (destructive) button in the focus state. */
682
+ --gl-button-danger-secondary-background-color-focus: var(--gl-button-danger-secondary-background-color-hover); /* Used for the background of an outlined danger (destructive) button in the focus state. */
683
+ --gl-button-danger-secondary-foreground-color-focus: var(--gl-button-danger-secondary-foreground-color-hover); /* Used for the foreground of a danger (destructive) button in the focus state. */
684
+ --gl-button-danger-primary-border-color-focus: var(--gl-button-danger-primary-border-color-hover); /* Used for the border of a danger (destructive) primary button in the focus state. */
685
+ --gl-button-danger-primary-background-color-focus: var(--gl-button-danger-primary-background-color-hover); /* Used for the background of a danger (destructive) primary button in the focus state. */
686
+ --gl-button-danger-primary-foreground-color-active: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the active state. */
687
+ --gl-button-danger-primary-foreground-color-focus: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the focus state. */
688
+ --gl-button-danger-primary-foreground-color-hover: var(--gl-button-danger-primary-foreground-color-default); /* Used for the foreground of a danger (destructive) primary button in the hover state. */
689
+ --gl-button-confirm-tertiary-border-color-default: var(--gl-action-confirm-border-color-default); /* Used for the border of a borderless, tertiary confirm (positive) button in the default state. */
690
+ --gl-button-confirm-tertiary-background-color-focus: var(--gl-action-confirm-background-color-focus); /* Used for the background of a borderless, tertiary confirm (positive) button in the focus state. */
691
+ --gl-button-confirm-tertiary-foreground-color-active: var(--gl-action-confirm-foreground-color-active); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the active state. */
692
+ --gl-button-confirm-tertiary-foreground-color-hover: var(--gl-action-confirm-foreground-color-hover); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the hover state. */
693
+ --gl-button-confirm-tertiary-foreground-color-default: var(--gl-action-confirm-foreground-color-default); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the default state. */
694
+ --gl-button-confirm-secondary-border-color-focus: var(--gl-button-confirm-secondary-border-color-hover); /* Used for the border of an outlined confirm (positive) button in the focus state. */
695
+ --gl-button-confirm-secondary-background-color-focus: var(--gl-button-confirm-secondary-background-color-hover); /* Used for the background of an outlined confirm (positive) button in the focus state. */
696
+ --gl-button-confirm-secondary-foreground-color-focus: var(--gl-button-confirm-secondary-foreground-color-hover); /* Used for the foreground of a confirm (positive) button in the focus state. */
697
+ --gl-button-confirm-primary-border-color-focus: var(--gl-button-confirm-primary-border-color-hover); /* Used for the border of a confirm (positive) primary button in the focus state. */
698
+ --gl-button-confirm-primary-background-color-focus: var(--gl-button-confirm-primary-background-color-hover); /* Used for the background of a confirm (positive) primary button in the focus state. */
699
+ --gl-button-confirm-primary-foreground-color-active: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the active state. */
700
+ --gl-button-confirm-primary-foreground-color-focus: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the focus state. */
701
+ --gl-button-confirm-primary-foreground-color-hover: var(--gl-button-confirm-primary-foreground-color-default); /* Used for the foreground of a confirm (positive) primary button in the hover state. */
702
+ --gl-button-default-tertiary-border-color-default: var(--gl-action-neutral-border-color-default); /* Used for the border of a default borderless, tertiary button in the default state. */
703
+ --gl-button-default-tertiary-background-color-focus: var(--gl-action-neutral-background-color-focus); /* Used for the background of a default borderless, tertiary button in the focus state. */
704
+ --gl-button-default-tertiary-foreground-color-default: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a default borderless, tertiary button in the default state. */
705
+ --gl-button-default-primary-border-color-focus: var(--gl-button-default-primary-border-color-hover); /* Used for the border of an default primary button in the focus state. */
706
+ --gl-button-default-primary-background-color-focus: var(--gl-button-default-primary-background-color-hover); /* Used for the background of an default primary button in the focus state. */
707
+ --gl-button-default-primary-foreground-color-active: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the active state. */
708
+ --gl-button-default-primary-foreground-color-focus: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the focus state. */
709
+ --gl-button-default-primary-foreground-color-hover: var(--gl-button-default-primary-foreground-color-default); /* Used for the foreground of a default primary button in the hover state. */
614
710
  --gl-badge-tier-icon-color-focus: var(--gl-badge-tier-icon-color-hover); /* Used for the icon of a tier related badge in the focus state. */
615
711
  --gl-badge-tier-text-color-focus: var(--gl-badge-tier-text-color-hover); /* Used for the text of a tier related badge in the focus state. */
616
712
  --gl-badge-danger-icon-color-focus: var(--gl-badge-danger-icon-color-hover); /* Used for the icon of a danger (critical) badge in the focus state. */
@@ -639,4 +735,27 @@
639
735
  --gl-action-neutral-foreground-color-active: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the active state. */
640
736
  --gl-action-neutral-foreground-color-focus: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the focus state. */
641
737
  --gl-action-neutral-foreground-color-hover: var(--gl-action-neutral-foreground-color-default); /* Used for the foreground of a neutral action in the hover state. */
738
+ --gl-button-selected-background-color-focus: var(--gl-button-default-primary-background-color-focus); /* Used for the background of a selected button in the focus state. */
739
+ --gl-button-selected-foreground-color-active: var(--gl-button-default-primary-foreground-color-active); /* Used for the foreground of a selected button in the active state. */
740
+ --gl-button-selected-foreground-color-focus: var(--gl-button-default-primary-foreground-color-focus); /* Used for the foreground of a selected button in the focus state. */
741
+ --gl-button-selected-foreground-color-hover: var(--gl-button-default-primary-foreground-color-hover); /* Used for the foreground of a selected button in the hover state. */
742
+ --gl-button-link-text-color-active: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the active state. */
743
+ --gl-button-link-text-color-focus: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the focus state. */
744
+ --gl-button-link-text-color-hover: var(--gl-button-link-text-color-default); /* Used for the text of a link button in the hover state. */
745
+ --gl-button-dashed-border-color-focus: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the focus state. */
746
+ --gl-button-dashed-border-color-hover: var(--gl-button-dashed-border-color-default); /* Used for the border of a dashed button in the hover state. */
747
+ --gl-button-danger-tertiary-border-color-active: var(--gl-action-danger-border-color-active); /* Used for the border of a borderless, tertiary danger (destructive) button in the active state. */
748
+ --gl-button-danger-tertiary-border-color-focus: var(--gl-action-danger-border-color-focus); /* Used for the border of a borderless, tertiary danger (destructive) button in the focus state. */
749
+ --gl-button-danger-tertiary-border-color-hover: var(--gl-action-danger-border-color-hover); /* Used for the border of a borderless, tertiary danger (destructive) button in the hover state. */
750
+ --gl-button-danger-tertiary-foreground-color-focus: var(--gl-action-danger-foreground-color-focus); /* Used for the foreground of a borderless, tertiary danger (destructive) button in the focus state. */
751
+ --gl-button-confirm-tertiary-border-color-active: var(--gl-action-confirm-border-color-active); /* Used for the border of a borderless, tertiary confirm (positive) button in the active state. */
752
+ --gl-button-confirm-tertiary-border-color-focus: var(--gl-action-confirm-border-color-focus); /* Used for the border of a borderless, tertiary confirm (positive) button in the focus state. */
753
+ --gl-button-confirm-tertiary-border-color-hover: var(--gl-action-confirm-border-color-hover); /* Used for the border of a borderless, tertiary confirm (positive) button in the hover state. */
754
+ --gl-button-confirm-tertiary-foreground-color-focus: var(--gl-action-confirm-foreground-color-focus); /* Used for the foreground of a borderless, tertiary confirm (positive) button in the focus state. */
755
+ --gl-button-default-tertiary-border-color-active: var(--gl-action-neutral-border-color-active); /* Used for the border of a default borderless, tertiary button in the active state. */
756
+ --gl-button-default-tertiary-border-color-focus: var(--gl-action-neutral-border-color-focus); /* Used for the border of a default borderless, tertiary button in the focus state. */
757
+ --gl-button-default-tertiary-border-color-hover: var(--gl-action-neutral-border-color-hover); /* Used for the border of a default borderless, tertiary button in the hover state. */
758
+ --gl-button-default-tertiary-foreground-color-active: var(--gl-action-neutral-foreground-color-active); /* Used for the foreground of a default borderless, tertiary button in the active state. */
759
+ --gl-button-default-tertiary-foreground-color-focus: var(--gl-action-neutral-foreground-color-focus); /* Used for the foreground of a default borderless, tertiary button in the focus state. */
760
+ --gl-button-default-tertiary-foreground-color-hover: var(--gl-action-neutral-foreground-color-hover); /* Used for the foreground of a default borderless, tertiary button in the hover state. */
642
761
  }
@@ -364,6 +364,125 @@ export const GL_BADGE_TIER_ICON_COLOR_ACTIVE = '#ac93e6'; // Used for the icon o
364
364
  export const GL_BANNER_INTRO_BORDER_COLOR = '#1068bf'; // Used to compliment the info banner.
365
365
  export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#28272d'; // Used as background for the default banner type.
366
366
  export const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
367
+ export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#ececef'; // Used for the foreground of a default primary button in the default state.
368
+ export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_HOVER = '#ececef'; // Used for the foreground of a default primary button in the hover state.
369
+ export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_FOCUS = '#ececef'; // Used for the foreground of a default primary button in the focus state.
370
+ export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#ececef'; // Used for the foreground of a default primary button in the active state.
371
+ export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an default primary button in the default state.
372
+ export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of an default primary button in the hover state.
373
+ export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_FOCUS = '#28272d'; // Used for the background of an default primary button in the focus state.
374
+ export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the background of an default primary button in the active state.
375
+ export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_DEFAULT = '#4c4b51'; // Used for the border of an default primary button in the default state.
376
+ export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_HOVER = '#737278'; // Used for the border of an default primary button in the hover state.
377
+ export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_FOCUS = '#737278'; // Used for the border of an default primary button in the focus state.
378
+ export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_ACTIVE = '#a4a3a8'; // Used for the border of an default primary button in the active state.
379
+ export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#ececef'; // Used for the foreground of a default borderless, tertiary button in the default state.
380
+ export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_HOVER = '#ececef'; // Used for the foreground of a default borderless, tertiary button in the hover state.
381
+ export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_FOCUS = '#ececef'; // Used for the foreground of a default borderless, tertiary button in the focus state.
382
+ export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#ececef'; // Used for the foreground of a default borderless, tertiary button in the active state.
383
+ export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(137, 136, 141, 0.0)'; // Used for the background of a default borderless, tertiary button in the default state.
384
+ export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(137, 136, 141, 0.4)'; // Used for the background of a default borderless, tertiary button in the hover state.
385
+ export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(137, 136, 141, 0.4)'; // Used for the background of a default borderless, tertiary button in the focus state.
386
+ export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(137, 136, 141, 0.16)'; // Used for the background of a default borderless, tertiary button in the active state.
387
+ export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a default borderless, tertiary button in the default state.
388
+ export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a default borderless, tertiary button in the hover state.
389
+ export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a default borderless, tertiary button in the focus state.
390
+ export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a default borderless, tertiary button in the active state.
391
+ export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a confirm (positive) primary button in the default state.
392
+ export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a confirm (positive) primary button in the hover state.
393
+ export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a confirm (positive) primary button in the focus state.
394
+ export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a confirm (positive) primary button in the active state.
395
+ export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#428fdc'; // Used for the background of a confirm (positive) primary button in the default state.
396
+ export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_HOVER = '#63a6e9'; // Used for the background of a confirm (positive) primary button in the hover state.
397
+ export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_FOCUS = '#63a6e9'; // Used for the background of a confirm (positive) primary button in the focus state.
398
+ export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#9dc7f1'; // Used for the background of a confirm (positive) primary button in the active state.
399
+ export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_DEFAULT = '#63a6e9'; // Used for the border of a confirm (positive) primary button in the default state.
400
+ export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_HOVER = '#cbe2f9'; // Used for the border of a confirm (positive) primary button in the hover state.
401
+ export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_FOCUS = '#cbe2f9'; // Used for the border of a confirm (positive) primary button in the focus state.
402
+ export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_ACTIVE = '#e9f3fc'; // Used for the border of a confirm (positive) primary button in the active state.
403
+ export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_DEFAULT = '#428fdc'; // Used for the foreground of a confirm (positive) button in the default state.
404
+ export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_HOVER = '#9dc7f1'; // Used for the foreground of a confirm (positive) button in the hover state.
405
+ export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_FOCUS = '#9dc7f1'; // Used for the foreground of a confirm (positive) button in the focus state.
406
+ export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_ACTIVE = '#e9f3fc'; // Used for the foreground of a confirm (positive) button in the active state.
407
+ export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an outlined confirm (positive) button in the default state.
408
+ export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_HOVER = '#033464'; // Used for the background of an outlined confirm (positive) button in the hover state.
409
+ export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_FOCUS = '#033464'; // Used for the background of an outlined confirm (positive) button in the focus state.
410
+ export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_ACTIVE = '#064787'; // Used for the background of an outlined confirm (positive) button in the active state.
411
+ export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_DEFAULT = '#428fdc'; // Used for the border of an outlined confirm (positive) button in the default state.
412
+ export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_HOVER = '#9dc7f1'; // Used for the border of an outlined confirm (positive) button in the hover state.
413
+ export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_FOCUS = '#9dc7f1'; // Used for the border of an outlined confirm (positive) button in the focus state.
414
+ export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_ACTIVE = '#e9f3fc'; // Used for the border of an outlined confirm (positive) button in the active state.
415
+ export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#428fdc'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the default state.
416
+ export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_HOVER = '#9dc7f1'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the hover state.
417
+ export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_FOCUS = '#9dc7f1'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the focus state.
418
+ export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#e9f3fc'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the active state.
419
+ export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(66, 143, 220, 0.0)'; // Used for the background of a borderless, tertiary confirm (positive) button in the default state.
420
+ export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(66, 143, 220, 0.4)'; // Used for the background of a borderless, tertiary confirm (positive) button in the hover state.
421
+ export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(66, 143, 220, 0.4)'; // Used for the background of a borderless, tertiary confirm (positive) button in the focus state.
422
+ export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(66, 143, 220, 0.16)'; // Used for the background of a borderless, tertiary confirm (positive) button in the active state.
423
+ export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the default state.
424
+ export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the hover state.
425
+ export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the focus state.
426
+ export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the active state.
427
+ export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a danger (destructive) primary button in the default state.
428
+ export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a danger (destructive) primary button in the hover state.
429
+ export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a danger (destructive) primary button in the focus state.
430
+ export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a danger (destructive) primary button in the active state.
431
+ export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#ec5941'; // Used for the background of a danger (destructive) primary button in the default state.
432
+ export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_HOVER = '#f57f6c'; // Used for the background of a danger (destructive) primary button in the hover state.
433
+ export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_FOCUS = '#f57f6c'; // Used for the background of a danger (destructive) primary button in the focus state.
434
+ export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#fdd4cd'; // Used for the background of a danger (destructive) primary button in the active state.
435
+ export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_DEFAULT = '#f57f6c'; // Used for the border of a danger (destructive) primary button in the default state.
436
+ export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_HOVER = '#fdd4cd'; // Used for the border of a danger (destructive) primary button in the hover state.
437
+ export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_FOCUS = '#fdd4cd'; // Used for the border of a danger (destructive) primary button in the focus state.
438
+ export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_ACTIVE = '#fcf1ef'; // Used for the border of a danger (destructive) primary button in the active state.
439
+ export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_DEFAULT = '#ec5941'; // Used for the foreground of a danger (destructive) button in the default state.
440
+ export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_HOVER = '#fcb5aa'; // Used for the foreground of a danger (destructive) button in the hover state.
441
+ export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_FOCUS = '#fcb5aa'; // Used for the foreground of a danger (destructive) button in the focus state.
442
+ export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_ACTIVE = '#fcf1ef'; // Used for the foreground of a danger (destructive) button in the active state.
443
+ export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an outlined danger (destructive) button in the default state.
444
+ export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_HOVER = '#660e00'; // Used for the background of an outlined danger (destructive) button in the hover state.
445
+ export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_FOCUS = '#660e00'; // Used for the background of an outlined danger (destructive) button in the focus state.
446
+ export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_ACTIVE = '#8d1300'; // Used for the background of an outlined danger (destructive) button in the active state.
447
+ export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_DEFAULT = '#ec5941'; // Used for the border of an outlined danger (destructive) button in the default state.
448
+ export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_HOVER = '#fcb5aa'; // Used for the border of an outlined danger (destructive) button in the hover state.
449
+ export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_FOCUS = '#fcb5aa'; // Used for the border of an outlined danger (destructive) button in the focus state.
450
+ export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_ACTIVE = '#fcf1ef'; // Used for the border of an outlined danger (destructive) button in the active state.
451
+ export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#ec5941'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the default state.
452
+ export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_HOVER = '#fcb5aa'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the hover state.
453
+ export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_FOCUS = '#fcb5aa'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the focus state.
454
+ export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#fcf1ef'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the active state.
455
+ export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(236, 89, 65, 0.0)'; // Used for the background of a borderless, tertiary danger (destructive) button in the default state.
456
+ export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(236, 89, 65, 0.4)'; // Used for the background of a borderless, tertiary danger (destructive) button in the hover state.
457
+ export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(236, 89, 65, 0.4)'; // Used for the background of a borderless, tertiary danger (destructive) button in the focus state.
458
+ export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(236, 89, 65, 0.16)'; // Used for the background of a borderless, tertiary danger (destructive) button in the active state.
459
+ export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the default state.
460
+ export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the hover state.
461
+ export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the focus state.
462
+ export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the active state.
463
+ export const GL_BUTTON_DASHED_BORDER_COLOR_DEFAULT = '#89888d'; // Used for the border of a dashed button in the default state.
464
+ export const GL_BUTTON_DASHED_BORDER_COLOR_HOVER = '#89888d'; // Used for the border of a dashed button in the hover state.
465
+ export const GL_BUTTON_DASHED_BORDER_COLOR_FOCUS = '#89888d'; // Used for the border of a dashed button in the focus state.
466
+ export const GL_BUTTON_DASHED_BORDER_COLOR_ACTIVE = '#a4a3a8'; // Used for the border of a dashed button in the active state.
467
+ export const GL_BUTTON_LINK_TEXT_COLOR_DEFAULT = '#63a6e9'; // Used for the text of a link button in the default state.
468
+ export const GL_BUTTON_LINK_TEXT_COLOR_HOVER = '#63a6e9'; // Used for the text of a link button in the hover state.
469
+ export const GL_BUTTON_LINK_TEXT_COLOR_FOCUS = '#63a6e9'; // Used for the text of a link button in the focus state.
470
+ export const GL_BUTTON_LINK_TEXT_COLOR_ACTIVE = '#63a6e9'; // Used for the text of a link button in the active state.
471
+ export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#ececef'; // Used for the foreground of a selected button in the default state.
472
+ export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#ececef'; // Used for the foreground of a selected button in the hover state.
473
+ export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#ececef'; // Used for the foreground of a selected button in the focus state.
474
+ export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#ececef'; // Used for the foreground of a selected button in the active state.
475
+ export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of a selected button in the default state.
476
+ export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a selected button in the hover state.
477
+ export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#28272d'; // Used for the background of a selected button in the focus state.
478
+ export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the background of a selected button in the active state.
479
+ export const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = '#626168'; // Used for the border of a selected button in the default state.
480
+ export const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = '#737278'; // Used for the border of a selected button in the hover state.
481
+ export const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = '#737278'; // Used for the border of a selected button in the focus state.
482
+ export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '#a4a3a8'; // Used for the border of a selected button in the active state.
483
+ export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#89888d'; // Used for the foreground of a disabled button.
484
+ export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#18171d'; // Used for the background of a disabled button.
485
+ export const GL_BUTTON_DISABLED_BORDER_COLOR = '#3a383f'; // Used for the border of a disabled button.
367
486
  export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
368
487
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
369
488
  export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
@@ -568,10 +687,10 @@ export const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)'; // Use color.alpha.ligh
568
687
  export const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)'; // Use color.alpha.light.4 instead.
569
688
  export const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)'; // Use color.alpha.light.6 instead.
570
689
  export const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)'; // Use color.alpha.light.8 instead.
571
- export const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#fbfafd'; // Used for a background associated with feedback like a tooltip or toast message.
572
- export const GL_FEEDBACK_TEXT_COLOR_STRONG = '#28272d'; // Used for text on a strong feedback background.
573
- export const GL_FEEDBACK_ICON_COLOR_STRONG = '#28272d'; // Used for an icon on a strong feedback background.
574
- export const GL_FEEDBACK_LINK_COLOR_STRONG = '#0b5cad'; // Used for a link on a strong feedback background.
690
+ export const GL_FEEDBACK_STRONG_BACKGROUND_COLOR = '#fbfafd'; // Used for a background associated with strong feedback like a tooltip or toast message.
691
+ export const GL_FEEDBACK_STRONG_TEXT_COLOR = '#28272d'; // Used for text on a strong feedback background.
692
+ export const GL_FEEDBACK_STRONG_ICON_COLOR = '#28272d'; // Used for an icon on a strong feedback background.
693
+ export const GL_FEEDBACK_STRONG_LINK_COLOR = '#0b5cad'; // Used for a link on a strong feedback background.
575
694
  export const GL_FEEDBACK_NEUTRAL_BACKGROUND_COLOR = '#28272d'; // Used for the background of a neutral feedback item when there isn't a specific meaning or urgency.
576
695
  export const GL_FEEDBACK_NEUTRAL_TEXT_COLOR = '#bfbfc3'; // Used for the text of a neutral feedback item when there isn't a specific meaning or urgency.
577
696
  export const GL_FEEDBACK_NEUTRAL_ICON_COLOR = '#a4a3a8'; // Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency.