@gitlab/ui 134.6.0 → 134.8.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 (33) hide show
  1. package/dist/components/dashboards/dashboard_panel/dashboard_panel.js +5 -3
  2. package/dist/index.css +2 -2
  3. package/dist/index.css.map +1 -1
  4. package/dist/tokens/build/js/tokens.dark.js +86 -68
  5. package/dist/tokens/build/js/tokens.js +93 -75
  6. package/package.json +5 -5
  7. package/src/components/base/toggle/toggle.scss +75 -51
  8. package/src/components/dashboards/dashboard_panel/dashboard_panel.vue +4 -1
  9. package/src/scss/bootstrap_no_utils.scss +33 -0
  10. package/src/scss/gitlab_ui_no_utils.scss +24 -0
  11. package/src/scss/themes.scss +10 -5
  12. package/src/tokens/build/css/tokens.css +76 -58
  13. package/src/tokens/build/css/tokens.dark.css +74 -56
  14. package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +145 -0
  15. package/src/tokens/build/docs/tokens-tailwind-docs.json +145 -0
  16. package/src/tokens/build/figma/constants.dark.json +2 -2
  17. package/src/tokens/build/figma/constants.json +2 -2
  18. package/src/tokens/build/figma/mode.dark.json +206 -108
  19. package/src/tokens/build/figma/mode.json +209 -87
  20. package/src/tokens/build/js/tokens.dark.js +85 -67
  21. package/src/tokens/build/js/tokens.js +92 -74
  22. package/src/tokens/build/json/tokens.dark.json +846 -225
  23. package/src/tokens/build/json/tokens.json +850 -229
  24. package/src/tokens/build/scss/_tokens.dark.scss +74 -56
  25. package/src/tokens/build/scss/_tokens.scss +76 -58
  26. package/src/tokens/build/scss/_tokens_custom_properties.scss +18 -0
  27. package/src/tokens/build/tailwind/tokens.cjs +1 -0
  28. package/src/tokens/constant/color.alpha.tokens.json +16 -0
  29. package/src/tokens/contextual/button.tokens.json +34 -58
  30. package/src/tokens/contextual/tabs.tokens.json +2 -8
  31. package/src/tokens/contextual/toggle.tokens.json +195 -0
  32. package/src/tokens/semantic/action.tokens.json +22 -124
  33. package/src/tokens/semantic/control.tokens.json +9 -21
@@ -17,6 +17,7 @@ $gl-color-alpha-light-8: rgba(255, 255, 255, 0.08);
17
17
  $gl-color-alpha-light-16: rgba(255, 255, 255, 0.16);
18
18
  $gl-color-alpha-light-24: rgba(255, 255, 255, 0.24);
19
19
  $gl-color-alpha-light-36: rgba(255, 255, 255, 0.36);
20
+ $gl-color-alpha-light-40: rgba(255, 255, 255, 0.4);
20
21
  $gl-color-blue-50: #e9f3fc;
21
22
  $gl-color-blue-100: #cbe2f9;
22
23
  $gl-color-blue-200: #9dc7f1;
@@ -376,12 +377,6 @@ $t-white-a-02: rgba(255, 255, 255, 0.02) !default; // Use color.alpha.light.2 in
376
377
  $t-white-a-04: rgba(255, 255, 255, 0.04) !default; // Use color.alpha.light.4 instead.
377
378
  $t-white-a-06: rgba(255, 255, 255, 0.06) !default; // Use color.alpha.light.6 instead.
378
379
  $t-white-a-08: rgba(255, 255, 255, 0.08) !default; // Use color.alpha.light.8 instead.
379
- $gl-action-neutral-background-color-default: rgba(164, 163, 168, 0); // Used for the background of a neutral action in the default state.
380
- $gl-action-neutral-background-color-hover: rgba(164, 163, 168, 0.16); // Used for the background of a neutral action in the hover state.
381
- $gl-action-neutral-background-color-active: rgba(83, 81, 88, 0.24); // Used for the background of a neutral action in the active state.
382
- $gl-action-confirm-background-color-default: rgba(99, 166, 233, 0); // Used for the background of a confirm (positive) action in the default state.
383
- $gl-action-confirm-background-color-hover: rgba(99, 166, 233, 0.16); // Used for the background of a confirm (positive) action in the hover state.
384
- $gl-action-confirm-background-color-active: rgba(11, 92, 173, 0.24); // Used for the background of a confirm (positive) action in the active state.
385
380
  $gl-action-danger-background-color-default: rgba(245, 127, 108, 0); // Used for the background of a danger (destructive) action in the default state.
386
381
  $gl-action-danger-background-color-hover: rgba(245, 127, 108, 0.16); // Used for the background of a danger (destructive) action in the hover state.
387
382
  $gl-action-danger-background-color-active: rgba(174, 24, 0, 0.24); // Used for the background of a danger (destructive) action in the active state.
@@ -564,25 +559,20 @@ $gl-button-default-primary-background-color-active: $gl-color-neutral-100; // Us
564
559
  $gl-button-default-primary-border-color-default: $gl-color-neutral-200; // Used for the border of an default primary button in the default state.
565
560
  $gl-button-default-primary-border-color-hover: $gl-color-neutral-400; // Used for the border of an default primary button in the hover state.
566
561
  $gl-button-default-primary-border-color-active: $gl-color-neutral-600; // Used for the border of an default primary button in the active state.
567
- $gl-button-default-tertiary-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default borderless, tertiary button in the default state.
568
- $gl-button-default-tertiary-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default borderless, tertiary button in the hover state.
569
- $gl-button-default-tertiary-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default borderless, tertiary button in the active state.
570
562
  $gl-button-confirm-primary-foreground-color-default: $gl-color-neutral-0; // Used for the foreground of a confirm (positive) primary button in the default state.
571
- $gl-button-confirm-primary-border-color-default: $gl-color-blue-600; // Used for the border of a confirm (positive) primary button in the default state.
572
- $gl-button-confirm-primary-border-color-hover: $gl-color-blue-800; // Used for the border of a confirm (positive) primary button in the hover state.
573
- $gl-button-confirm-primary-border-color-active: $gl-color-blue-900; // Used for the border of a confirm (positive) primary button in the active state.
574
- $gl-button-confirm-secondary-foreground-color-default: $gl-color-blue-500; // Used for the foreground of a confirm (positive) button in the default state.
575
- $gl-button-confirm-secondary-foreground-color-hover: $gl-color-blue-700; // Used for the foreground of a confirm (positive) button in the hover state.
576
- $gl-button-confirm-secondary-foreground-color-active: $gl-color-blue-900; // Used for the foreground of a confirm (positive) button in the active state.
563
+ $gl-button-confirm-primary-background-color-default: $gl-color-neutral-800; // Used for the background of a confirm (positive) primary button in the default state.
564
+ $gl-button-confirm-primary-background-color-hover: $gl-color-neutral-950; // Used for the background of a confirm (positive) primary button in the hover state.
565
+ $gl-button-confirm-primary-background-color-active: $gl-color-neutral-1000; // Used for the background of a confirm (positive) primary button in the active state.
566
+ $gl-button-confirm-primary-border-color-default: $gl-color-alpha-0; // Used for the border of a confirm (positive) primary button in the default state.
567
+ $gl-button-confirm-secondary-foreground-color-default: $gl-color-neutral-800; // Used for the foreground of a confirm (positive) button in the default state.
568
+ $gl-button-confirm-secondary-foreground-color-hover: $gl-color-neutral-950; // Used for the foreground of a confirm (positive) button in the hover state.
569
+ $gl-button-confirm-secondary-foreground-color-active: $gl-color-neutral-1000; // Used for the foreground of a confirm (positive) button in the active state.
577
570
  $gl-button-confirm-secondary-background-color-default: $gl-color-neutral-0; // Used for the background of an outlined confirm (positive) button in the default state.
578
- $gl-button-confirm-secondary-background-color-hover: $gl-color-blue-50; // Used for the background of an outlined confirm (positive) button in the hover state.
579
- $gl-button-confirm-secondary-background-color-active: $gl-color-blue-100; // Used for the background of an outlined confirm (positive) button in the active state.
580
- $gl-button-confirm-secondary-border-color-default: $gl-color-blue-500; // Used for the border of an outlined confirm (positive) button in the default state.
581
- $gl-button-confirm-secondary-border-color-hover: $gl-color-blue-700; // Used for the border of an outlined confirm (positive) button in the hover state.
582
- $gl-button-confirm-secondary-border-color-active: $gl-color-blue-900; // Used for the border of an outlined confirm (positive) button in the active state.
583
- $gl-button-confirm-tertiary-background-color-default: $gl-action-confirm-background-color-default; // Used for the background of a borderless, tertiary confirm (positive) button in the default state.
584
- $gl-button-confirm-tertiary-background-color-hover: $gl-action-confirm-background-color-hover; // Used for the background of a borderless, tertiary confirm (positive) button in the hover state.
585
- $gl-button-confirm-tertiary-background-color-active: $gl-action-confirm-background-color-active; // Used for the background of a borderless, tertiary confirm (positive) button in the active state.
571
+ $gl-button-confirm-secondary-background-color-hover: $gl-color-neutral-50; // Used for the background of an outlined confirm (positive) button in the hover state.
572
+ $gl-button-confirm-secondary-background-color-active: $gl-color-neutral-100; // Used for the background of an outlined confirm (positive) button in the active state.
573
+ $gl-button-confirm-secondary-border-color-default: $gl-color-neutral-800; // Used for the border of an outlined confirm (positive) button in the default state.
574
+ $gl-button-confirm-secondary-border-color-hover: $gl-color-neutral-950; // Used for the border of an outlined confirm (positive) button in the hover state.
575
+ $gl-button-confirm-secondary-border-color-active: $gl-color-neutral-1000; // Used for the border of an outlined confirm (positive) button in the active state.
586
576
  $gl-button-danger-primary-foreground-color-default: $gl-color-neutral-0; // Used for the foreground of a danger (destructive) primary button in the default state.
587
577
  $gl-button-danger-primary-background-color-default: $gl-color-red-500; // Used for the background of a danger (destructive) primary button in the default state.
588
578
  $gl-button-danger-primary-background-color-hover: $gl-color-red-600; // Used for the background of a danger (destructive) primary button in the hover state.
@@ -616,9 +606,6 @@ $gl-chart-axis-line-color: $gl-color-neutral-200; // Used in charts for axis lin
616
606
  $gl-chart-threshold-line-color: $gl-color-red-500; // Used in charts to divide a threshold area in a chart from other data.
617
607
  $gl-chart-zoom-filler-color: $gl-color-alpha-dark-8; // Used in charts for the overlay color when zooming in on a specific area of data.
618
608
  $gl-datepicker-background-color: $gl-color-neutral-0; // Used for the background color of datepicker.
619
- $gl-dropdown-option-background-color-unselected-default: $gl-action-neutral-background-color-default; // Used for the background of an unselected dropdown option in the default state.
620
- $gl-dropdown-option-background-color-unselected-hover: $gl-action-neutral-background-color-hover; // Used for the background of an unselected dropdown option in the hover state.
621
- $gl-dropdown-option-background-color-unselected-active: $gl-action-neutral-background-color-active; // Used for the background of an unselected dropdown option in the active state.
622
609
  $gl-dropdown-option-background-color-selected-default: $gl-color-neutral-50; // Used for the background of a selected dropdown option in the default state.
623
610
  $gl-dropdown-option-background-color-selected-hover: $gl-color-neutral-100; // Used for the background of a selected dropdown option in the hover state.
624
611
  $gl-dropdown-option-background-color-selected-active: $gl-color-neutral-200; // Used for the background of a selected dropdown option in the active state.
@@ -646,9 +633,6 @@ $gl-link-mention-text-color-current: $gl-color-orange-800; // Used for the menti
646
633
  $gl-link-mention-background-color-default: $gl-color-blue-100; // Used for the mention link default background.
647
634
  $gl-link-mention-background-color-current: $gl-color-orange-100; // Used for the mention link background when referencing the current user.
648
635
  $gl-nav-item-font-size: $gl-font-size-300; // Used for the font size of a navigation item
649
- $gl-nav-item-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default navigation item in the default state.
650
- $gl-nav-item-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default navigation item in the hover state.
651
- $gl-nav-item-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default navigation item in the active state.
652
636
  $gl-progress-bar-track-color: $gl-color-neutral-200; // Used for the track color for all progress-bar variants.
653
637
  $gl-skeleton-loader-background-color: $gl-color-neutral-100; // Used for the skeleton loader background color.
654
638
  $gl-skeleton-loader-shimmer-color: $gl-color-neutral-50; // Used for the animated shimmer effect in a skeleton loader.
@@ -656,7 +640,9 @@ $gl-spinner-track-color-default: $gl-color-neutral-100; // Used for the static t
656
640
  $gl-spinner-track-color-light: $gl-color-neutral-800; // Used for the static track (background) of a loading spinner on a dark background.
657
641
  $gl-spinner-segment-color-default: $gl-color-neutral-700; // Used for the animated segment of a loading spinner.
658
642
  $gl-spinner-segment-color-light: $gl-color-neutral-200; // Used for the animated segment of a loading spinner on a dark background.
659
- $gl-tab-selected-indicator-color-default: $gl-color-blue-500; // Used for the selected indicator of a tab.
643
+ $gl-toggle-switch-track-color-checked-default: $gl-color-neutral-800; // Used for the track color of a checked toggle switch in the default state.
644
+ $gl-toggle-switch-track-color-checked-hover: $gl-color-neutral-950; // Used for the track color of a checked toggle switch in the hover state.
645
+ $gl-toggle-switch-track-color-checked-active: $gl-color-neutral-1000; // Used for the track color of a checked toggle switch in the active state.
660
646
  $gl-token-selector-token-container-token-background-color-focus: $gl-color-neutral-300; // Used for the background color of a token in a token-selector when it's token-container is in the focus state.
661
647
  $gl-token-background-color: $gl-color-neutral-100; // Used for the token background color.
662
648
  $black: $gl-color-neutral-1000 !default;
@@ -732,16 +718,20 @@ $gl-action-disabled-foreground-color: $gl-color-neutral-400; // Used for the for
732
718
  $gl-action-disabled-background-color: $gl-color-neutral-50; // Used for the background of a disabled action.
733
719
  $gl-action-disabled-border-color: $gl-color-neutral-100; // Used for the border of a disabled action.
734
720
  $gl-action-selected-foreground-color-default: $gl-color-neutral-0; // Used for the foreground of a selected action in the default state.
735
- $gl-action-selected-background-color-default: $gl-color-blue-500; // Used for the background of a selected action in the default state.
736
- $gl-action-selected-background-color-hover: $gl-color-blue-700; // Used for the background of a selected action in the hover state.
737
- $gl-action-selected-background-color-active: $gl-color-blue-800; // Used for the background of a selected action in the active state.
721
+ $gl-action-selected-background-color-default: $gl-color-neutral-800; // Used for the background of a selected action in the default state.
722
+ $gl-action-selected-background-color-hover: $gl-color-neutral-950; // Used for the background of a selected action in the hover state.
723
+ $gl-action-selected-background-color-active: $gl-color-neutral-1000; // Used for the background of a selected action in the active state.
738
724
  $gl-action-neutral-foreground-color-default: $gl-color-neutral-900; // Used for the foreground of a neutral action in the default state.
739
- $gl-action-neutral-background-color-focus: $gl-action-neutral-background-color-hover; // Used for the background of a neutral action in the focus state.
725
+ $gl-action-neutral-background-color-default: $gl-color-alpha-0; // Used for the background of a neutral action in the default state.
726
+ $gl-action-neutral-background-color-hover: $gl-color-alpha-dark-6; // Used for the background of a neutral action in the hover state.
727
+ $gl-action-neutral-background-color-active: $gl-color-alpha-dark-16; // Used for the background of a neutral action in the active state.
740
728
  $gl-action-neutral-border-color-default: $gl-color-alpha-0; // Used for the border of a neutral action in the default state.
741
- $gl-action-confirm-foreground-color-default: $gl-color-blue-500; // Used for the foreground of a confirm (positive) action in the default state.
742
- $gl-action-confirm-foreground-color-hover: $gl-color-blue-700; // Used for the foreground of a confirm (positive) action in the hover state.
743
- $gl-action-confirm-foreground-color-active: $gl-color-blue-900; // Used for the foreground of a confirm (positive) action in the active state.
744
- $gl-action-confirm-background-color-focus: $gl-action-confirm-background-color-hover; // Used for the background of a confirm (positive) action in the focus state.
729
+ $gl-action-confirm-foreground-color-default: $gl-color-neutral-800; // Used for the foreground of a confirm (positive) action in the default state.
730
+ $gl-action-confirm-foreground-color-hover: $gl-color-neutral-950; // Used for the foreground of a confirm (positive) action in the hover state.
731
+ $gl-action-confirm-foreground-color-active: $gl-color-neutral-1000; // Used for the foreground of a confirm (positive) action in the active state.
732
+ $gl-action-confirm-background-color-default: $gl-color-alpha-0; // Used for the background of a confirm (positive) action in the default state.
733
+ $gl-action-confirm-background-color-hover: $gl-color-alpha-dark-6; // Used for the background of a confirm (positive) action in the hover state.
734
+ $gl-action-confirm-background-color-active: $gl-color-alpha-dark-16; // Used for the background of a confirm (positive) action in the active state.
745
735
  $gl-action-confirm-border-color-default: $gl-color-alpha-0; // Used for the border of a confirm action in the default state.
746
736
  $gl-action-danger-foreground-color-default: $gl-color-red-500; // Used for the foreground of a danger (destructive) action in the default state.
747
737
  $gl-action-danger-foreground-color-hover: $gl-color-red-700; // Used for the foreground of a danger (destructive) action in the hover state.
@@ -769,16 +759,12 @@ $gl-control-background-color-default: $gl-color-neutral-0; // Used for form cont
769
759
  $gl-control-background-color-disabled: $gl-color-neutral-10; // Used for disabled form control (checkbox, input, radio button, textarea) background.
770
760
  $gl-control-background-color-concatenation: $gl-color-neutral-10; // Used for the background of static content that prepends or appends a text input.
771
761
  $gl-control-background-color-readonly: $gl-color-alpha-dark-2; // Used for the background of static content that prepends or appends a text input.
772
- $gl-control-background-color-selected-default: $gl-color-blue-500; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
773
- $gl-control-background-color-selected-hover: $gl-color-blue-700; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
774
- $gl-control-background-color-selected-focus: $gl-color-blue-700; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
762
+ $gl-control-background-color-selected-default: $gl-color-neutral-800; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
763
+ $gl-control-background-color-selected-hover: $gl-color-neutral-950; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
775
764
  $gl-control-border-color-default: $gl-color-neutral-400; // Used for form control (input, radio button, checkbox, textarea) default border.
776
765
  $gl-control-border-color-hover: $gl-color-neutral-600; // Used for form control (input, radio button, checkbox, textarea) border on hover.
777
766
  $gl-control-border-color-focus: $gl-color-neutral-900; // Used for form control (input, radio button, checkbox, textarea) border on focus.
778
767
  $gl-control-border-color-disabled: $gl-color-neutral-100; // Used for disabled form control (input, radio button, checkbox, textarea) border.
779
- $gl-control-border-color-selected-default: $gl-color-blue-500; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
780
- $gl-control-border-color-selected-hover: $gl-color-blue-700; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
781
- $gl-control-border-color-selected-focus: $gl-color-blue-700; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
782
768
  $gl-control-placeholder-color: $gl-color-neutral-500; // Used for placeholder text within inputs.
783
769
  $gl-control-indicator-color-selected: $gl-color-neutral-0; // Used for checkbox and radio button state indicators.
784
770
  $gl-control-indicator-color-disabled: $gl-color-neutral-500; // Used for disabled checkbox and radio button state indicators.
@@ -956,19 +942,24 @@ $gl-button-default-primary-foreground-color-active: $gl-button-default-primary-f
956
942
  $gl-button-default-primary-background-color-focus: $gl-button-default-primary-background-color-hover; // Used for the background of an default primary button in the focus state.
957
943
  $gl-button-default-primary-border-color-focus: $gl-button-default-primary-border-color-hover; // Used for the border of an default primary button in the focus state.
958
944
  $gl-button-default-tertiary-foreground-color-default: $gl-action-neutral-foreground-color-default; // Used for the foreground of a default borderless, tertiary button in the default state.
959
- $gl-button-default-tertiary-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default borderless, tertiary button in the focus state.
945
+ $gl-button-default-tertiary-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default borderless, tertiary button in the default state.
946
+ $gl-button-default-tertiary-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default borderless, tertiary button in the hover state.
947
+ $gl-button-default-tertiary-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default borderless, tertiary button in the active state.
960
948
  $gl-button-default-tertiary-border-color-default: $gl-action-neutral-border-color-default; // Used for the border of a default borderless, tertiary button in the default state.
961
- $gl-button-confirm-primary-background-color-default: $gl-action-strong-confirm-background-color-default; // Used for the background of a confirm (positive) primary button in the default state.
962
- $gl-button-confirm-primary-background-color-hover: $gl-action-strong-confirm-background-color-hover; // Used for the background of a confirm (positive) primary button in the hover state.
963
- $gl-button-confirm-primary-background-color-active: $gl-action-strong-confirm-background-color-active; // Used for the background of a confirm (positive) primary button in the active state.
964
- $gl-button-confirm-primary-border-color-focus: $gl-button-confirm-primary-border-color-hover; // Used for the border of a confirm (positive) primary button in the focus state.
949
+ $gl-button-confirm-primary-foreground-color-hover: $gl-button-confirm-primary-foreground-color-default; // Used for the foreground of a confirm (positive) primary button in the hover state.
950
+ $gl-button-confirm-primary-background-color-focus: $gl-button-confirm-primary-background-color-hover; // Used for the background of a confirm (positive) primary button in the focus state.
951
+ $gl-button-confirm-primary-border-color-hover: $gl-button-confirm-primary-border-color-default; // Used for the border of a confirm (positive) primary button in the hover state.
952
+ $gl-button-confirm-primary-border-color-focus: $gl-button-confirm-primary-border-color-default; // Used for the border of a confirm (positive) primary button in the focus state.
953
+ $gl-button-confirm-primary-border-color-active: $gl-button-confirm-primary-border-color-default; // Used for the border of a confirm (positive) primary button in the active state.
965
954
  $gl-button-confirm-secondary-foreground-color-focus: $gl-button-confirm-secondary-foreground-color-hover; // Used for the foreground of a confirm (positive) button in the focus state.
966
955
  $gl-button-confirm-secondary-background-color-focus: $gl-button-confirm-secondary-background-color-hover; // Used for the background of an outlined confirm (positive) button in the focus state.
967
956
  $gl-button-confirm-secondary-border-color-focus: $gl-button-confirm-secondary-border-color-hover; // Used for the border of an outlined confirm (positive) button in the focus state.
968
957
  $gl-button-confirm-tertiary-foreground-color-default: $gl-action-confirm-foreground-color-default; // Used for the foreground of a borderless, tertiary confirm (positive) button in the default state.
969
958
  $gl-button-confirm-tertiary-foreground-color-hover: $gl-action-confirm-foreground-color-hover; // Used for the foreground of a borderless, tertiary confirm (positive) button in the hover state.
970
959
  $gl-button-confirm-tertiary-foreground-color-active: $gl-action-confirm-foreground-color-active; // Used for the foreground of a borderless, tertiary confirm (positive) button in the active state.
971
- $gl-button-confirm-tertiary-background-color-focus: $gl-action-confirm-background-color-focus; // Used for the background of a borderless, tertiary confirm (positive) button in the focus state.
960
+ $gl-button-confirm-tertiary-background-color-default: $gl-action-confirm-background-color-default; // Used for the background of a borderless, tertiary confirm (positive) button in the default state.
961
+ $gl-button-confirm-tertiary-background-color-hover: $gl-action-confirm-background-color-hover; // Used for the background of a borderless, tertiary confirm (positive) button in the hover state.
962
+ $gl-button-confirm-tertiary-background-color-active: $gl-action-confirm-background-color-active; // Used for the background of a borderless, tertiary confirm (positive) button in the active state.
972
963
  $gl-button-confirm-tertiary-border-color-default: $gl-action-confirm-border-color-default; // Used for the border of a borderless, tertiary confirm (positive) button in the default state.
973
964
  $gl-button-danger-primary-foreground-color-hover: $gl-button-danger-primary-foreground-color-default; // Used for the foreground of a danger (destructive) primary button in the hover state.
974
965
  $gl-button-danger-primary-foreground-color-focus: $gl-button-danger-primary-foreground-color-default; // Used for the foreground of a danger (destructive) primary button in the focus state.
@@ -1003,13 +994,15 @@ $gl-dropdown-option-text-color-default: $gl-action-neutral-foreground-color-defa
1003
994
  $gl-dropdown-option-text-color-disabled: $gl-action-disabled-foreground-color; // Used for the text of a dropdown option in the disabled state.
1004
995
  $gl-dropdown-option-indicator-color-selected-default: $gl-control-background-color-selected-default; // Used for the dropdown selected option indicator in the default state.
1005
996
  $gl-dropdown-option-indicator-color-selected-hover: $gl-control-background-color-selected-hover; // Used for the dropdown selected option indicator in the hover state.
1006
- $gl-dropdown-option-indicator-color-selected-focus: $gl-control-background-color-selected-focus; // Used for the dropdown selected option indicator in the focus state.
1007
- $gl-dropdown-option-indicator-color-selected-active: $gl-control-background-color-selected-focus; // Used for the dropdown selected option indicator in the active state.
1008
- $gl-dropdown-option-background-color-unselected-focus: $gl-action-neutral-background-color-focus; // Used for the background of an unselected dropdown option in the focus state.
997
+ $gl-dropdown-option-background-color-unselected-default: $gl-action-neutral-background-color-default; // Used for the background of an unselected dropdown option in the default state.
998
+ $gl-dropdown-option-background-color-unselected-hover: $gl-action-neutral-background-color-hover; // Used for the background of an unselected dropdown option in the hover state.
999
+ $gl-dropdown-option-background-color-unselected-active: $gl-action-neutral-background-color-active; // Used for the background of an unselected dropdown option in the active state.
1009
1000
  $gl-dropdown-option-background-color-selected-focus: $gl-dropdown-option-background-color-selected-hover; // Used for the background of a selected dropdown option in the focus state.
1010
1001
  $gl-modal-border-radius: $gl-border-radius-2xl; // Used for modal border radius.
1011
1002
  $gl-nav-item-foreground-color-default: $gl-action-neutral-foreground-color-default; // Used for the foreground of a default navigation item in the default state.
1012
- $gl-nav-item-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default navigation item in the focus state.
1003
+ $gl-nav-item-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default navigation item in the default state.
1004
+ $gl-nav-item-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default navigation item in the hover state.
1005
+ $gl-nav-item-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default navigation item in the active state.
1013
1006
  $gl-nav-item-selected-foreground-color-default: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected navigation item in the default state.
1014
1007
  $gl-nav-item-selected-background-color-default: $gl-action-selected-background-color-default; // Used for the background of a selected navigation item in the default state.
1015
1008
  $gl-nav-item-selected-background-color-hover: $gl-action-selected-background-color-hover; // Used for the background of a selected navigation item in the hover state.
@@ -1020,6 +1013,14 @@ $gl-progress-bar-indicator-color-warning: $gl-status-warning-icon-color; // Used
1020
1013
  $gl-progress-bar-indicator-color-danger: $gl-status-danger-icon-color; // Used for the indicator color for the danger progress-bar variant.
1021
1014
  $gl-table-row-background-color-hover: $gl-highlight-target-background-color; // Used for the background of a table row in hover state.
1022
1015
  $gl-table-sorting-icon-color: $gl-text-color-heading; // Used for the color of the sorting icons in the column headers.
1016
+ $gl-toggle-switch-track-color-unchecked-default: $gl-control-border-color-default; // Used for the track color of an unchecked toggle switch in the default state.
1017
+ $gl-toggle-switch-track-color-unchecked-hover: $gl-control-border-color-hover; // Used for the track color of an unchecked toggle switch in the hover state.
1018
+ $gl-toggle-switch-track-color-unchecked-focus: $gl-control-border-color-focus; // Used for the track color of an unchecked toggle switch in the focus state.
1019
+ $gl-toggle-switch-track-color-unchecked-active: $gl-control-border-color-focus; // Used for the track color of an unchecked toggle switch in the active state.
1020
+ $gl-toggle-switch-track-color-checked-focus: $gl-toggle-switch-track-color-checked-hover; // Used for the track color of a checked toggle switch in the focus state.
1021
+ $gl-toggle-switch-background-color-unchecked-default: $gl-control-indicator-color-selected; // Used for the background color of the unchecked toggle switch thumb in the default state.
1022
+ $gl-toggle-switch-background-color-checked-default: $gl-action-strong-confirm-foreground-color-default; // Used for the background color of the checked toggle switch thumb in the default state.
1023
+ $gl-toggle-switch-background-color-disabled: $gl-action-disabled-foreground-color; // Used for the background color of the toggle switch thumb in the disabled state.
1023
1024
  $gl-toggle-switch-icon-color-unchecked-default: $gl-action-strong-neutral-background-color-default; // Used for the icon color of an unchecked toggle switch in the default state.
1024
1025
  $gl-toggle-switch-icon-color-unchecked-hover: $gl-action-strong-neutral-background-color-hover; // Used for the icon color of an unchecked toggle switch in the hover state.
1025
1026
  $gl-toggle-switch-icon-color-unchecked-active: $gl-action-strong-neutral-background-color-active; // Used for the icon color of an unchecked toggle switch in the active state.
@@ -1037,10 +1038,12 @@ $gl-action-selected-border-color-active: $gl-action-selected-background-color-ac
1037
1038
  $gl-action-neutral-foreground-color-hover: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the hover state.
1038
1039
  $gl-action-neutral-foreground-color-focus: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the focus state.
1039
1040
  $gl-action-neutral-foreground-color-active: $gl-action-neutral-foreground-color-default; // Used for the foreground of a neutral action in the active state.
1041
+ $gl-action-neutral-background-color-focus: $gl-action-neutral-background-color-hover; // Used for the background of a neutral action in the focus state.
1040
1042
  $gl-action-neutral-border-color-hover: $gl-action-neutral-border-color-default; // Used for the border of a neutral action in the hover state.
1041
1043
  $gl-action-neutral-border-color-focus: $gl-action-neutral-border-color-default; // Used for the border of a neutral action in the focus state.
1042
1044
  $gl-action-neutral-border-color-active: $gl-action-neutral-border-color-default; // Used for the border of a neutral action in the active state.
1043
1045
  $gl-action-confirm-foreground-color-focus: $gl-action-confirm-foreground-color-hover; // Used for the foreground of a confirm (positive) action in the focus state.
1046
+ $gl-action-confirm-background-color-focus: $gl-action-confirm-background-color-hover; // Used for the background of a confirm (positive) action in the focus state.
1044
1047
  $gl-action-confirm-border-color-hover: $gl-action-confirm-border-color-default; // Used for the border of a confirm action in the hover state.
1045
1048
  $gl-action-confirm-border-color-focus: $gl-action-confirm-border-color-default; // Used for the border of a confirm action in the focus state.
1046
1049
  $gl-action-confirm-border-color-active: $gl-action-confirm-border-color-default; // Used for the border of a confirm action in the active state.
@@ -1054,7 +1057,10 @@ $gl-action-strong-confirm-border-color-hover: $gl-action-strong-confirm-border-c
1054
1057
  $gl-action-strong-neutral-background-color-focus: $gl-action-strong-neutral-background-color-hover; // Used for the background of a strong neutral action in the focus state.
1055
1058
  $gl-action-strong-neutral-foreground-color-hover: $gl-action-strong-neutral-foreground-color-default; // Used for the foreground of a strong neutral action in the hover state.
1056
1059
  $gl-action-strong-neutral-border-color-hover: $gl-action-strong-neutral-border-color-default; // Used for the border of a strong neutral action in the hover state.
1060
+ $gl-control-background-color-selected-focus: $gl-control-background-color-selected-hover; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on focus.
1057
1061
  $gl-control-border-color-error: $gl-feedback-danger-border-color; // Used for invalid form control (input, textarea) border.
1062
+ $gl-control-border-color-selected-default: $gl-control-background-color-selected-default; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
1063
+ $gl-control-border-color-selected-hover: $gl-control-background-color-selected-hover; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
1058
1064
  $gl-control-border-radius: $gl-border-radius-lg; // Used for form control (input, radio button, checkbox, textarea) default border radius.
1059
1065
  $gl-control-text-color-error: $gl-text-color-danger; // Used for the helper text when the input is invalid.
1060
1066
  $gl-control-text-color-valid: $gl-text-color-success; // Used for the helper text when the input is valid.
@@ -1183,12 +1189,13 @@ $gl-button-border-radius: $gl-action-border-radius; // Used for button border ra
1183
1189
  $gl-button-default-tertiary-foreground-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the foreground of a default borderless, tertiary button in the hover state.
1184
1190
  $gl-button-default-tertiary-foreground-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the foreground of a default borderless, tertiary button in the focus state.
1185
1191
  $gl-button-default-tertiary-foreground-color-active: $gl-action-neutral-foreground-color-active; // Used for the foreground of a default borderless, tertiary button in the active state.
1192
+ $gl-button-default-tertiary-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default borderless, tertiary button in the focus state.
1186
1193
  $gl-button-default-tertiary-border-color-hover: $gl-action-neutral-border-color-hover; // Used for the border of a default borderless, tertiary button in the hover state.
1187
1194
  $gl-button-default-tertiary-border-color-focus: $gl-action-neutral-border-color-focus; // Used for the border of a default borderless, tertiary button in the focus state.
1188
1195
  $gl-button-default-tertiary-border-color-active: $gl-action-neutral-border-color-active; // Used for the border of a default borderless, tertiary button in the active state.
1189
- $gl-button-confirm-primary-foreground-color-hover: $gl-action-strong-confirm-foreground-color-hover; // Used for the foreground of a confirm (positive) primary button in the hover state.
1190
- $gl-button-confirm-primary-background-color-focus: $gl-action-strong-confirm-background-color-focus; // Used for the background of a confirm (positive) primary button in the focus state.
1196
+ $gl-button-confirm-primary-foreground-color-focus: $gl-button-confirm-primary-foreground-color-hover; // Used for the foreground of a confirm (positive) primary button in the focus state.
1191
1197
  $gl-button-confirm-tertiary-foreground-color-focus: $gl-action-confirm-foreground-color-focus; // Used for the foreground of a borderless, tertiary confirm (positive) button in the focus state.
1198
+ $gl-button-confirm-tertiary-background-color-focus: $gl-action-confirm-background-color-focus; // Used for the background of a borderless, tertiary confirm (positive) button in the focus state.
1192
1199
  $gl-button-confirm-tertiary-border-color-hover: $gl-action-confirm-border-color-hover; // Used for the border of a borderless, tertiary confirm (positive) button in the hover state.
1193
1200
  $gl-button-confirm-tertiary-border-color-focus: $gl-action-confirm-border-color-focus; // Used for the border of a borderless, tertiary confirm (positive) button in the focus state.
1194
1201
  $gl-button-confirm-tertiary-border-color-active: $gl-action-confirm-border-color-active; // Used for the border of a borderless, tertiary confirm (positive) button in the active state.
@@ -1208,12 +1215,21 @@ $gl-chart-zoom-handle-color: $gl-icon-color-subtle; // Used in charts for the ha
1208
1215
  $gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
1209
1216
  $gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
1210
1217
  $gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
1218
+ $gl-dropdown-option-indicator-color-selected-focus: $gl-control-background-color-selected-focus; // Used for the dropdown selected option indicator in the focus state.
1219
+ $gl-dropdown-option-indicator-color-selected-active: $gl-control-background-color-selected-focus; // Used for the dropdown selected option indicator in the active state.
1220
+ $gl-dropdown-option-background-color-unselected-focus: $gl-action-neutral-background-color-focus; // Used for the background of an unselected dropdown option in the focus state.
1211
1221
  $gl-nav-item-border-radius: $gl-action-border-radius; // Used for the border radius of a navigation item
1212
1222
  $gl-nav-item-foreground-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the foreground of a default navigation item in the hover state.
1213
1223
  $gl-nav-item-foreground-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the foreground of a default navigation item in the focus state.
1214
1224
  $gl-nav-item-foreground-color-active: $gl-action-neutral-foreground-color-active; // Used for the foreground of a default navigation item in the active state.
1225
+ $gl-nav-item-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default navigation item in the focus state.
1215
1226
  $gl-nav-item-selected-foreground-color-hover: $gl-action-selected-foreground-color-hover; // Used for the foreground of a selected navigation item in the hover state.
1216
1227
  $gl-nav-item-selected-background-color-focus: $gl-action-selected-background-color-focus; // Used for the background of a selected navigation item in the focus state.
1228
+ $gl-tab-selected-indicator-color-default: $gl-action-selected-border-color-active; // Used for the selected indicator of a tab.
1229
+ $gl-toggle-switch-background-color-unchecked-hover: $gl-toggle-switch-background-color-unchecked-default; // Used for the background color of the unchecked toggle switch thumb in the hover state.
1230
+ $gl-toggle-switch-background-color-unchecked-focus: $gl-toggle-switch-background-color-unchecked-default; // Used for the background color of the unchecked toggle switch thumb in the focus state.
1231
+ $gl-toggle-switch-background-color-unchecked-active: $gl-toggle-switch-background-color-unchecked-default; // Used for the background color of the unchecked toggle switch thumb in the active state.
1232
+ $gl-toggle-switch-background-color-checked-hover: $gl-action-strong-confirm-foreground-color-hover; // Used for the background color of the checked toggle switch thumb in the hover state.
1217
1233
  $gl-toggle-switch-icon-color-unchecked-focus: $gl-action-strong-neutral-background-color-focus; // Used for the icon color of an unchecked toggle switch in the focus state.
1218
1234
  $gl-toggle-switch-icon-color-checked-focus: $gl-action-strong-confirm-background-color-focus; // Used for the icon color of a checked toggle switch in the focus state.
1219
1235
  $gl-token-border-radius: $gl-border-radius-default; // Used for token border radius.
@@ -1223,12 +1239,14 @@ $gl-action-strong-confirm-foreground-color-focus: $gl-action-strong-confirm-fore
1223
1239
  $gl-action-strong-confirm-border-color-focus: $gl-action-strong-confirm-border-color-hover; // Used for the border of a strong confirm action in the focus state.
1224
1240
  $gl-action-strong-neutral-foreground-color-focus: $gl-action-strong-neutral-foreground-color-hover; // Used for the foreground of a strong neutral action in the focus state.
1225
1241
  $gl-action-strong-neutral-border-color-focus: $gl-action-strong-neutral-border-color-hover; // Used for the border of a strong neutral action in the focus state.
1226
- $gl-button-confirm-primary-foreground-color-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the focus state.
1242
+ $gl-control-border-color-selected-focus: $gl-control-background-color-selected-focus; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
1243
+ $gl-button-confirm-primary-foreground-color-active: $gl-button-confirm-primary-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the active state.
1227
1244
  $gl-nav-item-selected-foreground-color-focus: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected navigation item in the focus state.
1245
+ $gl-toggle-switch-background-color-checked-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the background color of the checked toggle switch thumb in the focus state.
1228
1246
  $gl-action-selected-foreground-color-active: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected action in the active state.
1229
1247
  $gl-action-strong-confirm-foreground-color-active: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a strong confirm action in the active state.
1230
1248
  $gl-action-strong-confirm-border-color-active: $gl-action-strong-confirm-border-color-focus; // Used for the border of a strong confirm action in the active state.
1231
1249
  $gl-action-strong-neutral-foreground-color-active: $gl-action-strong-neutral-foreground-color-focus; // Used for the foreground of a strong neutral action in the active state.
1232
1250
  $gl-action-strong-neutral-border-color-active: $gl-action-strong-neutral-border-color-focus; // Used for the border of a strong neutral action in the active state.
1233
- $gl-button-confirm-primary-foreground-color-active: $gl-action-strong-confirm-foreground-color-active; // Used for the foreground of a confirm (positive) primary button in the active state.
1234
1251
  $gl-nav-item-selected-foreground-color-active: $gl-action-selected-foreground-color-active; // Used for the foreground of a selected navigation item in the active state.
1252
+ $gl-toggle-switch-background-color-checked-active: $gl-action-strong-confirm-foreground-color-active; // Used for the background color of the checked toggle switch thumb in the active state.
@@ -32,6 +32,7 @@ $gl-color-alpha-light-8: var(--gl-color-alpha-light-8);
32
32
  $gl-color-alpha-light-16: var(--gl-color-alpha-light-16);
33
33
  $gl-color-alpha-light-24: var(--gl-color-alpha-light-24);
34
34
  $gl-color-alpha-light-36: var(--gl-color-alpha-light-36);
35
+ $gl-color-alpha-light-40: var(--gl-color-alpha-light-40);
35
36
  $gl-color-blue-50: var(--gl-color-blue-50);
36
37
  $gl-color-blue-100: var(--gl-color-blue-100);
37
38
  $gl-color-blue-200: var(--gl-color-blue-200);
@@ -705,6 +706,23 @@ $gl-spinner-segment-color-light: var(--gl-spinner-segment-color-light);
705
706
  $gl-table-row-background-color-hover: var(--gl-table-row-background-color-hover);
706
707
  $gl-table-sorting-icon-color: var(--gl-table-sorting-icon-color);
707
708
  $gl-tab-selected-indicator-color-default: var(--gl-tab-selected-indicator-color-default);
709
+ $gl-toggle-switch-track-color-unchecked-default: var(--gl-toggle-switch-track-color-unchecked-default);
710
+ $gl-toggle-switch-track-color-unchecked-hover: var(--gl-toggle-switch-track-color-unchecked-hover);
711
+ $gl-toggle-switch-track-color-unchecked-focus: var(--gl-toggle-switch-track-color-unchecked-focus);
712
+ $gl-toggle-switch-track-color-unchecked-active: var(--gl-toggle-switch-track-color-unchecked-active);
713
+ $gl-toggle-switch-track-color-checked-default: var(--gl-toggle-switch-track-color-checked-default);
714
+ $gl-toggle-switch-track-color-checked-hover: var(--gl-toggle-switch-track-color-checked-hover);
715
+ $gl-toggle-switch-track-color-checked-focus: var(--gl-toggle-switch-track-color-checked-focus);
716
+ $gl-toggle-switch-track-color-checked-active: var(--gl-toggle-switch-track-color-checked-active);
717
+ $gl-toggle-switch-background-color-unchecked-default: var(--gl-toggle-switch-background-color-unchecked-default);
718
+ $gl-toggle-switch-background-color-unchecked-hover: var(--gl-toggle-switch-background-color-unchecked-hover);
719
+ $gl-toggle-switch-background-color-unchecked-focus: var(--gl-toggle-switch-background-color-unchecked-focus);
720
+ $gl-toggle-switch-background-color-unchecked-active: var(--gl-toggle-switch-background-color-unchecked-active);
721
+ $gl-toggle-switch-background-color-checked-default: var(--gl-toggle-switch-background-color-checked-default);
722
+ $gl-toggle-switch-background-color-checked-hover: var(--gl-toggle-switch-background-color-checked-hover);
723
+ $gl-toggle-switch-background-color-checked-focus: var(--gl-toggle-switch-background-color-checked-focus);
724
+ $gl-toggle-switch-background-color-checked-active: var(--gl-toggle-switch-background-color-checked-active);
725
+ $gl-toggle-switch-background-color-disabled: var(--gl-toggle-switch-background-color-disabled);
708
726
  $gl-toggle-switch-icon-color-unchecked-default: var(--gl-toggle-switch-icon-color-unchecked-default);
709
727
  $gl-toggle-switch-icon-color-unchecked-hover: var(--gl-toggle-switch-icon-color-unchecked-hover);
710
728
  $gl-toggle-switch-icon-color-unchecked-focus: var(--gl-toggle-switch-icon-color-unchecked-focus);
@@ -199,6 +199,7 @@ const alphaLightColors = {
199
199
  16: 'var(--gl-color-alpha-light-16)',
200
200
  24: 'var(--gl-color-alpha-light-24)',
201
201
  36: 'var(--gl-color-alpha-light-36)',
202
+ 40: 'var(--gl-color-alpha-light-40)',
202
203
  };
203
204
  const brandColors = {
204
205
  'brand-white': 'var(--gl-color-brand-white)',
@@ -225,6 +225,22 @@
225
225
  "alpha": 0.36
226
226
  },
227
227
  "$type": "color",
228
+ "$deprecated": true,
229
+ "$extensions": {
230
+ "com.figma.scopes": []
231
+ }
232
+ },
233
+ "40": {
234
+ "$value": {
235
+ "colorSpace": "srgb",
236
+ "components": [
237
+ 1,
238
+ 1,
239
+ 1
240
+ ],
241
+ "alpha": 0.4
242
+ },
243
+ "$type": "color",
228
244
  "$extensions": {
229
245
  "com.figma.scopes": []
230
246
  }
@@ -362,7 +362,7 @@
362
362
  }
363
363
  },
364
364
  "hover": {
365
- "$value": "{action.strong.confirm.foreground.color.hover}",
365
+ "$value": "{button.confirm.primary.foreground.color.default}",
366
366
  "$type": "color",
367
367
  "$description": "Used for the foreground of a confirm (positive) primary button in the hover state.",
368
368
  "$extensions": {
@@ -373,7 +373,7 @@
373
373
  }
374
374
  },
375
375
  "focus": {
376
- "$value": "{action.strong.confirm.foreground.color.focus}",
376
+ "$value": "{button.confirm.primary.foreground.color.hover}",
377
377
  "$type": "color",
378
378
  "$description": "Used for the foreground of a confirm (positive) primary button in the focus state.",
379
379
  "$extensions": {
@@ -384,7 +384,7 @@
384
384
  }
385
385
  },
386
386
  "active": {
387
- "$value": "{action.strong.confirm.foreground.color.active}",
387
+ "$value": "{button.confirm.primary.foreground.color.focus}",
388
388
  "$type": "color",
389
389
  "$description": "Used for the foreground of a confirm (positive) primary button in the active state.",
390
390
  "$extensions": {
@@ -399,7 +399,10 @@
399
399
  "background": {
400
400
  "color": {
401
401
  "default": {
402
- "$value": "{action.strong.confirm.background.color.default}",
402
+ "$value": {
403
+ "default": "{color.neutral.800}",
404
+ "dark": "{color.neutral.50}"
405
+ },
403
406
  "$type": "color",
404
407
  "$description": "Used for the background of a confirm (positive) primary button in the default state.",
405
408
  "$extensions": {
@@ -410,7 +413,10 @@
410
413
  }
411
414
  },
412
415
  "hover": {
413
- "$value": "{action.strong.confirm.background.color.hover}",
416
+ "$value": {
417
+ "default": "{color.neutral.950}",
418
+ "dark": "{color.neutral.10}"
419
+ },
414
420
  "$type": "color",
415
421
  "$description": "Used for the background of a confirm (positive) primary button in the hover state.",
416
422
  "$extensions": {
@@ -421,7 +427,7 @@
421
427
  }
422
428
  },
423
429
  "focus": {
424
- "$value": "{action.strong.confirm.background.color.focus}",
430
+ "$value": "{button.confirm.primary.background.color.hover}",
425
431
  "$type": "color",
426
432
  "$description": "Used for the background of a confirm (positive) primary button in the focus state.",
427
433
  "$extensions": {
@@ -432,7 +438,10 @@
432
438
  }
433
439
  },
434
440
  "active": {
435
- "$value": "{action.strong.confirm.background.color.active}",
441
+ "$value": {
442
+ "default": "{color.neutral.1000}",
443
+ "dark": "{color.neutral.100}"
444
+ },
436
445
  "$type": "color",
437
446
  "$description": "Used for the background of a confirm (positive) primary button in the active state.",
438
447
  "$extensions": {
@@ -447,10 +456,7 @@
447
456
  "border": {
448
457
  "color": {
449
458
  "default": {
450
- "$value": {
451
- "default": "{color.blue.600}",
452
- "dark": "{color.alpha.0}"
453
- },
459
+ "$value": "{color.alpha.0}",
454
460
  "$type": "color",
455
461
  "$description": "Used for the border of a confirm (positive) primary button in the default state.",
456
462
  "$extensions": {
@@ -460,10 +466,7 @@
460
466
  }
461
467
  },
462
468
  "hover": {
463
- "$value": {
464
- "default": "{color.blue.800}",
465
- "dark": "{color.alpha.0}"
466
- },
469
+ "$value": "{button.confirm.primary.border.color.default}",
467
470
  "$type": "color",
468
471
  "$description": "Used for the border of a confirm (positive) primary button in the hover state.",
469
472
  "$extensions": {
@@ -473,7 +476,7 @@
473
476
  }
474
477
  },
475
478
  "focus": {
476
- "$value": "{button.confirm.primary.border.color.hover}",
479
+ "$value": "{button.confirm.primary.border.color.default}",
477
480
  "$type": "color",
478
481
  "$description": "Used for the border of a confirm (positive) primary button in the focus state.",
479
482
  "$extensions": {
@@ -483,10 +486,7 @@
483
486
  }
484
487
  },
485
488
  "active": {
486
- "$value": {
487
- "default": "{color.blue.900}",
488
- "dark": "{color.alpha.0}"
489
- },
489
+ "$value": "{button.confirm.primary.border.color.default}",
490
490
  "$type": "color",
491
491
  "$description": "Used for the border of a confirm (positive) primary button in the active state.",
492
492
  "$extensions": {
@@ -503,8 +503,8 @@
503
503
  "color": {
504
504
  "default": {
505
505
  "$value": {
506
- "default": "{color.blue.500}",
507
- "dark": "{color.blue.100}"
506
+ "default": "{color.neutral.800}",
507
+ "dark": "{color.neutral.50}"
508
508
  },
509
509
  "$type": "color",
510
510
  "$description": "Used for the foreground of a confirm (positive) button in the default state.",
@@ -517,8 +517,8 @@
517
517
  },
518
518
  "hover": {
519
519
  "$value": {
520
- "default": "{color.blue.700}",
521
- "dark": "{color.blue.100}"
520
+ "default": "{color.neutral.950}",
521
+ "dark": "{color.neutral.10}"
522
522
  },
523
523
  "$type": "color",
524
524
  "$description": "Used for the foreground of a confirm (positive) button in the hover state.",
@@ -542,8 +542,8 @@
542
542
  },
543
543
  "active": {
544
544
  "$value": {
545
- "default": "{color.blue.900}",
546
- "dark": "{color.blue.100}"
545
+ "default": "{color.neutral.1000}",
546
+ "dark": "{color.neutral.0}"
547
547
  },
548
548
  "$type": "color",
549
549
  "$description": "Used for the foreground of a confirm (positive) button in the active state.",
@@ -561,15 +561,7 @@
561
561
  "default": {
562
562
  "$value": {
563
563
  "default": "{color.neutral.0}",
564
- "dark": {
565
- "colorSpace": "srgb",
566
- "components": [
567
- 0.25882352941176473,
568
- 0.5607843137254902,
569
- 0.8627450980392157
570
- ],
571
- "alpha": 0.4
572
- }
564
+ "dark": "{color.alpha.light.24}"
573
565
  },
574
566
  "$type": "color",
575
567
  "$description": "Used for the background of an outlined confirm (positive) button in the default state.",
@@ -582,16 +574,8 @@
582
574
  },
583
575
  "hover": {
584
576
  "$value": {
585
- "default": "{color.blue.50}",
586
- "dark": {
587
- "colorSpace": "srgb",
588
- "components": [
589
- 0.25882352941176473,
590
- 0.5607843137254902,
591
- 0.8627450980392157
592
- ],
593
- "alpha": 0.64
594
- }
577
+ "default": "{color.neutral.50}",
578
+ "dark": "{color.alpha.light.40}"
595
579
  },
596
580
  "$type": "color",
597
581
  "$description": "Used for the background of an outlined confirm (positive) button in the hover state.",
@@ -615,16 +599,8 @@
615
599
  },
616
600
  "active": {
617
601
  "$value": {
618
- "default": "{color.blue.100}",
619
- "dark": {
620
- "colorSpace": "srgb",
621
- "components": [
622
- 0.25882352941176473,
623
- 0.5607843137254902,
624
- 0.8627450980392157
625
- ],
626
- "alpha": 0.32
627
- }
602
+ "default": "{color.neutral.100}",
603
+ "dark": "{color.alpha.light.16}"
628
604
  },
629
605
  "$type": "color",
630
606
  "$description": "Used for the background of an outlined confirm (positive) button in the active state.",
@@ -641,7 +617,7 @@
641
617
  "color": {
642
618
  "default": {
643
619
  "$value": {
644
- "default": "{color.blue.500}",
620
+ "default": "{color.neutral.800}",
645
621
  "dark": "{color.alpha.0}"
646
622
  },
647
623
  "$type": "color",
@@ -654,7 +630,7 @@
654
630
  },
655
631
  "hover": {
656
632
  "$value": {
657
- "default": "{color.blue.700}",
633
+ "default": "{color.neutral.950}",
658
634
  "dark": "{color.alpha.0}"
659
635
  },
660
636
  "$type": "color",
@@ -677,7 +653,7 @@
677
653
  },
678
654
  "active": {
679
655
  "$value": {
680
- "default": "{color.blue.900}",
656
+ "default": "{color.neutral.1000}",
681
657
  "dark": "{color.alpha.0}"
682
658
  },
683
659
  "$type": "color",