@stackoverflow/stacks 3.0.0-beta.1 → 3.0.0-beta.12

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 (32) hide show
  1. package/dist/css/stacks.css +1543 -1285
  2. package/dist/css/stacks.min.css +1 -1
  3. package/lib/atomic/misc.less +1 -1
  4. package/lib/atomic/typography.less +64 -38
  5. package/lib/base/body.less +2 -7
  6. package/lib/components/activity-indicator/activity-indicator.less +2 -19
  7. package/lib/components/anchor/anchor.less +1 -1
  8. package/lib/components/badge/badge.less +156 -177
  9. package/lib/components/bling/bling.less +130 -0
  10. package/lib/components/button/button.less +222 -374
  11. package/lib/components/checkbox_radio/checkbox_radio.less +12 -10
  12. package/lib/components/input-icon/input-icon.less +3 -3
  13. package/lib/components/input_textarea/input_textarea.less +70 -58
  14. package/lib/components/link/link.less +1 -1
  15. package/lib/components/link-preview/link-preview.less +1 -1
  16. package/lib/components/menu/menu.less +100 -21
  17. package/lib/components/modal/modal.less +10 -10
  18. package/lib/components/navigation/navigation.less +61 -37
  19. package/lib/components/pagination/pagination.less +44 -43
  20. package/lib/components/popover/popover.less +3 -5
  21. package/lib/components/post-summary/post-summary.less +3 -2
  22. package/lib/components/progress-bar/progress-bar.less +11 -10
  23. package/lib/components/select/select.less +26 -37
  24. package/lib/components/tag/tag.less +59 -70
  25. package/lib/components/toggle-switch/toggle-switch.less +4 -2
  26. package/lib/exports/color-mixins.less +13 -3
  27. package/lib/exports/color-sets.less +256 -216
  28. package/lib/exports/constants-helpers.less +4 -1
  29. package/lib/exports/constants-type.less +25 -25
  30. package/lib/stacks-static.less +1 -1
  31. package/package.json +1 -1
  32. package/lib/components/award-bling/award-bling.less +0 -31
@@ -411,7 +411,7 @@ fieldset {
411
411
  position: relative;
412
412
  }
413
413
  .s-activity-indicator {
414
- --_ai-bg: var(--theme-secondary-400);
414
+ --_ai-bg: var(--pink-400);
415
415
  --_ai-fc: var(--white);
416
416
  --_ai-min-size: var(--su-static16);
417
417
  --_ai-p: 0 calc(var(--su-static4) - var(--su-static1));
@@ -420,7 +420,7 @@ fieldset {
420
420
  min-width: var(--_ai-min-size);
421
421
  min-height: var(--_ai-min-size);
422
422
  padding: var(--_ai-p);
423
- border-radius: 1000px;
423
+ border-radius: var(--br-pill);
424
424
  display: inline-flex;
425
425
  font-size: var(--fs-fine);
426
426
  font-weight: 600;
@@ -430,28 +430,14 @@ fieldset {
430
430
  justify-content: center;
431
431
  text-transform: uppercase;
432
432
  }
433
- body.theme-highcontrast .s-activity-indicator {
434
- --_ai-bg: var(--theme-secondary-500);
435
- }
436
433
  .s-activity-indicator.s-activity-indicator__danger {
437
434
  --_ai-bg: var(--red-400);
438
435
  }
439
- body.theme-highcontrast .s-activity-indicator.s-activity-indicator__danger {
440
- --_ai-bg: var(--red-500);
441
- }
442
436
  .s-activity-indicator.s-activity-indicator__success {
443
437
  --_ai-bg: var(--green-400);
444
438
  }
445
- body.theme-highcontrast .s-activity-indicator.s-activity-indicator__success {
446
- --_ai-bg: var(--green-500);
447
- }
448
439
  .s-activity-indicator.s-activity-indicator__warning {
449
440
  --_ai-bg: var(--yellow-400);
450
- --_ai-fc: var(--_black-static);
451
- }
452
- body.theme-highcontrast .s-activity-indicator.s-activity-indicator__warning {
453
- --_ai-bg: var(--yellow-500);
454
- --_ai-fc: var(--white);
455
441
  }
456
442
  .s-activity-indicator.s-activity-indicator__sm {
457
443
  --_ai-min-size: calc(var(--su-static8) + var(--su-static2));
@@ -473,7 +459,7 @@ body.theme-highcontrast .s-activity-indicator.s-activity-indicator__warning {
473
459
  --_an-a-fc-visited: var(--red-600);
474
460
  }
475
461
  .s-anchors.s-anchors__default {
476
- --_an-a-fc: var(--theme-link-color, var(--theme-secondary-400));
462
+ --_an-a-fc: var(--theme-link-color, var(--theme-secondary));
477
463
  --_an-a-fc-hover: var(--theme-link-color-hover, var(--theme-secondary-500));
478
464
  --_an-a-fc-visited: var(--theme-link-color-visited, var(--purple-500));
479
465
  --_an-a-fc-hover-visited: var(--theme-link-color-hover, var(--purple-600));
@@ -631,238 +617,219 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
631
617
  position: absolute;
632
618
  transform: translate(-50%, 60%);
633
619
  }
634
- .s-award-bling {
635
- --_ab-before-bg: unset;
636
- align-items: center;
637
- color: inherit;
638
- display: flex;
639
- }
640
- .s-award-bling.s-award-bling__gold {
641
- --_ab-before-bg: var(--gold-300);
642
- }
643
- .s-award-bling.s-award-bling__silver {
644
- --_ab-before-bg: var(--silver-300);
645
- }
646
- .s-award-bling.s-award-bling__bronze {
647
- --_ab-before-bg: var(--bronze-300);
648
- }
649
- .s-award-bling:before {
650
- background-color: var(--_ab-before-bg);
651
- border-radius: 100%;
652
- content: "";
653
- margin-right: var(--su4);
654
- height: var(--su8);
655
- width: var(--su8);
656
- }
657
620
  .s-badge {
658
621
  --_ba-as: unset;
659
- --_ba-bc: var(--bc-medium);
660
- --_ba-bg: var(--black-150);
622
+ --_ba-bc: transparent;
623
+ --_ba-bg: var(--black-100);
661
624
  --_ba-fc: var(--black-500);
662
625
  --_ba-fs: var(--fs-caption);
663
- --_ba-fw: normal;
664
- --_ba-g: 0.3em;
665
- --_ba-lh: 2;
666
626
  --_ba-px: var(--su6);
667
- --_ba-py: 0;
627
+ --_ba-py: var(--su4);
668
628
  --_ba-tt: unset;
669
629
  --_ba-wmn: 0;
630
+ --_ba-bl: 0;
631
+ --_ba-fw: unset;
632
+ --_ba-sq-bg: var(--black-200);
633
+ --_ba-bx-sh-w: var(--su2);
634
+ --_ba-gap: unset;
635
+ --_ba-bx-sh-inset: ;
670
636
  align-self: var(--_ba-as);
671
637
  background-color: var(--_ba-bg);
672
- border: var(--su-static1) solid var(--_ba-bc);
638
+ border-left: var(--_ba-bl) solid var(--_ba-bc);
673
639
  color: var(--_ba-fc);
674
640
  font-size: var(--_ba-fs);
675
- gap: var(--_ba-g);
676
641
  font-weight: var(--_ba-fw);
677
- line-height: var(--_ba-lh);
678
- min-width: var(--_ba-wmn);
642
+ gap: var(--_ba-gap, var(--_ba-px));
679
643
  padding: var(--_ba-py) var(--_ba-px);
644
+ line-height: var(--lh-md);
645
+ min-width: var(--_ba-wmn);
680
646
  text-transform: var(--_ba-tt);
681
647
  align-items: center;
682
- border-radius: var(--br-md);
683
648
  display: inline-flex;
684
649
  justify-content: center;
685
650
  text-decoration: none;
686
651
  vertical-align: middle;
687
652
  white-space: nowrap;
688
653
  }
689
- body.theme-highcontrast .s-badge__gold,
690
- body.theme-highcontrast .s-badge__silver,
691
- body.theme-highcontrast .s-badge__bronze,
692
- body.theme-highcontrast .s-badge__rep,
693
- body.theme-highcontrast .s-badge__rep-down,
694
- body.theme-highcontrast .s-badge__votes:not(.s-badge__answered),
695
- body.theme-highcontrast .s-badge__admin,
696
- body.theme-highcontrast .s-badge__moderator,
697
- body.theme-highcontrast .s-badge__staff {
698
- --_ba-bc: currentColor;
699
- }
700
- body.theme-highcontrast .s-badge__new {
701
- --_ba-fc: var(--purple-600);
702
- }
703
- .s-badge.s-badge__xs,
704
654
  .s-badge.s-badge__sm {
655
+ --_ba-wmn: calc(var(--su-static16) + var(--su-static2));
705
656
  --_ba-as: flex-start;
706
657
  --_ba-fs: var(--fs-fine);
658
+ --_ba-px: var(--su4);
659
+ --_ba-py: var(--su1);
660
+ --_ba-bx-sh-w: 0px;
661
+ --_ba-bx-sh-inset: inset;
707
662
  }
708
- .s-badge.s-badge__xs {
709
- --_ba-lh: 1.5;
710
- --_ba-px: var(--su2);
711
- --_ba-wmn: calc(var(--su-static16) + var(--su-static2));
663
+ .s-badge.s-badge__lg {
664
+ --_ba-fs: var(--fs-body1);
665
+ --_ba-px: var(--su8);
666
+ --_ba-py: calc(var(--su4) + var(--su1));
667
+ --_ba-bx-sh-w: var(--su4);
712
668
  }
713
- .s-badge.s-badge__sm {
714
- --_ba-lh: 1.8;
715
- --_ba-px: var(--su4);
716
- --_ba-wmn: calc(var(--su-static16) + var(--su-static2));
669
+ .s-badge .s-bling__filled {
670
+ margin: calc(var(--_ba-py) * -1) 0 calc(var(--_ba-py) * -1) calc(var(--_ba-px) * -1);
671
+ }
672
+ .s-badge svg {
673
+ margin: calc(var(--_ba-py) * -1) 0 calc(var(--_ba-py) * -1) calc(var(--su4) * -1);
674
+ }
675
+ .s-badge:has(.s-bling__rep) {
676
+ --_ba-fw: 600;
677
+ --_ba-fc: var(--black-600);
678
+ }
679
+ .s-badge:has(.s-bling) {
680
+ --_ba-bg: var(--black-150);
717
681
  }
718
682
  .s-badge.s-badge__gold,
719
683
  .s-badge.s-badge__silver,
720
684
  .s-badge.s-badge__bronze {
721
- --_ba-fc: var(--black-500);
685
+ --_ba-bl: var(--su4);
686
+ }
687
+ .s-badge.s-badge__gold .s-bling__gold,
688
+ .s-badge.s-badge__silver .s-bling__gold,
689
+ .s-badge.s-badge__bronze .s-bling__gold,
690
+ .s-badge.s-badge__gold .s-bling__silver,
691
+ .s-badge.s-badge__silver .s-bling__silver,
692
+ .s-badge.s-badge__bronze .s-bling__silver,
693
+ .s-badge.s-badge__gold .s-bling__bronze,
694
+ .s-badge.s-badge__silver .s-bling__bronze,
695
+ .s-badge.s-badge__bronze .s-bling__bronze {
696
+ margin-left: -2px;
722
697
  }
723
698
  .s-badge.s-badge__gold {
724
- --_ba-bc: var(--gold-300);
725
- --_ba-bg: var(--gold-100);
699
+ --_ba-bc: var(--yellow-300);
726
700
  }
727
701
  .s-badge.s-badge__silver {
728
- --_ba-bc: var(--silver-300);
729
- --_ba-bg: var(--silver-100);
702
+ --_ba-bc: var(--blue-300);
730
703
  }
731
704
  .s-badge.s-badge__bronze {
732
- --_ba-bc: var(--bronze-300);
733
- --_ba-bg: var(--bronze-100);
734
- }
735
- .s-badge.s-badge__answered,
736
- .s-badge.s-badge__bounty,
737
- .s-badge.s-badge__important {
738
- --_ba-bc: transparent;
739
- --_ba-fc: var(--white);
740
- }
741
- .s-badge.s-badge__rep,
742
- .s-badge.s-badge__rep-down,
743
- .s-badge.s-badge__votes:not(.s-badge__answered) {
744
- --_ba-bg: var(--white);
745
- }
746
- .s-badge.s-badge__answered {
747
- --_ba-bg: var(--green-400);
748
- }
749
- .s-badge.s-badge__bounty {
750
- --_ba-bg: var(--blue-400);
751
- }
752
- .s-badge.s-badge__important {
753
- --_ba-bg: var(--red-400);
754
- }
755
- .s-badge.s-badge__rep {
756
- --_ba-bc: var(--green-300);
757
- --_ba-fc: var(--green-400);
758
- }
759
- .s-badge.s-badge__rep-down {
760
- --_ba-bc: var(--red-300);
761
- --_ba-fc: var(--red-400);
762
- }
763
- .s-badge.s-badge__votes:not(.s-badge__answered) {
764
- --_ba-bc: var(--black-250);
765
- --_ba-fc: var(--black-500);
705
+ --_ba-bc: var(--orange-300);
766
706
  }
767
- .s-badge.s-badge__admin {
768
- --_ba-bc: var(--theme-primary-200);
769
- --_ba-bg: var(--theme-primary-100);
770
- --_ba-fc: var(--theme-primary-500);
707
+ .s-badge.s-badge__admin,
708
+ .s-badge.s-badge__moderator,
709
+ .s-badge.s-badge__staff,
710
+ .s-badge.s-badge__ai,
711
+ .s-badge.s-badge__bot {
712
+ --_ba-bl: var(--su4);
713
+ --_ba-bg: var(--black-150);
714
+ --_ba-fc: var(--black-600);
771
715
  }
772
716
  .s-badge.s-badge__moderator {
773
- --_ba-bc: var(--theme-secondary-300);
774
- --_ba-bg: var(--theme-secondary-200);
775
- --_ba-fc: var(--theme-secondary-600);
776
- --_ba-g: calc(var(--su-static4) - var(--su-static1));
777
- --_ba-before-h: calc(var(--su-static16) - var(--su-static2));
778
- --_ba-before-icon: url("data:image/svg+xml;,%3Csvg width='12' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.528.746c.257-.329.675-.327.93 0l4.42 5.66c.258.329.257.864 0 1.192l-4.42 5.66c-.256.328-.674.327-.93 0l-4.42-5.66c-.257-.329-.256-.865 0-1.192l4.42-5.66z' fill='%23fff'/%3E%3C/svg%3E");
779
- --_ba-before-mt: calc(var(--su-static1) * -1);
780
- --_ba-before-w: var(--su-static12);
781
- }
782
- .s-badge.s-badge__moderator.s-badge__xs {
783
- --_ba-before-h: calc(var(--su-static8) + var(--su-static1));
784
- --_ba-before-icon: url("data:image/svg+xml;,%3Csvg width='7' height='9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 .246c.3-.329.701-.327 1 0L6.776 4c.3.329.298.672 0 1L4 8.75c-.299.329-.702.327-1 0L.224 5c-.284-.324-.285-.675 0-1L3 .246z' fill='%23fff'/%3E%3C/svg%3E");
785
- --_ba-before-mt: 0;
786
- --_ba-before-w: calc(var(--su-static8) - var(--su-static1));
717
+ --_ba-bc: var(--blue-500);
718
+ --_ba-before-h: calc(var(--su12) + var(--su1));
719
+ --_ba-before-w: calc(var(--su12) - var(--su1));
720
+ --_ba-before-icon: url("data:image/svg+xml;,%3Csvg width='11' height='13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.528.746c.257-.329.675-.327.93 0l4.42 5.66c.258.329.257.864 0 1.192l-4.42 5.66c-.256.328-.674.327-.93 0l-4.42-5.66c-.257-.329-.256-.865 0-1.192l4.42-5.66z' fill='%23fff'/%3E%3C/svg%3E");
787
721
  }
788
722
  .s-badge.s-badge__moderator.s-badge__sm {
789
- --_ba-g: var(--su-static2);
790
- --_ba-before-h: calc(var(--su-static12) - var(--su-static1));
723
+ --_ba-before-h: calc(var(--su12) - var(--su1));
724
+ --_ba-before-w: calc(var(--su8) + var(--su1));
791
725
  --_ba-before-icon: url("data:image/svg+xml;,%3Csvg width='9' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.55.246c.257-.329.647-.327.903 0l3.36 4.66c.256.329.256.864 0 1.192L4.45 10.75c-.257.329-.644.327-.9 0L.192 6.098c-.256-.329-.256-.865 0-1.192L3.55.246z' fill='%23fff'/%3E%3C/svg%3E");
792
- --_ba-before-mt: 0;
793
- --_ba-before-w: calc(var(--su-static8) + var(--su-static1));
794
726
  }
795
727
  .s-badge.s-badge__moderator:before {
796
728
  height: var(--_ba-before-h);
797
- margin-top: var(--_ba-before-mt);
729
+ margin-top: calc(var(--su1) * -1);
798
730
  width: var(--_ba-before-w);
799
731
  content: "";
800
732
  display: inline-block;
801
- background-color: currentColor;
733
+ background-color: var(--_ba-bc);
802
734
  -webkit-mask: var(--_ba-before-icon) no-repeat center;
803
735
  mask: var(--_ba-before-icon) no-repeat center;
804
736
  -webkit-mask-size: contain;
805
737
  mask-size: contain;
806
738
  }
807
739
  .s-badge.s-badge__staff {
808
- --_ba-bc: var(--orange-300);
809
- --_ba-bg: var(--orange-200);
810
- --_ba-fc: var(--orange-600);
740
+ --_ba-bc: var(--orange-400);
741
+ }
742
+ .s-badge.s-badge__admin {
743
+ --_ba-bc: var(--theme-primary-500, var(--orange-500));
811
744
  }
812
745
  .s-badge.s-badge__ai {
813
- --_ba-bc: var(--_ba-fc);
814
- --_ba-bg: var(--black-050);
815
- --_ba-fc: var(--orange-500);
816
- --_ba-tt: uppercase;
746
+ --_ba-bc: var(--purple-400);
817
747
  }
818
748
  .s-badge.s-badge__bot {
819
- --_ba-bc: var(--black-300);
749
+ --_ba-bc: var(--black-400);
820
750
  }
821
- .s-badge.s-badge__danger.s-badge__filled,
822
- .s-badge.s-badge__muted.s-badge__filled {
823
- --_ba-bc: transparent;
751
+ .s-badge.s-badge__info {
752
+ --_ba-bg: var(--blue-100);
753
+ --_ba-fc: var(--blue-500);
754
+ --_ba-sq-bg: var(--blue-200);
755
+ }
756
+ .s-badge.s-badge__info.s-badge__important {
757
+ --_ba-bg: var(--blue-400);
758
+ --_ba-sq-bg: var(--blue-500);
759
+ }
760
+ .s-badge.s-badge__warning {
761
+ --_ba-bg: var(--yellow-100);
762
+ --_ba-fc: var(--yellow-500);
763
+ --_ba-sq-bg: var(--yellow-200);
764
+ }
765
+ .s-badge.s-badge__warning.s-badge__important {
766
+ --_ba-bg: var(--yellow-400);
767
+ --_ba-sq-bg: var(--yellow-500);
824
768
  }
825
769
  .s-badge.s-badge__danger {
826
- --_ba-bc: var(--red-300);
827
- --_ba-bg: var(--red-200);
828
- --_ba-fc: var(--red-600);
770
+ --_ba-bg: var(--red-100);
771
+ --_ba-fc: var(--red-500);
772
+ --_ba-sq-bg: var(--red-200);
829
773
  }
830
- .s-badge.s-badge__danger.s-badge__filled {
774
+ .s-badge.s-badge__danger.s-badge__important {
831
775
  --_ba-bg: var(--red-400);
832
- --_ba-fc: var(--white);
776
+ --_ba-sq-bg: var(--red-500);
833
777
  }
834
- .s-badge.s-badge__info {
835
- --_ba-bc: var(--blue-300);
836
- --_ba-bg: var(--blue-200);
837
- --_ba-fc: var(--blue-600);
778
+ .s-badge.s-badge__critical {
779
+ --_ba-bg: var(--red-200);
780
+ --_ba-fc: var(--red-600);
781
+ --_ba-sq-bg: var(--red-300);
838
782
  }
839
- .s-badge.s-badge__warning {
840
- --_ba-bc: var(--yellow-300);
841
- --_ba-bg: var(--yellow-200);
842
- --_ba-fc: var(--yellow-600);
783
+ .s-badge.s-badge__critical.s-badge__important {
784
+ --_ba-bg: var(--red-500);
785
+ --_ba-sq-bg: var(--red-600);
843
786
  }
844
- .s-badge.s-badge__muted {
845
- --_ba-bc: var(--black-300);
787
+ .s-badge.s-badge__tonal {
846
788
  --_ba-bg: var(--black-200);
847
- --_ba-fc: var(--black-500);
789
+ --_ba-fc: var(--black-600);
790
+ --_ba-sq-bg: var(--black-300);
848
791
  }
849
- .s-badge.s-badge__muted.s-badge__filled {
792
+ .s-badge.s-badge__tonal.s-badge__important {
850
793
  --_ba-bg: var(--black-500);
851
- --_ba-fc: var(--white);
794
+ --_ba-sq-bg: var(--black-600);
852
795
  }
853
- .s-badge.s-badge__new {
854
- --_ba-bc: var(--_ba-bg);
796
+ .s-badge.s-badge__success {
797
+ --_ba-bg: var(--green-100);
798
+ --_ba-fc: var(--green-600);
799
+ --_ba-sq-bg: var(--green-200);
800
+ }
801
+ .s-badge.s-badge__success.s-badge__important {
802
+ --_ba-bg: var(--green-500);
803
+ --_ba-sq-bg: var(--green-600);
804
+ }
805
+ .s-badge.s-badge__featured {
855
806
  --_ba-bg: var(--purple-100);
856
- --_ba-fc: var(--purple-400);
857
- --_ba-fw: bold;
858
- --_ba-tt: uppercase;
807
+ --_ba-fc: var(--purple-500);
808
+ --_ba-sq-bg: var(--purple-200);
859
809
  }
860
- .s-badge--image,
861
- .s-badge .s-badge--image {
862
- align-self: center;
863
- display: inline-flex;
864
- margin-right: var(--su1);
865
- margin-left: calc((var(--su4) + var(--su1)) * -1);
810
+ .s-badge.s-badge__featured.s-badge__important {
811
+ --_ba-bg: var(--purple-400);
812
+ --_ba-sq-bg: var(--purple-500);
813
+ }
814
+ .s-badge.s-badge__squared {
815
+ --_ba_box-shadow: 0 0 0 var(--_ba-bx-sh-w) var(--_ba-sq-bg);
816
+ }
817
+ .s-badge.s-badge__squared svg {
818
+ background-color: var(--_ba-sq-bg);
819
+ box-shadow: var(--_ba_box-shadow);
820
+ margin-right: var(--_ba-bx-sh-w);
821
+ }
822
+ body.theme-highcontrast .s-badge.s-badge__squared:not(.s-badge__important) {
823
+ --_ba_box-shadow: 0 0 0 calc(var(--_ba-bx-sh-w) - var(--su1)) var(--_ba-sq-bg), 0 0 0 max(var(--su1), var(--_ba-bx-sh-w)) currentcolor var(--_ba-bx-sh-inset);
824
+ }
825
+ .s-badge:not(.s-badge__squared):has(> svg) {
826
+ --_ba-gap: calc(var(--_ba-px) - var(--su2));
827
+ }
828
+ .s-badge.s-badge__important {
829
+ --_ba-bg: var(--black-400);
830
+ --_ba-sq-bg: var(--black-500);
831
+ --_ba-fw: 600;
832
+ --_ba-fc: var(--black-050);
866
833
  }
867
834
  a.s-badge:hover {
868
835
  text-decoration: none;
@@ -1084,6 +1051,139 @@ body.theme-highcontrast .s-banner__warning.s-banner__important {
1084
1051
  position: relative;
1085
1052
  width: 100%;
1086
1053
  }
1054
+ .s-bling {
1055
+ --_bl-bg: unset;
1056
+ --_bl-size: calc(var(--su8) + var(--su2));
1057
+ --_bl-icon: url("data:image/svg+xml;utf8,<svg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'><circle cx='4' cy='4' r='4'/></svg>");
1058
+ --_bl-icon-bg: var(--black-500);
1059
+ --_bl-icon-size: var(--su8);
1060
+ background-color: var(--_bl-bg);
1061
+ height: var(--_bl-size);
1062
+ width: var(--_bl-size);
1063
+ align-items: center;
1064
+ color: inherit;
1065
+ display: inline-flex;
1066
+ justify-content: center;
1067
+ }
1068
+ .s-bling.s-bling__activity {
1069
+ --_bl-icon-bg: var(--pink-400);
1070
+ }
1071
+ .s-bling.s-bling__gold {
1072
+ --_bl-icon-bg: var(--yellow-400);
1073
+ --_bl-icon: url("data:image/svg+xml;,<svg viewBox='0 0 8 9' xmlns='http://www.w3.org/2000/svg'><path d='M3.89709 0L7.79421 2.25V6.75L3.89709 9L-1.95503e-05 6.75V2.25L3.89709 0Z'/></svg>");
1074
+ }
1075
+ .s-bling.s-bling__silver {
1076
+ --_bl-icon-bg: var(--blue-400);
1077
+ --_bl-icon: url("data:image/svg+xml;,<svg viewBox='0 0 9 9' xmlns='http://www.w3.org/2000/svg'><path d='M4.27979 0L8.55954 3.10942L6.92482 8.14058H1.63475L3.09944e-05 3.10942L4.27979 0Z'/></svg>");
1078
+ }
1079
+ .s-bling.s-bling__bronze {
1080
+ --_bl-icon-bg: var(--orange-400);
1081
+ --_bl-icon: url("data:image/svg+xml;,<svg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'><rect width='8' height='8'/></svg>");
1082
+ }
1083
+ .s-bling.s-bling__filled {
1084
+ --_bl-bg: var(--black-225);
1085
+ --_bl-icon-bg: var(--black-600);
1086
+ --_bl-size: var(--su24);
1087
+ }
1088
+ .s-bling.s-bling__filled.s-bling__rep {
1089
+ --_bl-bg: var(--black-300);
1090
+ }
1091
+ @media (prefers-color-scheme: dark) {
1092
+ body.theme-highcontrast.theme-system .s-bling.s-bling__filled.s-bling__rep {
1093
+ --_bl-icon-bg: var(--black-050);
1094
+ }
1095
+ }
1096
+ body.theme-highcontrast.theme-dark .s-bling.s-bling__filled.s-bling__rep {
1097
+ --_bl-icon-bg: var(--black-050);
1098
+ }
1099
+ .s-bling.s-bling__filled.s-bling__activity {
1100
+ --_bl-bg: var(--pink-300);
1101
+ --_bl-icon-bg: var(--pink-600);
1102
+ }
1103
+ body.theme-highcontrast .s-bling.s-bling__filled.s-bling__activity {
1104
+ --_bl-icon-bg: var(--black-050);
1105
+ }
1106
+ @media (prefers-color-scheme: dark) {
1107
+ body.theme-highcontrast.theme-system .s-bling.s-bling__filled.s-bling__activity {
1108
+ --_bl-bg: var(--pink-400);
1109
+ }
1110
+ }
1111
+ body.theme-highcontrast.theme-dark .s-bling.s-bling__filled.s-bling__activity {
1112
+ --_bl-bg: var(--pink-400);
1113
+ }
1114
+ .s-bling.s-bling__filled.s-bling__gold {
1115
+ --_bl-bg: var(--yellow-300);
1116
+ --_bl-icon-bg: var(--yellow-600);
1117
+ }
1118
+ body.theme-highcontrast .s-bling.s-bling__filled.s-bling__gold {
1119
+ --_bl-icon-bg: var(--black-050);
1120
+ }
1121
+ @media (prefers-color-scheme: dark) {
1122
+ body.theme-highcontrast.theme-system .s-bling.s-bling__filled.s-bling__gold {
1123
+ --_bl-bg: var(--yellow-400);
1124
+ }
1125
+ }
1126
+ body.theme-highcontrast.theme-dark .s-bling.s-bling__filled.s-bling__gold {
1127
+ --_bl-bg: var(--yellow-400);
1128
+ }
1129
+ .s-bling.s-bling__filled.s-bling__silver {
1130
+ --_bl-bg: var(--blue-300);
1131
+ --_bl-icon-bg: var(--blue-600);
1132
+ }
1133
+ body.theme-highcontrast .s-bling.s-bling__filled.s-bling__silver {
1134
+ --_bl-icon-bg: var(--black-050);
1135
+ }
1136
+ @media (prefers-color-scheme: dark) {
1137
+ body.theme-highcontrast.theme-system .s-bling.s-bling__filled.s-bling__silver {
1138
+ --_bl-bg: var(--blue-400);
1139
+ }
1140
+ }
1141
+ body.theme-highcontrast.theme-dark .s-bling.s-bling__filled.s-bling__silver {
1142
+ --_bl-bg: var(--blue-400);
1143
+ }
1144
+ .s-bling.s-bling__filled.s-bling__bronze {
1145
+ --_bl-bg: var(--orange-300);
1146
+ --_bl-icon-bg: var(--orange-600);
1147
+ }
1148
+ body.theme-highcontrast .s-bling.s-bling__filled.s-bling__bronze {
1149
+ --_bl-icon-bg: var(--black-050);
1150
+ }
1151
+ @media (prefers-color-scheme: dark) {
1152
+ body.theme-highcontrast.theme-system .s-bling.s-bling__filled.s-bling__bronze {
1153
+ --_bl-bg: var(--orange-400);
1154
+ }
1155
+ }
1156
+ body.theme-highcontrast.theme-dark .s-bling.s-bling__filled.s-bling__bronze {
1157
+ --_bl-bg: var(--orange-400);
1158
+ }
1159
+ .s-bling.s-bling__sm:not(.s-bling__filled) {
1160
+ --_bl-size: var(--su8);
1161
+ }
1162
+ .s-bling.s-bling__sm.s-bling__filled {
1163
+ --_bl-size: var(--su16);
1164
+ }
1165
+ .s-bling.s-bling__lg.s-bling__filled {
1166
+ --_bl-size: calc(var(--su24) + var(--su4));
1167
+ }
1168
+ .s-bling.s-bling__sm {
1169
+ --_bl-icon-size: var(--su6);
1170
+ }
1171
+ .s-bling.s-bling__sm.s-bling__gold,
1172
+ .s-bling.s-bling__sm.s-bling__silver {
1173
+ --_bl-icon-size: calc(var(--su6) + var(--su1));
1174
+ }
1175
+ .s-bling.s-bling__gold:not(.s-bling__sm),
1176
+ .s-bling.s-bling__silver:not(.s-bling__sm) {
1177
+ --_bl-icon-size: calc(var(--su8) + var(--su1));
1178
+ }
1179
+ .s-bling:before {
1180
+ -webkit-mask: var(--_bl-icon) no-repeat center;
1181
+ mask: var(--_bl-icon) no-repeat center;
1182
+ background-color: var(--_bl-icon-bg);
1183
+ content: "";
1184
+ height: var(--_bl-icon-size);
1185
+ width: var(--_bl-icon-size);
1186
+ }
1087
1187
  a.s-block-link,
1088
1188
  .s-block-link {
1089
1189
  --_bl-bs-color: var(--theme-primary);
@@ -1208,136 +1308,141 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
1208
1308
  }
1209
1309
  .s-btn {
1210
1310
  --_bu-baw: var(--su-static1);
1211
- --_bu-bc: transparent;
1212
- --_bu-br: var(--br-md);
1213
- --_bu-fc: var(--theme-button-color, var(--theme-secondary-400));
1311
+ --_bu-br: var(--br-pill);
1214
1312
  --_bu-fs: var(--fs-body1);
1215
- --_bu-p: 0.8em;
1216
- --_bu-bc-active: var(--_bu-bc);
1217
- --_bu-bg-active: var(--theme-button-active-background-color, var(--theme-secondary-300));
1218
- --_bu-fc-active: var(--theme-button-hover-color, var(--theme-secondary-500));
1219
- --_bu-bc-hover: var(--_bu-bc);
1220
- --_bu-bg-hover: var(--theme-button-hover-background-color, var(--theme-secondary-200));
1221
- --_bu-fc-hover: var(--theme-button-hover-color, var(--theme-secondary-500));
1222
- --_bu-bg-selected: var(--theme-button-selected-background-color, var(--theme-secondary-300));
1223
- --_bu-fc-selected: var(--theme-button-selected-color, var(--theme-secondary-600));
1224
- --_bu-filled-bc: transparent;
1225
- --_bu-filled-bg: var(--theme-button-primary-background-color, var(--theme-secondary-400));
1226
- --_bu-filled-fc: var(--theme-button-primary-color, var(--white));
1227
- --_bu-filled-bc-selected: transparent;
1228
- --_bu-filled-bg-selected: var(--theme-button-primary-selected-background-color, var(--theme-secondary-500));
1229
- --_bu-filled-fc-selected: var(--theme-button-primary-selected-color, var(--white));
1230
- --_bu-filled-bc-active: var(--_bu-filled-bc);
1231
- --_bu-filled-bg-active: var(--theme-button-primary-active-background-color, var(--theme-secondary-600));
1232
- --_bu-filled-fc-active: var(--theme-button-primary-hover-color, var(--white));
1233
- --_bu-filled-bc-hover: var(--_bu-filled-bc);
1234
- --_bu-filled-bg-hover: var(--theme-button-primary-hover-background-color, var(--theme-secondary-500));
1235
- --_bu-filled-fc-hover: var(--theme-button-primary-hover-color, var(--white));
1236
- --_bu-outlined-bc: var(--theme-button-outlined-border-color, var(--theme-secondary-400));
1237
- --_bu-outlined-bg: var(--theme-button-outlined-background-color);
1238
- --_bg-outlined-fc: var(--theme-button-outlined-color, var(--theme-secondary-400));
1239
- --_bu-outlined-bc-selected: var(--theme-button-outlined-selected-border-color, var(--theme-secondary-400));
1240
- --_bu-outlined-bg-selected: var(--theme-button-selected-background-color, var(--theme-secondary-300));
1241
- --_bu-outlined-fc-selected: var(--theme-button-selected-color, var(--theme-secondary-600));
1242
- --_bu-badge-o: 0.5;
1313
+ --_bu-lh: var(--lh-base);
1314
+ --_bu-g: var(--su8);
1315
+ --_bu-px: var(--su16);
1316
+ --_bu-py: calc(var(--su8) + var(--su2));
1243
1317
  --_bu-dropdown-bw: var(--su-static4);
1244
- --_bu-number-fc: var(--white);
1245
- --_bu-number-fc-filled: var(--theme-button-primary-number-color, var(--theme-secondary-600));
1246
- --_bu-number-fc-selected: var(--white);
1247
- background-color: var(--_bu-bg, inherit);
1248
- border: var(--_bu-baw) solid var(--_bu-bc);
1249
- border-radius: var(--_bu-br);
1250
- box-shadow: none;
1318
+ background: linear-gradient(0deg, var(--_bu-bg-selected-overlay, var(--_bu-bg)) 50%, var(--_bu-bg) 50%) padding-box, linear-gradient(0deg, var(--_bu-bg-selected-overlay, var(--_bu-bg)) 50%, var(--_bu-bg) 50%) border-box;
1319
+ border: var(--_bu-baw) solid var(--_bu-bc, transparent);
1251
1320
  color: var(--_bu-fc);
1252
1321
  font-size: var(--_bu-fs);
1253
- padding: var(--_bu-py, var(--_bu-p)) var(--_bu-px, var(--_bu-p));
1322
+ gap: var(--_bu-g);
1323
+ padding: var(--_bu-py) var(--_bu-px);
1324
+ align-items: center;
1325
+ align-self: center;
1326
+ border-radius: var(--_bu-br);
1327
+ border-style: solid;
1254
1328
  cursor: pointer;
1255
- display: inline-block;
1329
+ display: inline-flex;
1256
1330
  font-family: inherit;
1257
- font-weight: normal;
1258
- line-height: var(--lh-sm);
1331
+ font-weight: 600;
1332
+ justify-content: center;
1333
+ line-height: var(--_bu-lh);
1259
1334
  position: relative;
1260
- outline: none;
1261
1335
  text-align: center;
1262
1336
  text-decoration: none;
1263
1337
  user-select: none;
1264
1338
  }
1265
- body.theme-highcontrast .s-btn {
1266
- --_bu-bc: currentColor;
1267
- --_bu-outlined-bc: var(--_bu-bc);
1268
- --_bu-fc-selected: var(--white);
1269
- --_bu-outlined-fc-selected: var(--white);
1270
- --_bu-badge-o: 0.8;
1271
- --_bu-number-fc-selected: var(--theme-button-primary-number-color, var(--theme-secondary-600));
1339
+ .s-btn:not(.s-btn__danger):not(.s-btn__featured):not(.s-btn__tonal):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google) {
1340
+ --_bu-bg: var(--theme-button-color, var(--theme-secondary));
1341
+ --_bu-bg-disabled: var(--theme-secondary-300);
1342
+ --_bu-bg-hover: var(--theme-button-hover-background-color, var(--theme-secondary-500));
1343
+ --_bu-fc: var(--white);
1344
+ --_bu-fc-hover: var(--theme-button-hover-color, var(--white));
1345
+ --_bu-badge-bg: var(--theme-secondary-200);
1346
+ --_bu-badge-fc: var(--theme-secondary-600);
1347
+ --_bu-badge-bg-disabled: var(--theme-secondary-200);
1348
+ --_bu-badge-fc-disabled: var(--theme-secondary-300);
1349
+ }
1350
+ .s-btn:not(.s-btn__danger):not(.s-btn__featured):not(.s-btn__tonal):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google).s-btn__clear {
1351
+ --_bu-bg: transparent;
1352
+ --_bu-bg-disabled: var(--_bu-bg);
1353
+ --_bu-bg-hover: var(--theme-secondary-100);
1354
+ --_bu-bg-selected: var(--theme-secondary-100);
1355
+ --_bu-fc: var(--theme-secondary-600);
1356
+ --_bu-fc-disabled: var(--theme-secondary-300);
1357
+ --_bu-fc-hover: var(--_bu-fc);
1358
+ --_bu-badge-bg: var(--theme-secondary-500);
1359
+ --_bu-badge-fc: var(--white);
1360
+ --_bu-badge-bg-disabled: var(--theme-secondary-300);
1361
+ --_bu-badge-fc-disabled: var(--white);
1272
1362
  }
1273
- fieldset[disabled] .s-btn,
1274
- .s-btn[disabled],
1275
- .s-btn[aria-disabled="true"] {
1276
- opacity: var(--_o-disabled-static);
1277
- pointer-events: none;
1278
- text-decoration: none;
1363
+ body.theme-highcontrast .s-btn:not(.s-btn__danger):not(.s-btn__featured):not(.s-btn__tonal):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google).s-btn__clear {
1364
+ --_bu-bc: var(--theme-secondary-600);
1279
1365
  }
1280
- button .s-btn,
1281
- button[type="submit"] .s-btn,
1282
- button[type="reset"] .s-btn {
1283
- -webkit-appearance: button;
1366
+ .s-btn.s-btn__danger {
1367
+ --_bu-bg: var(--red-400);
1368
+ --_bu-fc: var(--white);
1369
+ --_bu-bg-disabled: var(--red-200);
1370
+ --_bu-bg-hover: var(--red-500);
1371
+ --_bu-bg-selected: var(--red-500);
1372
+ --_bu-fc-selected: var(--_bu-fc);
1373
+ --_bu-badge-bg: var(--red-100);
1374
+ --_bu-badge-fc: var(--red-400);
1375
+ --_bu-badge-bg-disabled: var(--white);
1376
+ --_bu-badge-fc-disabled: var(--red-200);
1377
+ }
1378
+ .s-btn.s-btn__danger.s-btn__clear {
1379
+ --_bu-bg: transparent;
1380
+ --_bu-bg-disabled: var(--_bu-bg);
1381
+ --_bu-bg-hover: var(--red-100);
1382
+ --_bu-bg-selected: var(--red-100);
1383
+ --_bu-fc: var(--red-400);
1384
+ --_bu-fc-disabled: var(--red-200);
1385
+ --_bu-fc-hover: var(--red-500);
1386
+ --_bu-fc-selected: var(--red-500);
1387
+ --_bu-badge-bg: var(--red-400);
1388
+ --_bu-badge-bg-selected: var(--red-400);
1389
+ --_bu-badge-fc: var(--red-100);
1390
+ --_bu-badge-bg-disabled: var(--red-200);
1391
+ --_bu-badge-fc-disabled: var(--white);
1284
1392
  }
1285
- .s-btn.grid {
1286
- display: flex;
1393
+ body.theme-highcontrast .s-btn.s-btn__danger.s-btn__clear {
1394
+ --_bu-bc: var(--red-600);
1395
+ --_bu-bc-disabled: var(--red-300);
1287
1396
  }
1288
- .s-btn.is-loading {
1289
- padding-left: 2.2em;
1397
+ .s-btn.s-btn__featured {
1398
+ --_bu-bg: var(--purple-400);
1399
+ --_bu-bg-disabled: var(--purple-200);
1400
+ --_bu-bg-hover: var(--purple-500);
1401
+ --_bu-bg-selected: var(--purple-500);
1402
+ --_bu-fc: var(--white);
1403
+ --_bu-fc-selected: var(--_bu-fc);
1404
+ --_bu-badge-bg: var(--purple-100);
1405
+ --_bu-badge-fc: var(--purple-400);
1406
+ --_bu-badge-bg-disabled: var(--white);
1407
+ --_bu-badge-fc-disabled: var(--purple-200);
1408
+ }
1409
+ .s-btn.s-btn__tonal {
1410
+ --_bu-bg: var(--black-150);
1411
+ --_bu-bg-disabled: var(--black-100);
1412
+ --_bu-bg-hover: var(--black-200);
1413
+ --_bu-fc: var(--black);
1414
+ --_bu-fc-disabled: var(--black-300);
1415
+ --_bu-fc-selected: var(--_bu-fc);
1416
+ --_bu-badge-bg: var(--black-500);
1417
+ --_bu-badge-fc: var(--white);
1418
+ --_bu-badge-bg-disabled: var(--black-300);
1419
+ --_bu-badge-fc-disabled: var(--white);
1420
+ }
1421
+ body.theme-highcontrast .s-btn.s-btn__tonal {
1422
+ --_bu-bc: var(--black-300);
1290
1423
  }
1291
- .s-btn.is-loading .svg-icon:first-child {
1292
- margin-left: calc((var(--su-static24) - var(--su-static1)) * -1);
1293
- opacity: 0;
1424
+ .s-btn.s-btn__facebook {
1425
+ --_bu-bg: #1877F2;
1426
+ --_bu-bg-hover: #0d6ae4;
1427
+ --_bu-fc: #fff;
1428
+ --_bu-fc-hover: var(--_bu-fc);
1294
1429
  }
1295
- .s-btn.is-selected,
1296
- .s-btn--radio:checked + .s-btn {
1297
- background-color: var(--_bu-bg-selected);
1298
- border-color: var(--_bu-bc-selected, transparent);
1299
- color: var(--_bu-fc-selected);
1300
- }
1301
- .s-btn.is-selected .s-btn--number,
1302
- .s-btn--radio:checked + .s-btn .s-btn--number {
1303
- color: var(--_bu-number-fc-selected);
1304
- }
1305
- .s-btn.is-selected.s-btn__filled,
1306
- .s-btn--radio:checked + .s-btn.s-btn__filled {
1307
- border-color: var(--_bu-filled-bc-selected);
1308
- background-color: var(--_bu-filled-bg-selected);
1309
- color: var(--_bu-filled-fc-selected);
1310
- }
1311
- .s-btn.is-selected.s-btn__outlined,
1312
- .s-btn--radio:checked + .s-btn.s-btn__outlined {
1313
- border-color: var(--_bu-outlined-bc-selected);
1314
- background-color: var(--_bu-outlined-bg-selected);
1315
- color: var(--_bu-outlined-fc-selected);
1316
- }
1317
- body.theme-highcontrast .s-btn.is-selected.s-btn__outlined.s-btn__muted,
1318
- body.theme-highcontrast .s-btn--radio:checked + .s-btn.s-btn__outlined.s-btn__muted {
1319
- --_bu-outlined-bc-selected: var(--_bu-filled-bc-selected);
1320
- --_bu-outlined-bg-selected: var(--_bu-filled-bg-selected);
1321
- --_bu-outlined-fc-selected: var(--_bu-filled-fc-selected);
1322
- --_bu-number-fc-selected: var(--_bu-filled-bg-selected);
1323
- }
1324
- .s-btn.s-btn__filled {
1325
- border-color: var(--_bu-filled-bc);
1326
- background-color: var(--_bu-filled-bg);
1327
- color: var(--_bu-filled-fc);
1328
- }
1329
- .s-btn.s-btn__filled .s-btn--number {
1330
- color: var(--_bu-number-fc-filled);
1331
- }
1332
- .s-btn.s-btn__outlined {
1333
- border-color: var(--_bu-outlined-bc);
1334
- background-color: var(--_bu-outlined-bg, inherit);
1430
+ .s-btn.s-btn__google {
1431
+ --_bu-bg: var(--black-150);
1432
+ --_bu-bg-hover: var(--black-200);
1433
+ --_bu-fc: var(--black-600);
1434
+ }
1435
+ .s-btn.s-btn__github {
1436
+ --_bu-bg: var(--black-600);
1437
+ --_bu-bg-hover: var(--black-500);
1438
+ --_bu-fc: var(--white);
1335
1439
  }
1336
1440
  .s-btn.s-btn__link,
1337
1441
  .s-btn.s-btn__unset {
1338
1442
  --_bu-baw: 0;
1339
1443
  --_bu-br: 0;
1340
- --_bu-p: 0;
1444
+ --_bu-px: 0;
1445
+ --_bu-py: 0;
1341
1446
  }
1342
1447
  .s-btn.s-btn__link:focus,
1343
1448
  .s-btn.s-btn__unset:focus,
@@ -1346,7 +1451,7 @@ body.theme-highcontrast .s-btn--radio:checked + .s-btn.s-btn__outlined.s-btn__mu
1346
1451
  outline-style: auto;
1347
1452
  }
1348
1453
  .s-btn.s-btn__link {
1349
- --_li-fc: var(--theme-link-color, var(--theme-secondary-400));
1454
+ --_li-fc: var(--theme-link-color, var(--theme-secondary));
1350
1455
  --_li-fc-hover: var(--theme-link-color-hover, var(--theme-secondary-500));
1351
1456
  --_li-fc-visited: var(--theme-link-color-visited, var(--purple-500));
1352
1457
  --_li-fc-hover-visited: var(--theme-link-color-visited, var(--purple-600));
@@ -1462,188 +1567,70 @@ p .s-btn.s-btn__link {
1462
1567
  .s-btn.s-btn__unset:hover,
1463
1568
  .s-btn.s-btn__unset:active,
1464
1569
  .s-btn.s-btn__unset:focus {
1570
+ --_bu-baw: 0;
1465
1571
  --_bu-bg: none;
1572
+ --_bu-br: unset;
1466
1573
  --_bu-fc: unset;
1574
+ --_bu-fs: inherit;
1575
+ --_bu-g: unset;
1576
+ --_bu-lh: inherit;
1467
1577
  cursor: default;
1468
1578
  font: unset;
1469
1579
  user-select: auto;
1470
1580
  }
1471
- .s-btn.s-btn__dropdown {
1472
- padding-right: calc(var(--_bu-px, var(--_bu-p)) * 2.5);
1473
- }
1474
1581
  .s-btn.s-btn__dropdown:after {
1475
1582
  border-color: currentColor transparent;
1476
1583
  border-style: solid;
1477
1584
  border-width: var(--_bu-dropdown-bw);
1478
1585
  border-bottom-width: 0;
1479
1586
  content: "";
1480
- pointer-events: none;
1481
- position: absolute;
1482
- right: var(--_bu-px, var(--_bu-p));
1483
- top: calc(50% - var(--su-static2));
1484
- z-index: var(--zi-active);
1485
- }
1486
- .s-btn.s-btn__icon .svg-icon {
1487
- vertical-align: baseline;
1488
- margin-top: -0.3em;
1489
- margin-bottom: -0.3em;
1490
- transition: opacity 200ms var(--te-smooth);
1491
- }
1492
- .s-btn.s-btn__xs {
1493
- --_bu-fs: var(--fs-fine);
1494
- --_bu-dropdown-bw: calc(var(--su-static4) - var(--su-static1));
1495
- --_bu-p: 0.6em;
1496
- }
1497
- .s-btn.s-btn__sm {
1498
- --_bu-fs: var(--fs-caption);
1499
- }
1500
- .s-btn.s-btn__md {
1501
- --_bu-fs: var(--fs-body3);
1502
- --_bu-br: calc(var(--br-md) + var(--su-static1));
1503
- --_bu-p: 0.7em;
1504
- }
1505
- body.theme-highcontrast .s-btn.s-btn__danger,
1506
- body.theme-highcontrast .s-btn.s-btn__featured,
1507
- body.theme-highcontrast .s-btn.s-btn__muted {
1508
- --_bu-filled-bc: transparent;
1509
- }
1510
- .s-btn.s-btn__danger {
1511
- --_bu-bg-active: var(--red-300);
1512
- --_bu-bg-hover: var(--red-200);
1513
- --_bu-bg-selected: var(--red-300);
1514
- --_bu-fc: var(--red-500);
1515
- --_bu-fc-active: var(--_bu-fc);
1516
- --_bu-fc-hover: var(--red-500);
1517
- --_bu-fc-selected: var(--red-600);
1518
- --_bu-filled-bc: transparent;
1519
- --_bu-filled-bc-selected: var(--_bu-filled-bc);
1520
- --_bu-filled-bg: var(--red-400);
1521
- --_bu-filled-bg-active: var(--red-500);
1522
- --_bu-filled-bg-hover: var(--red-500);
1523
- --_bu-filled-bg-selected: var(--red-600);
1524
- --_bu-filled-fc: var(--white);
1525
- --_bu-filled-fc-active: var(--_bu-filled-fc);
1526
- --_bu-filled-fc-hover: var(--_bu-filled-fc);
1527
- --_bu-filled-fc-selected: var(--_bu-filled-fc);
1528
- --_bu-outlined-bc: var(--red-400);
1529
- --_bu-outlined-bc-selected: var(--red-500);
1530
- --_bu-outlined-bg-selected: var(--_bu-bg-selected);
1531
- --_bu-outlined-fc-selected: var(--_bu-fc-selected);
1532
- --_bu-number-fc: var(--white);
1533
- --_bu-number-fc-filled: var(--black);
1534
1587
  }
1535
- .s-btn.s-btn__featured {
1536
- --_bu-bg-active: var(--purple-300);
1537
- --_bu-bg-hover: var(--purple-200);
1538
- --_bu-bg-selected: var(--purple-300);
1539
- --_bu-fc: var(--purple-500);
1540
- --_bu-fc-active: var(--_bu-fc);
1541
- --_bu-fc-hover: var(--purple-500);
1542
- --_bu-fc-selected: var(--purple-600);
1543
- --_bu-filled-bc: transparent;
1544
- --_bu-filled-bc-selected: var(--_bu-filled-bc);
1545
- --_bu-filled-bg: var(--purple-400);
1546
- --_bu-filled-bg-active: var(--purple-500);
1547
- --_bu-filled-bg-hover: var(--purple-500);
1548
- --_bu-filled-bg-selected: var(--purple-600);
1549
- --_bu-filled-fc: var(--white);
1550
- --_bu-filled-fc-active: var(--_bu-filled-fc);
1551
- --_bu-filled-fc-hover: var(--_bu-filled-fc);
1552
- --_bu-filled-fc-selected: var(--_bu-filled-fc);
1553
- --_bu-outlined-bc: var(--purple-400);
1554
- --_bu-outlined-bc-selected: var(--purple-500);
1555
- --_bu-outlined-bg-selected: var(--_bu-bg-selected);
1556
- --_bu-outlined-fc-selected: var(--_bu-fc-selected);
1557
- --_bu-number-fc: var(--white);
1558
- --_bu-number-fc-filled: var(--black);
1559
- }
1560
- .s-btn.s-btn__muted {
1561
- --_bu-bc-hover: var(--black-300);
1562
- --_bu-bg-active: var(--black-150);
1563
- --_bu-bg-hover: var(--black-100);
1564
- --_bu-bg-selected: var(--black-200);
1565
- --_bu-fc: var(--black-500);
1566
- --_bu-fc-active: var(--_bu-fc);
1567
- --_bu-fc-hover: var(--black-500);
1568
- --_bu-fc-selected: var(--black-500);
1569
- --_bu-filled-bc: transparent;
1570
- --_bu-filled-bc-selected: var(--_bu-filled-bc);
1571
- --_bu-filled-bg: var(--black-225);
1572
- --_bu-filled-bg-active: var(--black-300);
1573
- --_bu-filled-bg-hover: var(--black-250);
1574
- --_bu-filled-bg-selected: var(--black-350);
1575
- --_bu-filled-fc: var(--black-500);
1576
- --_bu-filled-fc-active: var(--_bu-filled-fc);
1577
- --_bu-filled-fc-hover: var(--_bu-filled-fc);
1578
- --_bu-filled-fc-selected: var(--black-600);
1579
- --_bu-outlined-bc: var(--black-300);
1580
- --_bu-outlined-bc-selected: var(--black-300);
1581
- --_bu-outlined-bg-selected: var(--_bu-bg-selected);
1582
- --_bu-outlined-fc-selected: var(--_bu-fc-selected);
1583
- --_bu-number-fc-filled: var(--white);
1584
- --_bu-number-fc-selected: var(--white);
1585
- --_bu-bg-focus: var(--black-400);
1586
- --_bu-fc-focus: var(--white);
1587
- --_bu-number-fc-focus: var(--black-500);
1588
- }
1589
- body.theme-highcontrast .s-btn.s-btn__muted {
1590
- --_bu-bc-hover: currentColor;
1591
- --_bu-bg-hover: var(--black-225);
1592
- --_bu-filled-bg: var(--black-400);
1593
- --_bu-filled-bg-active: var(--black-500);
1594
- --_bu-filled-bg-hover: var(--black-400);
1595
- --_bu-filled-bg-selected: var(--black-500);
1596
- --_bu-filled-fc: var(--white);
1597
- --_bu-filled-fc-selected: var(--_bu-filled-fc);
1598
- --_bu-bc-selected: currentColor;
1599
- --_bu-fc-selected: var(--black);
1600
- --_bu-number-fc: var(--white);
1601
- --_bu-number-fc-filled: var(--black);
1602
- --_bu-number-fc-selected: var(--white);
1603
- }
1604
- body.theme-highcontrast .s-btn.s-btn__facebook,
1605
- body.theme-highcontrast .s-btn.s-btn__github {
1606
- --_bu-bc: transparent;
1607
- }
1608
- .s-btn.s-btn__facebook {
1609
- --_bu-bc: transparent;
1610
- --_bu-bg: #385499;
1611
- --_bu-bg-active: #2a4074;
1612
- --_bu-bg-hover: #314a86;
1613
- --_bu-fc: #fff;
1614
- --_bu-fc-active: var(--_bu-fc);
1615
- --_bu-fc-hover: var(--_bu-fc);
1616
- --_bu-hc-bc: transparent;
1617
- }
1618
- .s-btn.s-btn__google {
1619
- --_bu-bc: var(--bc-medium);
1620
- --_bu-bg: var(--white);
1621
- --_bu-bg-active: var(--black-150);
1622
- --_bu-bg-hover: var(--black-100);
1623
- --_bu-fc: var(--fc-medium);
1624
- --_bu-fc-active: var(--fc-dark);
1625
- --_bu-fc-hover: var(--black-600);
1588
+ .s-btn.is-selected,
1589
+ .s-btn--radio:checked + .s-btn {
1590
+ --_bu-bg-selected-overlay-o: 20%;
1591
+ --_bu-bg-selected-overlay: color-mix(in srgb, var(--_bu-bg-selected, var(--_bu-bg)), var(--white) var(--_bu-bg-selected-overlay-o));
1592
+ --_bu-bg-gradient-top: var(--_bu-bg-selected, var(--_bu-bg));
1593
+ --_bu-bg-gradient-bottom: var(--_bu-bg-selected-overlay, var(--_bu-bg));
1594
+ background: linear-gradient(0deg, var(--_bu-bg-gradient-top) 50%, var(--_bu-bg-gradient-bottom) 50%) padding-box, linear-gradient(0deg, var(--_bu-bg-gradient-top) 50%, var(--_bu-bg-gradient-bottom) 50%) border-box;
1595
+ color: var(--_bu-fc-selected, var(--_bu-fc));
1626
1596
  }
1627
- .s-btn.s-btn__github {
1628
- --_bu-bg: var(--black-600);
1629
- --_bu-bg-active: var(--black);
1630
- --_bu-bg-hover: var(--black-600);
1631
- --_bu-fc: var(--white);
1632
- --_bu-fc-active: var(--white);
1633
- --_bu-fc-hover: var(--white);
1634
- --_bu-hc-bc: transparent;
1597
+ @media (prefers-color-scheme: dark) {
1598
+ body.theme-system .s-btn.is-selected,
1599
+ body.theme-system .s-btn--radio:checked + .s-btn {
1600
+ --_bu-bg-selected-overlay-o: 13%;
1601
+ --_bu-bg-gradient-top: var(--_bu-bg-selected-overlay, var(--_bu-bg));
1602
+ --_bu-bg-gradient-bottom: var(--_bu-bg-selected, var(--_bu-bg));
1603
+ }
1604
+ }
1605
+ body.theme-dark .s-btn.is-selected,
1606
+ body.theme-dark .s-btn--radio:checked + .s-btn,
1607
+ .theme-dark__forced .s-btn.is-selected,
1608
+ .theme-dark__forced .s-btn--radio:checked + .s-btn,
1609
+ body.theme-system .theme-dark__forced .s-btn.is-selected,
1610
+ body.theme-system .theme-dark__forced .s-btn--radio:checked + .s-btn {
1611
+ --_bu-bg-selected-overlay-o: 13%;
1612
+ --_bu-bg-gradient-top: var(--_bu-bg-selected-overlay, var(--_bu-bg));
1613
+ --_bu-bg-gradient-bottom: var(--_bu-bg-selected, var(--_bu-bg));
1614
+ }
1615
+ .s-btn.is-selected .s-btn--badge,
1616
+ .s-btn--radio:checked + .s-btn .s-btn--badge {
1617
+ background-color: var(--_bu-badge-bg);
1618
+ }
1619
+ .s-btn.is-selected .s-btn--badge .s-btn--number,
1620
+ .s-btn--radio:checked + .s-btn .s-btn--badge .s-btn--number {
1621
+ color: var(--_bu-badge-fc, var(--_bu-fc));
1635
1622
  }
1636
1623
  .s-btn .s-btn--badge {
1637
- opacity: var(--_bu-badge-o);
1624
+ background-color: var(--_bu-badge-bg);
1625
+ border-radius: var(--br-pill);
1638
1626
  display: inline-block;
1639
- border-radius: var(--br-md);
1640
- padding: var(--su2) calc(var(--su4) - var(--su1));
1641
1627
  font-size: var(--fs-caption);
1642
- line-height: var(--lh-xs);
1643
- background-color: currentColor;
1628
+ line-height: inherit;
1629
+ opacity: var(--_bu-badge-o);
1630
+ padding: var(--su1) var(--su4) 0;
1644
1631
  }
1645
1632
  .s-btn .s-btn--number {
1646
- color: var(--_bu-number-fc);
1633
+ color: var(--_bu-badge-fc, var(--_bu-fc));
1647
1634
  }
1648
1635
  .s-btn--radio {
1649
1636
  border: 0;
@@ -1657,52 +1644,66 @@ body.theme-highcontrast .s-btn.s-btn__github {
1657
1644
  position: absolute;
1658
1645
  width: var(--su-static1);
1659
1646
  }
1660
- .s-btn:not(.s-btn__link):not(.s-btn__unset):focus-visible,
1661
- .s-btn--radio:focus-visible + .s-btn {
1662
- border-color: var(--focus-theme) !important;
1663
- box-shadow: inset 0 0 0 var(--su-static1) var(--focus-theme), inset 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-neutral);
1664
- outline: var(--su-static2) solid transparent !important;
1665
- }
1666
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):focus-visible,
1667
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected).focus-inset-bordered {
1668
- background-color: var(--_bu-bg-focus, var(--_bu-filled-bg));
1669
- color: var(--_bu-fc-focus, var(--_bu-filled-fc));
1670
- }
1671
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):focus-visible:not(:hover) .s-btn--number,
1672
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected).focus-inset-bordered:not(:hover) .s-btn--number {
1673
- color: var(--_bu-number-fc-focus, var(--_bu-number-fc-filled));
1647
+ .s-btn.s-btn__xs,
1648
+ .s-btn.s-btn__sm {
1649
+ --_bu-lh: var(--lh-sm);
1650
+ --_bu-px: var(--su12);
1674
1651
  }
1675
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):hover {
1676
- background-color: var(--_bu-bg-hover);
1677
- color: var(--_bu-fc-hover);
1652
+ .s-btn.s-btn__xs {
1653
+ --_bu-g: var(--su4);
1654
+ --_bu-fs: var(--fs-fine);
1655
+ --_bu-py: var(--su6);
1678
1656
  }
1679
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):hover.s-btn__filled {
1680
- background-color: var(--_bu-filled-bg-hover);
1681
- border-color: var(--_bu-filled-bc-hover);
1682
- color: var(--_bu-filled-fc-hover);
1657
+ .s-btn.s-btn__sm {
1658
+ --_bu-g: var(--su6);
1659
+ --_bu-fs: var(--fs-caption);
1660
+ --_bu-py: var(--su8);
1683
1661
  }
1684
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):hover:not(.s-btn__outlined):not(.s-btn__filled) {
1685
- border-color: var(--_bu-bc-hover);
1662
+ .s-btn.s-btn__lg {
1663
+ --_bu-fs: var(--fs-body2);
1664
+ --_bu-px: var(--su24);
1665
+ --_bu-py: calc(var(--su12) + var(--su1));
1686
1666
  }
1687
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):hover:visited:not(:active):not(:focus):not(.s-btn__outlined) {
1688
- background-color: var(--_bu-bg);
1689
- border-color: var(--_bu-bc);
1690
- color: var(--_bu-fc);
1667
+ .s-btn:not(.s-btn__link):not(.s-btn__unset):focus-visible,
1668
+ .s-btn--radio:focus-visible + .s-btn {
1669
+ border-color: var(--focus-neutral) !important;
1670
+ box-shadow: 0 0 0 var(--su-static1) var(--focus-neutral), 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-theme);
1671
+ outline: var(--su-static2) solid transparent !important;
1691
1672
  }
1692
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):hover:visited:not(:active):not(:focus):not(.s-btn__outlined).s-btn__filled {
1693
- background-color: var(--_bu-filled-bg-hover);
1694
- border-color: var(--_bu-filled-bc-hover);
1695
- color: var(--_bu-filled-fc-hover);
1673
+ .s-btn:not(.is-selected):hover {
1674
+ background: linear-gradient(0deg, var(--_bu-bg-selected-overlay, var(--_bu-bg-hover, var(--_bu-bg))) 50%, var(--_bu-bg-hover, var(--_bu-bg-selected, var(--_bu-bg))) 50%) padding-box, linear-gradient(0deg, var(--_bu-bg-selected-overlay, var(--_bu-bg-hover, var(--_bu-bg))) 50%, var(--_bu-bg-hover, var(--_bu-bg-selected, var(--_bu-bg))) 50%) border-box;
1675
+ color: var(--_bu-fc-hover, var(--_bu-fc));
1696
1676
  }
1697
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):active {
1698
- background-color: var(--_bu-bg-active);
1699
- border-color: var(--_bu-bc-active);
1700
- color: var(--_bu-fc-active);
1677
+ fieldset[disabled] .s-btn,
1678
+ .s-btn[disabled],
1679
+ .s-btn[aria-disabled="true"] {
1680
+ cursor: auto;
1701
1681
  }
1702
- .s-btn:not(.s-btn--radio:checked + label):not(.s-btn__link):not(.s-btn__unset):not(.s-btn__facebook):not(.s-btn__github):not(.s-btn__google):not(.is-selected):active.s-btn__filled {
1703
- background-color: var(--_bu-filled-bg-active);
1704
- border-color: var(--_bu-filled-bc-active);
1705
- color: var(--_bu-filled-fc-active);
1682
+ fieldset[disabled] .s-btn,
1683
+ .s-btn[disabled],
1684
+ .s-btn[aria-disabled="true"],
1685
+ fieldset[disabled] .s-btn:hover,
1686
+ .s-btn[disabled]:hover,
1687
+ .s-btn[aria-disabled="true"]:hover {
1688
+ background: var(--_bu-bg-disabled, var(--theme-secondary-400));
1689
+ border-color: var(--_bu-bc-disabled, var(--_bu-bc, transparent));
1690
+ color: var(--_bu-fc-disabled, var(--_bu-fc));
1691
+ }
1692
+ fieldset[disabled] .s-btn .s-btn--badge,
1693
+ .s-btn[disabled] .s-btn--badge,
1694
+ .s-btn[aria-disabled="true"] .s-btn--badge,
1695
+ fieldset[disabled] .s-btn:hover .s-btn--badge,
1696
+ .s-btn[disabled]:hover .s-btn--badge,
1697
+ .s-btn[aria-disabled="true"]:hover .s-btn--badge {
1698
+ background-color: var(--_bu-badge-bg-disabled);
1699
+ }
1700
+ fieldset[disabled] .s-btn .s-btn--badge .s-btn--number,
1701
+ .s-btn[disabled] .s-btn--badge .s-btn--number,
1702
+ .s-btn[aria-disabled="true"] .s-btn--badge .s-btn--number,
1703
+ fieldset[disabled] .s-btn:hover .s-btn--badge .s-btn--number,
1704
+ .s-btn[disabled]:hover .s-btn--badge .s-btn--number,
1705
+ .s-btn[aria-disabled="true"]:hover .s-btn--badge .s-btn--number {
1706
+ color: var(--_bu-badge-fc-disabled);
1706
1707
  }
1707
1708
  .s-btn-group {
1708
1709
  border: var(--su-static1) solid var(--black-300);
@@ -1868,33 +1869,33 @@ input.s-radio {
1868
1869
  }
1869
1870
  @media (prefers-color-scheme: dark) {
1870
1871
  body.theme-system .s-checkbox:checked {
1871
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E");
1872
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23141414'/%3E%3C/svg%3E");
1872
1873
  }
1873
1874
  body.theme-system .s-checkbox:indeterminate {
1874
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E");
1875
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23141414'/%3E%3C/svg%3E");
1875
1876
  }
1876
1877
  }
1877
1878
  body.theme-dark .s-checkbox:checked,
1878
1879
  .theme-dark__forced .s-checkbox:checked,
1879
1880
  body.theme-system .theme-dark__forced .s-checkbox:checked {
1880
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E");
1881
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23141414'/%3E%3C/svg%3E");
1881
1882
  }
1882
1883
  body.theme-dark .s-checkbox:indeterminate,
1883
1884
  .theme-dark__forced .s-checkbox:indeterminate,
1884
1885
  body.theme-system .theme-dark__forced .s-checkbox:indeterminate {
1885
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='hsl(210, 3.0000000000000027%, 15%)'/%3E%3C/svg%3E");
1886
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23141414'/%3E%3C/svg%3E");
1886
1887
  }
1887
1888
  @media (prefers-color-scheme: dark) {
1888
1889
  body.theme-highcontrast.theme-system .s-checkbox:checked,
1889
1890
  body.theme-highcontrast.theme-system .s-checkbox:indeterminate {
1890
- --_ch-bc: var(--blue-500) !important;
1891
- --_ch-bg: var(--blue-400);
1891
+ --_ch-bc: var(--black) !important;
1892
+ --_ch-bg: var(--black);
1892
1893
  }
1893
1894
  }
1894
1895
  body.theme-highcontrast.theme-dark .s-checkbox:checked,
1895
1896
  body.theme-highcontrast.theme-dark .s-checkbox:indeterminate {
1896
- --_ch-bc: var(--blue-500) !important;
1897
- --_ch-bg: var(--blue-400);
1897
+ --_ch-bc: var(--black) !important;
1898
+ --_ch-bg: var(--black);
1898
1899
  }
1899
1900
  @media (forced-colors: active) {
1900
1901
  .s-checkbox:checked,
@@ -1904,31 +1905,31 @@ body.theme-highcontrast.theme-dark .s-checkbox:indeterminate {
1904
1905
  }
1905
1906
  .s-checkbox:checked,
1906
1907
  .s-checkbox:indeterminate {
1907
- --_ch-bc: var(--theme-secondary-400) !important;
1908
- --_ch-bg: var(--theme-secondary-400);
1908
+ --_ch-bc: var(--theme-secondary) !important;
1909
+ --_ch-bg: var(--theme-secondary);
1909
1910
  }
1910
1911
  .s-checkbox:checked {
1911
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='hsl(0, 0%, 100%)'/%3E%3C/svg%3E");
1912
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23ffffff'/%3E%3C/svg%3E");
1912
1913
  }
1913
1914
  .s-checkbox:indeterminate {
1914
- --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='hsl(0, 0%, 100%)'/%3E%3C/svg%3E");
1915
+ --_ch-bg-image: url("data:image/svg+xml;,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23ffffff'/%3E%3C/svg%3E");
1915
1916
  }
1916
1917
  .s-radio {
1917
1918
  border-radius: var(--br-circle);
1918
1919
  }
1919
1920
  @media (prefers-color-scheme: dark) {
1920
1921
  body.theme-highcontrast.theme-system .s-radio:checked {
1921
- --_ch-bc: var(--blue-400);
1922
+ --_ch-bc: var(--black);
1922
1923
  outline: var(--su-static1) solid var(--black);
1923
1924
  }
1924
1925
  }
1925
1926
  body.theme-highcontrast.theme-dark .s-radio:checked {
1926
- --_ch-bc: var(--blue-400);
1927
+ --_ch-bc: var(--black);
1927
1928
  outline: var(--su-static1) solid var(--black);
1928
1929
  }
1929
1930
  .s-radio:checked {
1930
1931
  --_ch-baw: 0.30769231em;
1931
- --_ch-bc: var(--theme-secondary-400);
1932
+ --_ch-bc: var(--theme-secondary);
1932
1933
  --_ch-bg: var(--white);
1933
1934
  }
1934
1935
  .has-error .s-checkbox,
@@ -2210,43 +2211,35 @@ pre.s-code-block::-webkit-scrollbar-corner {
2210
2211
  transition: var(--_ex-content-transition);
2211
2212
  }
2212
2213
  .s-input,
2213
- .s-textarea {
2214
- --_in-bc: var(--bc-darker);
2214
+ .s-textarea,
2215
+ :has(> .s-textarea) {
2216
+ --_in-bc: var(--black-300);
2215
2217
  --_in-bg: var(--white);
2216
2218
  --_in-br: var(--br-md);
2219
+ --_in-bw: var(--su-static1);
2217
2220
  --_in-c: unset;
2218
- --_in-fc: var(--fc-dark);
2221
+ --_in-fc: var(--black-600);
2219
2222
  --_in-fs: var(--fs-body1);
2220
- --_in-o: unset;
2221
- --_in-px: 0.7em;
2222
- --_in-py: 0.6em;
2223
+ --_in-lh: var(--lh-base);
2224
+ --_in-px: calc(var(--su12) - var(--su1));
2225
+ --_in-py: var(--su8);
2223
2226
  --_in-placeholder-fc: var(--black-300);
2227
+ }
2228
+ .s-input,
2229
+ .s-textarea {
2224
2230
  scrollbar-color: var(--scrollbar) transparent;
2225
2231
  background-color: var(--_in-bg);
2226
- border: var(--su-static1) solid var(--_in-bc);
2227
- border-radius: var(--_in-br);
2232
+ border: var(--_in-bw) solid var(--_in-bc);
2228
2233
  color: var(--_in-fc);
2229
2234
  cursor: var(--_in-c);
2230
2235
  font-size: var(--_in-fs);
2231
- opacity: var(--_in-o);
2236
+ line-height: var(--_in-lh);
2232
2237
  padding: var(--_in-py) var(--_in-px) var(--_in-py) var(--_in-pl, var(--_in-px));
2233
- -webkit-appearance: none;
2238
+ border-radius: var(--br-md);
2234
2239
  font-family: inherit;
2235
2240
  margin: 0;
2236
2241
  width: 100%;
2237
2242
  }
2238
- @supports (-webkit-overflow-scrolling: touch) {
2239
- .s-input,
2240
- .s-textarea {
2241
- --_in-fs: var(--su-static16);
2242
- --_in-px: 0.55em;
2243
- --_in-py: 0.36em;
2244
- }
2245
- .s-input::-webkit-input-placeholder,
2246
- .s-textarea::-webkit-input-placeholder {
2247
- line-height: normal !important;
2248
- }
2249
- }
2250
2243
  body.theme-highcontrast .s-input,
2251
2244
  body.theme-highcontrast .s-textarea {
2252
2245
  --_in-bc: var(--black);
@@ -2257,14 +2250,13 @@ fieldset[disabled] .s-textarea,
2257
2250
  .s-input[disabled],
2258
2251
  .s-textarea[disabled] {
2259
2252
  --_in-c: not-allowed;
2260
- --_in-o: var(--_o-disabled-static);
2261
2253
  }
2262
2254
  .s-input[readonly],
2263
2255
  .s-textarea[readonly],
2264
2256
  .is-readonly .s-input,
2265
2257
  .is-readonly .s-textarea {
2266
2258
  --_in-bg: var(--black-150);
2267
- --_in-bc: var(--bc-light);
2259
+ --_in-bc: var(--black-200);
2268
2260
  --_in-c: default;
2269
2261
  --_in-fc: var(--black-400);
2270
2262
  }
@@ -2272,7 +2264,7 @@ body.theme-highcontrast .s-input[readonly],
2272
2264
  body.theme-highcontrast .s-textarea[readonly],
2273
2265
  body.theme-highcontrast .is-readonly .s-input,
2274
2266
  body.theme-highcontrast .is-readonly .s-textarea {
2275
- --_in-fc: var(--fc-medium);
2267
+ --_in-fc: var(--black-500);
2276
2268
  }
2277
2269
  .has-error .s-input,
2278
2270
  .has-error .s-textarea,
@@ -2311,65 +2303,21 @@ body.theme-highcontrast .has-warning .s-textarea {
2311
2303
  .s-textarea.s-input__sm,
2312
2304
  .s-textarea.s-textarea__sm {
2313
2305
  --_in-fs: var(--fs-caption);
2314
- }
2315
- .s-input.s-input__md,
2316
- .s-input.s-textarea__md,
2317
- .s-textarea.s-input__md,
2318
- .s-textarea.s-textarea__md {
2319
- --_in-fs: var(--fs-body3);
2320
- --_in-br: calc(var(--br-md) + var(--su-static1));
2321
- }
2322
- @supports (-webkit-overflow-scrolling: touch) {
2323
- .s-input.s-input__md,
2324
- .s-input.s-textarea__md,
2325
- .s-textarea.s-input__md,
2326
- .s-textarea.s-textarea__md {
2327
- --_in-fs: calc(var(--su-static16) + var(--su-static1));
2328
- --_in-py: 0.4em;
2329
- }
2306
+ --_in-lh: var(--lh-sm);
2307
+ --_in-px: calc(var(--su12) - var(--su2));
2308
+ --_in-py: calc(var(--su4) + var(--su1));
2330
2309
  }
2331
2310
  .s-input.s-input__lg,
2332
2311
  .s-input.s-textarea__lg,
2333
2312
  .s-textarea.s-input__lg,
2334
2313
  .s-textarea.s-textarea__lg {
2335
- --_in-fs: var(--fs-title);
2336
- --_in-br: calc(var(--br-md) + var(--su-static1));
2337
- --_in-px: 0.6em;
2338
- --_in-py: 0.45em;
2339
- }
2340
- .s-input.s-input__xl,
2341
- .s-input.s-textarea__xl,
2342
- .s-textarea.s-input__xl,
2343
- .s-textarea.s-textarea__xl {
2344
- --_in-fs: var(--fs-headline1);
2345
- --_in-br: var(--br-md);
2346
- --_in-px: 0.5em;
2347
- --_in-py: 0.4em;
2348
- }
2349
- .s-input:-webkit-autofill,
2350
- .s-textarea:-webkit-autofill {
2351
- -webkit-box-shadow: 0 0 0 1000px var(--theme-secondary-200) inset;
2352
- -webkit-text-fill-color: var(--black);
2353
- border-color: var(--blue-400);
2354
- transition: background-color 0s 50000s;
2355
- }
2356
- .s-input:-webkit-autofill:focus,
2357
- .s-textarea:-webkit-autofill:focus {
2358
- border-color: var(--blue-400);
2359
- -webkit-box-shadow: 0 0 0 1000px var(--blue-200) inset, 0 0 0 var(--su-static4) var(--focus-ring);
2360
- }
2361
- .s-input::-webkit-contacts-auto-fill-button,
2362
- .s-textarea::-webkit-contacts-auto-fill-button {
2363
- background-color: var(--black);
2364
- }
2365
- .s-input::placeholder,
2366
- .s-textarea::placeholder,
2367
- .s-input::-webkit-input-placeholder,
2368
- .s-textarea::-webkit-input-placeholder {
2369
- color: var(--_in-placeholder-fc);
2314
+ --_in-fs: var(--fs-body3);
2315
+ --_in-lh: var(--lh-lg);
2316
+ --_in-px: calc(var(--su12) + var(--su1));
2370
2317
  }
2371
2318
  .s-input::placeholder,
2372
2319
  .s-textarea::placeholder {
2320
+ color: var(--_in-placeholder-fc);
2373
2321
  opacity: 1;
2374
2322
  }
2375
2323
  .s-input.s-input__creditcard,
@@ -2380,7 +2328,7 @@ body.theme-highcontrast .has-warning .s-textarea {
2380
2328
  .s-input.s-textarea__search,
2381
2329
  .s-textarea.s-input__search,
2382
2330
  .s-textarea.s-textarea__search {
2383
- --_in-pl: var(--su-static32);
2331
+ --_in-pl: calc(var(--su-static32) + var(--su-static4));
2384
2332
  }
2385
2333
  .s-input:focus,
2386
2334
  .s-textarea:focus,
@@ -2410,6 +2358,13 @@ body.theme-highcontrast .has-warning .s-textarea {
2410
2358
  background-color: transparent;
2411
2359
  border-color: transparent;
2412
2360
  }
2361
+ .s-input:has(> input.s-input) {
2362
+ display: flex;
2363
+ align-items: center;
2364
+ }
2365
+ .s-input:has(> input.s-input) input.s-input {
2366
+ flex: 1 1 0;
2367
+ }
2413
2368
  .is-disabled .s-input,
2414
2369
  .is-readonly .s-input,
2415
2370
  .has-success .s-input,
@@ -2417,8 +2372,24 @@ body.theme-highcontrast .has-warning .s-textarea {
2417
2372
  .has-warning .s-input {
2418
2373
  padding-right: var(--su32);
2419
2374
  }
2420
- .s-input.s-input__md {
2421
- --_in-py: 0.5em;
2375
+ .s-input .s-input {
2376
+ --_in-bg: transparent;
2377
+ --_in-bw: 0;
2378
+ --_in-px: 0;
2379
+ box-shadow: none;
2380
+ margin: calc(var(--_in-py) * -1) 0;
2381
+ }
2382
+ .s-input:has(.s-input) {
2383
+ --_in-px: var(--_in-py);
2384
+ flex-wrap: wrap;
2385
+ gap: var(--su8);
2386
+ }
2387
+ .s-textarea {
2388
+ --_in-py: var(--su8);
2389
+ --_te-hmn: calc(var(--su32) + var(--su4));
2390
+ --_te-h: calc(var(--su64) + var(--su6));
2391
+ min-height: var(--_te-hmn);
2392
+ height: var(--_te-h);
2422
2393
  }
2423
2394
  .is-disabled .s-textarea,
2424
2395
  .is-readonly .s-textarea,
@@ -2427,12 +2398,18 @@ body.theme-highcontrast .has-warning .s-textarea {
2427
2398
  .has-warning .s-textarea {
2428
2399
  padding-right: var(--su48);
2429
2400
  }
2430
- .s-textarea.s-textarea__md {
2431
- --_in-py: 0.72em;
2401
+ .s-textarea.s-textarea__sm {
2402
+ --_te-hmn: calc(var(--su32) - var(--su4));
2403
+ --_te-h: calc(var(--su48) + var(--su6));
2404
+ }
2405
+ .s-textarea.s-textarea__lg {
2406
+ --_te-hmn: calc(var(--su48) - var(--su4));
2407
+ --_te-h: calc(var(--su64) + var(--su32));
2432
2408
  }
2433
2409
  .s-textarea ~ .s-input-icon {
2434
- right: 1.5em;
2435
- top: 1.5em;
2410
+ right: var(--_in-px);
2411
+ top: var(--_in-py);
2412
+ margin-top: 0;
2436
2413
  }
2437
2414
  .s-input-fill {
2438
2415
  --_if-bc: var(--bc-dark);
@@ -2466,10 +2443,10 @@ body.theme-highcontrast .has-warning .s-textarea {
2466
2443
  }
2467
2444
  .s-input-icon {
2468
2445
  --_ii-fc: unset;
2469
- --_ii-r: 0.7em;
2446
+ --_ii-r: calc(var(--su-static8) + var(--su-static2));
2470
2447
  color: var(--_ii-fc);
2471
2448
  right: var(--_ii-r);
2472
- margin-top: calc((var(--su-static8) + var(--su-static1)) * -1);
2449
+ margin-top: calc((var(--su-static8) + var(--su-static2)) * -1);
2473
2450
  pointer-events: none;
2474
2451
  position: absolute;
2475
2452
  top: 50%;
@@ -2496,7 +2473,7 @@ body.theme-highcontrast .is-readonly .s-input-icon {
2496
2473
  .s-input-icon.s-input-icon__search {
2497
2474
  --_ii-r: auto;
2498
2475
  color: var(--black-400);
2499
- left: 0.7em;
2476
+ left: calc(var(--su-static8) + var(--su-static2));
2500
2477
  }
2501
2478
  .s-input-message {
2502
2479
  --_im-fc: unset;
@@ -2647,7 +2624,7 @@ a.s-user-card--link:hover:visited {
2647
2624
  }
2648
2625
  a,
2649
2626
  .s-link {
2650
- --_li-fc: var(--theme-link-color, var(--theme-secondary-400));
2627
+ --_li-fc: var(--theme-link-color, var(--theme-secondary));
2651
2628
  --_li-fc-hover: var(--theme-link-color-hover, var(--theme-secondary-500));
2652
2629
  --_li-fc-visited: var(--theme-link-color-visited, var(--purple-500));
2653
2630
  --_li-fc-hover-visited: var(--theme-link-color-visited, var(--purple-600));
@@ -2848,7 +2825,7 @@ body.theme-highcontrast .s-link-preview {
2848
2825
  font-weight: bold;
2849
2826
  }
2850
2827
  .s-link-preview a.s-link-preview--title {
2851
- color: var(--theme-link-color, var(--theme-secondary-400));
2828
+ color: var(--theme-link-color, var(--theme-secondary));
2852
2829
  cursor: pointer;
2853
2830
  text-decoration: none;
2854
2831
  }
@@ -2885,55 +2862,109 @@ body.theme-highcontrast .s-link-preview a.s-link-preview--title.s-link__visited:
2885
2862
  white-space: nowrap;
2886
2863
  }
2887
2864
  .s-menu {
2888
- --_me-divider-bg: var(--bc-light);
2889
- --_me-label-btc: var(--bc-light);
2890
- --_me-label-cursor: pointer;
2865
+ --_me-action-bg: unset;
2866
+ --_me-action-fc: var(--black-500);
2867
+ --_me-item-p: var(--su8);
2868
+ --_me-after-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m14 3.88-.44.44-7.34 7.35-.44.44-.44-.44-2.9-2.9L2 8.34l.89-.88.44.44 2.45 2.45 6.9-6.9.44-.44z'/%3E%3C/svg%3E");
2891
2869
  list-style: none;
2892
2870
  margin: 0;
2893
2871
  padding: 0;
2894
2872
  }
2895
- @media (prefers-color-scheme: dark) {
2896
- body.theme-system .s-menu {
2897
- --_me-divider-bg: var(--bc-light);
2898
- --_me-label-btc: var(--bc-light);
2899
- }
2900
- }
2901
- body.theme-dark .s-menu,
2902
- .theme-dark__forced .s-menu,
2903
- body.theme-system .theme-dark__forced .s-menu {
2904
- --_me-divider-bg: var(--bc-light);
2905
- --_me-label-btc: var(--bc-light);
2906
- }
2907
2873
  .s-menu .s-menu--divider {
2908
- background-color: var(--_me-divider-bg);
2874
+ background-color: var(--black-200);
2909
2875
  height: var(--su-static1);
2910
2876
  margin: var(--su8) 0;
2911
2877
  }
2912
- .s-menu .s-menu--label {
2913
- border-top: var(--su-static1) solid var(--_me-label-btc);
2914
- cursor: var(--_me-label-cursor);
2915
- padding: var(--su12);
2878
+ .s-menu .s-menu--icon {
2879
+ color: inherit;
2880
+ margin-right: var(--su8);
2881
+ }
2882
+ .s-menu .s-menu--item {
2883
+ color: var(--_me-action-fc);
2884
+ padding: var(--_me-item-p);
2885
+ align-items: center;
2886
+ display: flex;
2887
+ width: 100%;
2888
+ }
2889
+ .s-menu .s-menu--item:has(> .s-menu--action) {
2890
+ --_me-item-p: 0;
2891
+ }
2892
+ .s-menu .s-menu--item.s-check-control {
2893
+ --_me-item-p: var(--su6) var(--su8);
2894
+ align-items: flex-start;
2895
+ }
2896
+ .s-menu .s-menu--item.s-check-control .s-radio,
2897
+ .s-menu .s-menu--item.s-check-control .s-checkbox {
2898
+ margin-top: var(--su4);
2899
+ }
2900
+ .s-menu .s-menu--item:not(.s-check-control) .s-radio,
2901
+ .s-menu .s-menu--item:not(.s-check-control) .s-checkbox {
2902
+ height: 0;
2903
+ pointer-events: none;
2904
+ position: absolute;
2905
+ opacity: 0;
2906
+ width: 0;
2907
+ }
2908
+ .s-menu .s-menu--action {
2909
+ background-color: var(--_me-action-bg);
2910
+ color: var(--_me-action-fc);
2911
+ align-items: center;
2912
+ border-radius: var(--br-md);
2913
+ cursor: pointer;
2914
+ display: flex;
2915
+ padding: var(--su8);
2916
+ width: 100%;
2916
2917
  }
2917
- .s-menu .s-menu--label.is-disabled {
2918
- --_me-label-cursor: not-allowed;
2918
+ .s-menu .s-menu--action:focus-visible,
2919
+ .s-menu .s-menu--action:has(> input:focus-visible) {
2920
+ box-shadow: inset 0 0 0 var(--su-static2) var(--focus-theme), inset 0 0 0 var(--su-static4) var(--focus-neutral);
2921
+ outline: var(--su-static2) solid transparent !important;
2922
+ }
2923
+ .s-menu .s-menu--action:focus-visible,
2924
+ .s-menu .s-menu--action:has(> input:focus-visible),
2925
+ .s-menu .s-menu--action:hover {
2926
+ --_me-action-bg: var(--black-150);
2927
+ --_me-action-fc: var(--black-600);
2928
+ }
2929
+ .s-menu .s-menu--action__danger {
2930
+ --_me-action-fc: var(--red-400);
2931
+ }
2932
+ .s-menu .s-menu--action__danger:focus-visible,
2933
+ .s-menu .s-menu--action__danger:hover {
2934
+ --_me-action-fc: var(--red-500);
2935
+ }
2936
+ .s-menu .s-menu--action.is-selected:after,
2937
+ .s-menu .s-menu--action:has(input:checked):after {
2938
+ background-color: var(--_me-action-fc);
2939
+ content: "";
2940
+ height: var(--su16);
2941
+ margin-left: auto;
2942
+ width: var(--su16);
2943
+ mask-image: var(--_me-after-mask);
2944
+ mask-size: contain;
2945
+ mask-repeat: no-repeat;
2946
+ }
2947
+ .s-menu button.s-menu--action {
2948
+ border: none;
2949
+ font-family: inherit;
2950
+ line-height: inherit;
2951
+ text-align: left;
2919
2952
  }
2920
2953
  .s-menu .s-menu--title {
2921
- color: var(--black-500);
2922
- font-size: var(--fs-fine);
2923
- padding: var(--su8) var(--su12);
2924
- text-transform: uppercase;
2954
+ color: var(--black-600);
2955
+ font-weight: 700;
2956
+ padding: var(--su6) var(--su8);
2925
2957
  }
2926
- .s-menu li + .s-menu--title {
2958
+ .s-menu .s-menu--item + .s-menu--title {
2927
2959
  margin-top: var(--su12);
2928
2960
  }
2929
2961
  .s-modal {
2930
- --_mo-bg: hsla(210, 8%, 5%, 0.5);
2962
+ --_mo-bg: rgba(33, 29, 30, 0.5);
2931
2963
  --_mo-hmx: unset;
2932
2964
  --_mo-wmx: unset;
2933
- --_mo-close-t: var(--su8);
2934
2965
  --_mo-dialog-bg: var(--white);
2935
2966
  --_mo-dialog-pt: var(--su24);
2936
- --_mo-header-fc: var(--fc-dark);
2967
+ --_mo-dialog-ou: 0;
2937
2968
  background-color: var(--_mo-bg);
2938
2969
  max-height: var(--_mo-hmx);
2939
2970
  max-width: var(--_mo-wmx);
@@ -2950,21 +2981,16 @@ body.theme-system .theme-dark__forced .s-menu {
2950
2981
  }
2951
2982
  @media (prefers-color-scheme: dark) {
2952
2983
  body.theme-system .s-modal {
2953
- --_mo-dialog-bg: var(--black-225);
2984
+ --_mo-dialog-bg: var(--black-100);
2954
2985
  }
2955
2986
  }
2956
2987
  body.theme-dark .s-modal,
2957
2988
  .theme-dark__forced .s-modal,
2958
2989
  body.theme-system .theme-dark__forced .s-modal {
2959
- --_mo-dialog-bg: var(--black-225);
2960
- }
2961
- @media (prefers-color-scheme: dark) {
2962
- body.theme-highcontrast.theme-system .s-modal {
2963
- --_mo-dialog-bg: var(--black-200);
2964
- }
2990
+ --_mo-dialog-bg: var(--black-100);
2965
2991
  }
2966
- body.theme-highcontrast.theme-dark .s-modal {
2967
- --_mo-dialog-bg: var(--black-200);
2992
+ body.theme-highcontrast .s-modal {
2993
+ --_mo-dialog-ou: var(--su2) solid var(--black-500);
2968
2994
  }
2969
2995
  .s-modal[aria-hidden="false"],
2970
2996
  .s-modal[aria-hidden="false"] .s-modal--dialog {
@@ -2993,18 +3019,17 @@ body.theme-highcontrast.theme-dark .s-modal {
2993
3019
  }
2994
3020
  .s-modal.has-danger,
2995
3021
  .s-modal.s-modal__danger {
2996
- --_mo-bg: hsla(0, 65%, 4%, 0.5);
2997
- --_mo-header-fc: var(--red-500);
3022
+ --_mo-bg: rgba(1, 0, 0, 0.5);
2998
3023
  }
2999
3024
  .s-modal .s-modal--body {
3000
3025
  color: var(--fc-medium);
3001
3026
  margin-bottom: var(--su24);
3002
3027
  }
3003
3028
  .s-modal .s-modal--close {
3004
- padding: var(--su12) !important;
3029
+ padding: var(--su6) !important;
3005
3030
  position: absolute !important;
3006
- right: var(--su8);
3007
- top: var(--_mo-close-t);
3031
+ right: var(--su16);
3032
+ top: var(--su16);
3008
3033
  }
3009
3034
  .s-modal .s-modal--close .svg-icon {
3010
3035
  margin: 0 !important;
@@ -3012,6 +3037,7 @@ body.theme-highcontrast.theme-dark .s-modal {
3012
3037
  .s-modal .s-modal--dialog {
3013
3038
  padding: var(--_mo-dialog-pt) var(--su24) var(--su24);
3014
3039
  scrollbar-color: var(--scrollbar) transparent;
3040
+ position: relative;
3015
3041
  backface-visibility: hidden;
3016
3042
  background-color: var(--_mo-dialog-bg);
3017
3043
  border-radius: var(--br-md);
@@ -3024,6 +3050,7 @@ body.theme-highcontrast.theme-dark .s-modal {
3024
3050
  transition: opacity 200ms var(--te-smooth) 0s, z-index 0s 100ms, visibility 0s 100ms, transform 100ms var(--te-smooth) 0s, transform 100ms var(--te-smooth) 0s;
3025
3051
  visibility: hidden;
3026
3052
  z-index: var(--zi-hide);
3053
+ outline: var(--_mo-dialog-ou);
3027
3054
  }
3028
3055
  .s-modal .s-modal--dialog::-webkit-scrollbar {
3029
3056
  width: calc(var(--su-static12) - var(--su-static2));
@@ -3046,7 +3073,7 @@ body.theme-highcontrast.theme-dark .s-modal {
3046
3073
  margin-top: var(--su24);
3047
3074
  }
3048
3075
  .s-modal .s-modal--header {
3049
- color: var(--_mo-header-fc);
3076
+ color: var(--fc-dark);
3050
3077
  font-size: var(--fs-headline1);
3051
3078
  font-weight: normal;
3052
3079
  line-height: var(--lh-sm);
@@ -3059,18 +3086,20 @@ body.theme-highcontrast.theme-dark .s-modal {
3059
3086
  --_na-p: var(--su2) 0;
3060
3087
  --_na-gap: var(--su4);
3061
3088
  --_na-item-bg: none;
3062
- --_na-item-fc: var(--black-500);
3089
+ --_na-item-fc: var(--black-400);
3063
3090
  --_na-item-fs: unset;
3064
- --_na-item-p: var(--su6) var(--su12);
3065
- --_na-item-py: var(--su12);
3091
+ --_na-item-p: calc(var(--su12) - var(--su1)) var(--su16);
3066
3092
  --_na-item-ws: nowrap;
3067
- --_na-item-bg-hover: var(--black-200);
3093
+ --_na-item-bg-hover: var(--black-100);
3068
3094
  --_na-item-fc-hover: var(--_na-item-fc);
3069
- --_na-item-selected-bg: var(--theme-primary);
3070
- --_na-item-selected-fc: var(--white);
3071
- --_na-item-selected-bg-hover: var(--theme-primary-500);
3095
+ --_na-item-selected-bg: none;
3096
+ --_na-item-selected-fc: var(--black-600);
3097
+ --_na-item-selected-bg-hover: var(--_na-item-bg-hover);
3098
+ --_na-item-selected-h: var(--su-static2);
3072
3099
  --_na-item-text-ta: center;
3073
- --_na-title-mt: var(--su16);
3100
+ --_na-title-mt: var(--su24);
3101
+ --_na-after-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M11.35 4.35 6 9.71.65 4.35l.7-.7L6 8.29l4.65-4.64z'/%3E%3C/svg%3E");
3102
+ --_na-after-bg-color: var(--black-400);
3074
3103
  flex-direction: var(--_na-fd);
3075
3104
  flex-wrap: var(--_na-fw);
3076
3105
  gap: var(--_na-gap);
@@ -3107,7 +3136,7 @@ body.theme-highcontrast .s-navigation {
3107
3136
  }
3108
3137
  .s-navigation.s-navigation__sm {
3109
3138
  --_na-item-fs: var(--fs-caption);
3110
- --_na-item-p: var(--su4) var(--su12);
3139
+ --_na-item-p: var(--su6) var(--su4);
3111
3140
  }
3112
3141
  .s-navigation.s-navigation__vertical {
3113
3142
  --_na-fd: column;
@@ -3115,16 +3144,17 @@ body.theme-highcontrast .s-navigation {
3115
3144
  --_na-p: 0;
3116
3145
  --_na-item-text-ta: unset;
3117
3146
  --_na-item-ws: normal;
3147
+ --_na-item-selected-h: 0;
3148
+ --_na-item-p: var(--su6) var(--su8);
3118
3149
  }
3119
- .s-navigation.s-navigation__muted {
3120
- --_na-item-selected-bg: var(--black-150);
3121
- --_na-item-selected-fc: var(--black-600);
3122
- --_na-item-selected-bg-hover: var(--_na-item-bg);
3150
+ .s-navigation.s-navigation__vertical .s-navigation--item.is-selected {
3151
+ --_na-item-bg: var(--black-150);
3152
+ }
3153
+ .s-navigation.s-navigation__vertical .s-navigation--item:has(.s-navigation--icon) {
3154
+ --_na-item-p: calc(var(--su12) - var(--su1)) var(--su8);
3123
3155
  }
3124
- body.theme-highcontrast .s-navigation.s-navigation__muted {
3125
- --_na-item-selected-bg: var(--black-600);
3126
- --_na-item-selected-fc: var(--black-150);
3127
- --_na-item-selected-bg-hover: var(--black-600);
3156
+ .s-navigation.s-navigation__vertical .s-navigation--item:has(.s-navigation--avatar) {
3157
+ --_na-item-p: var(--su12) var(--su8);
3128
3158
  }
3129
3159
  .s-navigation .s-navigation--item {
3130
3160
  background-color: var(--_na-item-bg);
@@ -3135,7 +3165,7 @@ body.theme-highcontrast .s-navigation.s-navigation__muted {
3135
3165
  white-space: var(--_na-item-ws);
3136
3166
  align-items: center;
3137
3167
  border: none;
3138
- border-radius: 1000px;
3168
+ border-radius: var(--br-md);
3139
3169
  box-shadow: none;
3140
3170
  cursor: pointer;
3141
3171
  display: flex;
@@ -3149,28 +3179,37 @@ body.theme-highcontrast .s-navigation.s-navigation__muted {
3149
3179
  --_na-item-bg-hover: var(--_na-item-selected-bg-hover);
3150
3180
  font-weight: bold;
3151
3181
  }
3152
- body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
3153
- text-decoration: none;
3182
+ .s-navigation .s-navigation--item.is-selected:before {
3183
+ content: "";
3184
+ position: absolute;
3185
+ bottom: 0;
3186
+ left: 0;
3187
+ right: 0;
3188
+ height: var(--_na-item-selected-h);
3189
+ background-color: var(--_na-item-selected-fc);
3154
3190
  }
3155
- .s-navigation .s-navigation--item__dropdown {
3156
- padding-right: 2em;
3191
+ body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
3192
+ --_na-item-fc-hover: var(--white);
3157
3193
  }
3158
3194
  .s-navigation .s-navigation--item__dropdown:after {
3159
- border-style: solid;
3160
- border-width: var(--su-static4) var(--su-static4) 0 var(--su-static4);
3161
- border-color: currentColor transparent;
3195
+ mask-image: var(--_na-after-mask);
3196
+ mask-size: contain;
3197
+ mask-repeat: no-repeat;
3198
+ background-color: var(--_na-after-bg-color);
3162
3199
  content: "";
3163
- pointer-events: none;
3164
- position: absolute;
3165
- right: 0.9em;
3166
- top: calc(50% - var(--su-static2));
3167
- z-index: var(--zi-active);
3200
+ height: var(--su12);
3201
+ width: var(--su12);
3202
+ margin-left: var(--su8);
3168
3203
  }
3169
3204
  .s-navigation .s-navigation--item:hover,
3170
3205
  .s-navigation .s-navigation--item:active {
3171
3206
  background-color: var(--_na-item-bg-hover);
3172
3207
  color: var(--_na-item-fc-hover);
3173
3208
  }
3209
+ body.theme-highcontrast .s-navigation .s-navigation--item:hover,
3210
+ body.theme-highcontrast .s-navigation .s-navigation--item:active {
3211
+ --_na-after-bg-color: var(--white);
3212
+ }
3174
3213
  .s-navigation .s-navigation--item:focus-visible {
3175
3214
  box-shadow: inset 0 0 0 var(--su-static2) var(--focus-theme), inset 0 0 0 var(--su-static4) var(--focus-neutral);
3176
3215
  outline: var(--su-static2) solid transparent !important;
@@ -3191,13 +3230,22 @@ body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
3191
3230
  .s-navigation .s-navigation--title {
3192
3231
  margin-top: var(--_na-title-mt);
3193
3232
  font-size: var(--fs-fine);
3194
- font-weight: bold;
3195
- padding: var(--su6) var(--su12);
3196
- text-transform: uppercase;
3233
+ color: var(--black-400);
3234
+ padding: calc(var(--su16) + var(--su2)) var(--su8);
3197
3235
  }
3198
3236
  .s-navigation .s-navigation--title:first-child {
3199
3237
  --_na-title-mt: 0;
3200
3238
  }
3239
+ .s-navigation .s-navigation--title .s-btn {
3240
+ color: var(--black-400);
3241
+ }
3242
+ .s-navigation .s-navigation--icon {
3243
+ color: inherit;
3244
+ margin-right: var(--su4);
3245
+ }
3246
+ .s-navigation .s-navigation--avatar {
3247
+ margin-right: var(--su8);
3248
+ }
3201
3249
  /**
3202
3250
  * Generate color variables with a given color name
3203
3251
  *
@@ -3459,63 +3507,64 @@ ul.s-pagination {
3459
3507
  padding: 0;
3460
3508
  }
3461
3509
  .s-pagination .s-pagination--item {
3462
- --_pa-item-bg: transparent;
3463
- --_pa-item-bc: var(--bc-darker);
3464
- --_pa-item-fc: var(--fc-medium);
3465
- --_pa-item-bg-focus: var(--black-400);
3466
- --_pa-item-fc-focus: var(--white);
3467
- --_pa-item-bg-hover: var(--black-225);
3468
- --_pa-item-bc-hover: var(--bc-darker);
3469
- --_pa-item-fc-hover: var(--fc-dark);
3510
+ --_pa-item-bg: unset;
3511
+ --_pa-item-br: unset;
3512
+ --_pa-item-fc: var(--black-400);
3513
+ --_pa-item-p: var(--su-static4);
3470
3514
  background-color: var(--_pa-item-bg);
3471
- border: 1px solid var(--_pa-item-bc);
3515
+ border-radius: var(--_pa-item-br);
3472
3516
  color: var(--_pa-item-fc);
3473
- border-radius: var(--br-md);
3474
- display: inline-block;
3475
- font-size: var(--fs-body1);
3476
- line-height: var(--lh-xl);
3477
- padding: 0 var(--su8);
3478
- }
3479
- body.theme-highcontrast .s-pagination .s-pagination--item {
3480
- text-decoration: none;
3517
+ padding: var(--_pa-item-p);
3518
+ display: inline-flex;
3519
+ align-items: center;
3520
+ justify-content: center;
3521
+ margin: var(--su-static1);
3522
+ position: relative;
3481
3523
  }
3482
3524
  .s-pagination .s-pagination--item.is-selected {
3483
- --_pa-item-bg: var(--theme-primary);
3484
- --_pa-item-bc: transparent;
3485
- --_pa-item-fc: var(--white);
3486
- --_pa-item-bg-focus: var(--theme-primary-400);
3487
- }
3488
- .s-pagination .s-pagination--item.s-pagination--item__clear {
3489
- --_pa-item-bg: transparent;
3490
- --_pa-item-bc: transparent;
3491
- --_pa-item-fc: inherit;
3492
- }
3493
- .s-pagination .s-pagination--item.is-selected,
3494
- .s-pagination .s-pagination--item.s-pagination--item__clear {
3495
- --_pa-item-bc-hover: var(--_pa-item-bc);
3496
- --_pa-item-bg-hover: var(--_pa-item-bg);
3497
- --_pa-item-fc-hover: var(--_pa-item-fc);
3498
- }
3499
- .s-pagination .s-pagination--item:hover {
3500
- background-color: var(--_pa-item-bg-hover);
3501
- border-color: var(--_pa-item-bc-hover);
3502
- color: var(--_pa-item-fc-hover);
3525
+ --_pa-item-fc: var(--black-600);
3526
+ }
3527
+ .s-pagination .s-pagination--item.is-selected:not(:hover):not(:focus-visible):before {
3528
+ background-color: var(--black-600);
3529
+ content: "";
3530
+ height: var(--su-static2);
3531
+ left: 0;
3532
+ position: absolute;
3533
+ right: 0;
3534
+ top: 100%;
3535
+ }
3536
+ .s-pagination .s-pagination--item.s-pagination--item__nav {
3537
+ --_pa-item-bg: var(--black-150);
3538
+ --_pa-item-br: var(--br-circle);
3539
+ --_pa-item-fc: var(--black-600);
3540
+ --_pa-item-p: var(--su-static6);
3541
+ aspect-ratio: 1 / 1;
3542
+ }
3543
+ .s-pagination .s-pagination--item.s-pagination--item__nav:hover {
3544
+ --_pa-item-bg: var(--black-200);
3545
+ }
3546
+ .s-pagination .s-pagination--item[href]:hover:not(.s-pagination .s-pagination--item__nav) {
3547
+ --_pa-item-bg: var(--black-150);
3548
+ --_pa-item-br: var(--br-pill);
3549
+ --_pa-item-fc: var(--black-600);
3503
3550
  }
3504
3551
  .s-pagination .s-pagination--item:focus-visible {
3505
- border-color: var(--focus-theme) !important;
3506
- box-shadow: inset 0 0 0 var(--su-static1) var(--focus-theme), inset 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-neutral);
3552
+ --_pa-item-bg: var(--black-150);
3553
+ --_pa-item-fc: var(--black-600);
3554
+ border-color: var(--focus-neutral) !important;
3555
+ box-shadow: 0 0 0 var(--su-static1) var(--focus-neutral), 0 0 0 calc(var(--su-static4) - var(--su-static1)) var(--focus-theme);
3507
3556
  outline: var(--su-static2) solid transparent !important;
3508
3557
  }
3509
- .s-pagination .s-pagination--item:focus-visible,
3558
+ .s-pagination .s-pagination--item:focus-visible:not(.s-pagination .s-pagination--item__nav),
3510
3559
  .s-pagination .s-pagination--item.focus-inset-bordered {
3511
- background-color: var(--_pa-item-bg-focus);
3512
- color: var(--_pa-item-fc-focus);
3560
+ --_pa-item-br: var(--br-md);
3513
3561
  }
3514
3562
  .s-pagination,
3515
3563
  .s-pagination ul {
3516
3564
  display: flex;
3565
+ align-items: center;
3517
3566
  flex-wrap: wrap;
3518
- gap: var(--su4);
3567
+ gap: var(--su2);
3519
3568
  }
3520
3569
  .s-popover {
3521
3570
  --_po-bg: var(--white);
@@ -3527,7 +3576,7 @@ body.theme-highcontrast .s-pagination .s-pagination--item {
3527
3576
  --_po-topbar-height: var(--theme-topbar-height, calc(var(--su-static48) + var(--su-static8)));
3528
3577
  --_po-content-mxh: calc(100vh - var(--_po-topbar-height) - var(--su48));
3529
3578
  background-color: var(--_po-bg);
3530
- border: 1px solid var(--_po-bc);
3579
+ border: var(--su-static1) solid var(--_po-bc);
3531
3580
  box-shadow: var(--_po-bs);
3532
3581
  display: var(--_po-d);
3533
3582
  min-width: var(--_po-wmn);
@@ -3543,17 +3592,13 @@ body.theme-highcontrast .s-pagination .s-pagination--item {
3543
3592
  }
3544
3593
  @media (prefers-color-scheme: dark) {
3545
3594
  body.theme-system .s-popover {
3546
- --_po-bg: var(--black-200);
3547
- --_po-bc: var(--bc-light);
3548
- --_po-bs: var(--bs-lg);
3595
+ --_po-bg: var(--black-100);
3549
3596
  }
3550
3597
  }
3551
3598
  body.theme-dark .s-popover,
3552
3599
  .theme-dark__forced .s-popover,
3553
3600
  body.theme-system .theme-dark__forced .s-popover {
3554
- --_po-bg: var(--black-200);
3555
- --_po-bc: var(--bc-light);
3556
- --_po-bs: var(--bs-lg);
3601
+ --_po-bg: var(--black-100);
3557
3602
  }
3558
3603
  .s-popover.is-visible {
3559
3604
  --_po-d: block;
@@ -3566,7 +3611,7 @@ body.theme-system .theme-dark__forced .s-popover {
3566
3611
  float: right;
3567
3612
  top: calc(var(--su8) * -1);
3568
3613
  right: calc(var(--su8) * -1);
3569
- padding: var(--su8) !important;
3614
+ padding: var(--su6) !important;
3570
3615
  }
3571
3616
  .s-popover .s-popover--content {
3572
3617
  max-height: var(--_po-content-mxh);
@@ -3579,7 +3624,7 @@ body.theme-system .theme-dark__forced .s-popover {
3579
3624
  --_ps-bg: unset;
3580
3625
  --_ps-o: unset;
3581
3626
  --_ps-content-excerpt-fc: var(--_ps-state-fc, var(--fc-medium));
3582
- --_ps-content-title-a-fc: var(--_ps-state-fc, var(--theme-post-title-color, var(--theme-link-color, var(--theme-secondary-400))));
3627
+ --_ps-content-title-a-fc: var(--_ps-state-fc, var(--theme-post-title-color, var(--theme-link-color, var(--theme-secondary))));
3583
3628
  --_ps-content-title-a-fc-hover: var(--_ps-state-fc, var(--theme-post-title-color-hover, var(--theme-link-color-hover, var(--theme-secondary-500))));
3584
3629
  --_ps-content-title-a-fc-visited: var(--_ps-state-fc, var(--theme-post-title-color-visited, var(--theme-link-color-visited, var(--purple-500))));
3585
3630
  --_ps-content-title-a-fc-hover-visited: var(--_ps-state-fc, var(--theme-post-title-color-hover, var(--theme-link-color-hover, var(--purple-600))));
@@ -3665,6 +3710,7 @@ body.theme-system .theme-dark__forced .s-popover {
3665
3710
  .s-post-summary.s-post-summary__ignored .s-post-summary--meta-tags .s-tag .focus-bordered {
3666
3711
  background-color: var(--_ps-meta-tags-tag-bg);
3667
3712
  color: var(--black-500);
3713
+ border-color: var(--black-300);
3668
3714
  }
3669
3715
  body.theme-highcontrast .s-post-summary.s-post-summary__deleted .s-post-summary--meta-tags a,
3670
3716
  body.theme-highcontrast .s-post-summary.s-post-summary__ignored .s-post-summary--meta-tags a,
@@ -3745,7 +3791,7 @@ body.theme-system .theme-dark__forced .s-post-summary.s-post-summary__deleted .s
3745
3791
  .s-post-summary.s-post-summary__watched:not(.s-post-summary__deleted):not(.s-post-summary__ignored) {
3746
3792
  --_ps-bg: var(--yellow-100);
3747
3793
  --_ps-stats-fc: var(--black-400);
3748
- --_ps-content-title-a-fc: var(--theme-post-title-color, var(--theme-link-color, var(--theme-secondary-400)));
3794
+ --_ps-content-title-a-fc: var(--theme-post-title-color, var(--theme-link-color, var(--theme-secondary)));
3749
3795
  --_ps-content-title-a-fc-hover: var(--theme-post-title-color-hover, var(--theme-link-color-hover, var(--theme-secondary-500)));
3750
3796
  --_ps-content-title-a-fc-visited: var(--theme-post-title-color-visited, var(--theme-link-color-visited, var(--purple-500)));
3751
3797
  --_ps-content-title-a-fc-hover-visited: var(--theme-post-title-color-hover, var(--theme-link-color-hover, var(--purple-600)));
@@ -4066,19 +4112,19 @@ body.theme-highcontrast .s-post-summary .s-post-summary--answer:before {
4066
4112
  --_pr-bar-bg: var(--orange-400);
4067
4113
  }
4068
4114
  .s-progress.s-progress__bronze {
4069
- --_pr-bar-bg: var(--bronze-100);
4070
- --_pr-label-bc: var(--bronze-400);
4115
+ --_pr-bar-bg: var(--orange-100);
4116
+ --_pr-label-bc: var(--orange-400);
4071
4117
  }
4072
4118
  .s-progress.s-progress__gold {
4073
- --_pr-bar-bg: var(--gold-100);
4074
- --_pr-label-bc: var(--gold-400);
4119
+ --_pr-bar-bg: var(--yellow-100);
4120
+ --_pr-label-bc: var(--yellow-400);
4075
4121
  }
4076
4122
  .s-progress.s-progress__info {
4077
4123
  --_pr-bar-bg: var(--blue-400);
4078
4124
  }
4079
4125
  .s-progress.s-progress__silver {
4080
- --_pr-bar-bg: var(--silver-100);
4081
- --_pr-label-bc: var(--silver-400);
4126
+ --_pr-bar-bg: var(--blue-100);
4127
+ --_pr-label-bc: var(--blue-400);
4082
4128
  }
4083
4129
  .s-progress.s-progress__badge,
4084
4130
  .s-progress.s-progress__privilege {
@@ -4181,18 +4227,18 @@ body.theme-highcontrast .s-progress.s-progress__privilege {
4181
4227
  position: relative;
4182
4228
  }
4183
4229
  .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--bar.s-progress--bar__left {
4184
- background: var(--theme-secondary-400);
4230
+ background: var(--theme-secondary);
4185
4231
  }
4186
4232
  .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--label {
4187
4233
  color: var(--fc-dark);
4188
4234
  }
4189
4235
  .s-progress.s-progress__stepped .s-progress--step.is-active .s-progress--stop {
4190
- background: var(--theme-secondary-400);
4236
+ background: var(--theme-secondary);
4191
4237
  box-shadow: 0 0 0 var(--su-static6) var(--translucent-secondary);
4192
4238
  }
4193
4239
  .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progress--bar,
4194
4240
  .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progress--stop {
4195
- background: var(--theme-secondary-400);
4241
+ background: var(--theme-secondary);
4196
4242
  }
4197
4243
  .s-progress.s-progress__stepped .s-progress--step.is-complete .s-progress--label {
4198
4244
  color: var(--fc-dark);
@@ -4745,15 +4791,15 @@ body.theme-highcontrast .s-prose {
4745
4791
  width: 100%;
4746
4792
  }
4747
4793
  .s-select {
4748
- --_se-arrow-bc: currentColor transparent;
4749
- --_se-arrow-size: var(--su-static4);
4794
+ --_se-arrow-fc: currentColor;
4750
4795
  --_se-select-bc: var(--bc-darker);
4751
4796
  --_se-select-bg: var(--white);
4752
4797
  --_se-select-br: var(--br-md);
4753
4798
  --_se-select-fc: var(--black);
4754
4799
  --_se-select-px: 0.7em;
4755
- --_se-select-py: 0.6em;
4800
+ --_se-select-py: var(--su-static8);
4756
4801
  --_se-select-fs: var(--fs-body1);
4802
+ --_se-select-lh: var(--lh-base);
4757
4803
  color: var(--fc-dark);
4758
4804
  position: relative;
4759
4805
  }
@@ -4785,28 +4831,14 @@ body.theme-highcontrast .s-prose {
4785
4831
  .has-warning .s-select {
4786
4832
  --_se-select-bc: var(--yellow-500);
4787
4833
  }
4788
- .is-disabled .s-select {
4789
- --_se-arrow-bc: var(--bc-dark) transparent;
4790
- }
4791
4834
  .s-select.s-select__sm {
4792
4835
  --_se-select-fs: var(--fs-caption);
4793
- }
4794
- .s-select.s-select__md {
4795
- --_se-select-fs: var(--fs-body3);
4796
- --_se-select-br: calc(var(--br-md) + var(--su-static1));
4797
- --_se-select-py: 0.5em;
4836
+ --_se-select-lh: var(--lh-sm);
4837
+ --_se-select-py: calc(var(--su6) - var(--su-static1) / 2);
4798
4838
  }
4799
4839
  .s-select.s-select__lg {
4800
- --_se-select-fs: var(--fs-title);
4801
- --_se-select-br: calc(var(--br-md) + var(--su-static1));
4802
- --_se-select-px: 0.6em;
4803
- --_se-select-py: 0.45em;
4804
- }
4805
- .s-select.s-select__xl {
4806
- --_se-select-fs: var(--fs-headline1);
4807
- --_se-select-br: var(--br-md);
4808
- --_se-select-px: 0.5em;
4809
- --_se-select-py: 0.4em;
4840
+ --_se-select-fs: var(--fs-body3);
4841
+ --_se-select-lh: var(--lh-lg);
4810
4842
  }
4811
4843
  select.s-select:-webkit-autofill,
4812
4844
  .s-select > select:-webkit-autofill {
@@ -4824,24 +4856,27 @@ select.s-select::-webkit-contacts-auto-fill-button,
4824
4856
  .s-select > select::-webkit-contacts-auto-fill-button {
4825
4857
  background-color: var(--black);
4826
4858
  }
4827
- .s-select:before,
4828
4859
  .s-select:after {
4829
- border-color: var(--_se-arrow-bc);
4830
- border-style: solid;
4831
- border-width: var(--_se-arrow-size);
4860
+ background-color: currentColor;
4832
4861
  content: "";
4862
+ height: var(--su-static16);
4863
+ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M13.06 10 8 15.06 2.94 10 4 8.94l.53.53L8 12.94l3.47-3.47.53-.53zm0-4L12 7.06l-.53-.53L8 3.06 4.53 6.53 4 7.06 2.94 6 8 .94z'/%3E%3C/svg%3E");
4864
+ mask-repeat: no-repeat;
4865
+ mask-position: center;
4866
+ mask-size: contain;
4833
4867
  pointer-events: none;
4834
4868
  position: absolute;
4835
- right: calc(var(--su-static12) + var(--su-static1));
4869
+ right: calc(var(--su32) - var(--su-static24));
4870
+ top: 50%;
4871
+ transform: translateY(-50%);
4872
+ width: var(--su-static16);
4836
4873
  z-index: var(--zi-selected);
4837
4874
  }
4838
- .s-select:after {
4839
- border-bottom-width: 0;
4840
- top: calc(50% + var(--su-static1));
4875
+ .is-disabled .s-select {
4876
+ --_se-arrow-fc: var(--bc-dark);
4841
4877
  }
4842
- .s-select:before {
4843
- border-top-width: 0;
4844
- top: calc(50% - calc(var(--_se-arrow-size) + var(--su-static1)));
4878
+ .is-disabled .s-select:after {
4879
+ background-color: var(--_se-arrow-fc);
4845
4880
  }
4846
4881
  .s-select > select {
4847
4882
  background-color: var(--_se-select-bg);
@@ -4853,7 +4888,7 @@ select.s-select::-webkit-contacts-auto-fill-button,
4853
4888
  appearance: none;
4854
4889
  font-family: inherit;
4855
4890
  height: 100%;
4856
- line-height: var(--lh-sm);
4891
+ line-height: var(--_se-select-lh);
4857
4892
  outline: 0;
4858
4893
  padding-right: var(--su32);
4859
4894
  position: relative;
@@ -4862,7 +4897,8 @@ select.s-select::-webkit-contacts-auto-fill-button,
4862
4897
  fieldset[disabled] .s-select > select,
4863
4898
  .s-select > select[disabled] {
4864
4899
  cursor: not-allowed;
4865
- opacity: var(--_o-disabled-static);
4900
+ --_se-select-fc: var(--black-300);
4901
+ --_se-select-bg: var(--black-100);
4866
4902
  }
4867
4903
  .s-select > select[readonly],
4868
4904
  .is-readonly .s-select > select {
@@ -5518,87 +5554,80 @@ body.theme-highcontrast .s-skeleton {
5518
5554
  .s-tag {
5519
5555
  --_ta-bc: var(--theme-tag-border-color, var(--_ta-bg));
5520
5556
  --_ta-bg: var(--theme-tag-background-color, var(--black-150));
5521
- --_ta-fc: var(--theme-tag-color, var(--black-500));
5557
+ --_ta-fc: var(--theme-tag-color, var(--black-600));
5522
5558
  --_ta-bc-hover: var(--theme-tag-hover-border-color, var(--_ta-bg-hover));
5523
5559
  --_ta-bg-hover: var(--theme-tag-hover-background-color, var(--black-200));
5524
5560
  --_ta-fc-hover: var(--theme-tag-hover-color, var(--black-600));
5525
- --_ta-br: var(--br-md);
5526
5561
  --_ta-fs: var(--fs-caption);
5527
- --_ta-lh: 1.84615385;
5528
- --_ta-pl: var(--_ta-px);
5529
- --_ta-pr: var(--_ta-px);
5530
- --_ta-px: var(--su4);
5531
- --_ta-dismiss-padding: calc(var(--_ta-px) - var(--su-static1));
5562
+ --_ta-pb: calc(var(--_ta-pt) + var(--su1));
5563
+ --_ta-pl: var(--su8);
5564
+ --_ta-pr: var(--su8);
5565
+ --_ta-pt: var(--su4);
5532
5566
  background-color: var(--_ta-bg);
5533
5567
  border: var(--su-static1) solid var(--_ta-bc);
5534
- border-radius: var(--_ta-br);
5535
5568
  color: var(--_ta-fc);
5536
5569
  font-size: var(--_ta-fs);
5537
- line-height: var(--_ta-lh);
5538
- padding-left: var(--_ta-pl);
5539
- padding-right: var(--_ta-pr);
5570
+ padding: var(--_ta-pt) var(--_ta-pr) var(--_ta-pb) var(--_ta-pl);
5540
5571
  align-items: center;
5541
5572
  display: inline-flex;
5542
- font-weight: 700;
5573
+ gap: var(--su4);
5543
5574
  justify-content: center;
5544
- min-width: 0;
5575
+ line-height: var(--lh-xs);
5545
5576
  text-decoration: none;
5546
- vertical-align: middle;
5547
5577
  white-space: nowrap;
5548
5578
  }
5549
5579
  body.theme-highcontrast .s-tag:not(body.theme-highcontrast .s-tag__moderator):not(body.theme-highcontrast .s-tag__required) {
5550
5580
  --_ta-bc: var(--theme-tag-border-color, var(--black-300));
5551
5581
  --_ta-bc-hover: var(--theme-tag-hover-border-color, var(--black-300));
5552
5582
  }
5553
- .s-tag.s-tag__xs {
5554
- --_ta-fs: var(--fs-fine);
5555
- --_ta-lh: 1.4;
5556
- --_ta-px: var(--su2);
5583
+ body.theme-highcontrast .s-tag:not(body.theme-highcontrast .s-tag__moderator):not(body.theme-highcontrast .s-tag__required).s-tag__ignored {
5584
+ --_ta-fc: var(--black-500);
5557
5585
  }
5558
5586
  .s-tag.s-tag__sm {
5559
- --_ta-fs: var(--fs-caption);
5560
- --_ta-lh: 1.5;
5561
- }
5562
- .s-tag.s-tag__md {
5563
- --_ta-px: var(--su6);
5564
- --_ta-fs: var(--fs-body2);
5565
- --_ta-lh: 1.73333333;
5587
+ --_ta-pl: var(--su4);
5588
+ --_ta-pr: var(--su4);
5589
+ --_ta-pt: var(--su1);
5566
5590
  }
5567
5591
  .s-tag.s-tag__lg {
5568
- --_ta-br: calc(var(--br-md) + var(--su-static1));
5569
- --_ta-fs: var(--fs-subheading);
5570
- --_ta-lh: 1.68421053;
5571
- --_ta-px: var(--su6);
5572
- }
5573
- .s-tag__ignored,
5574
- .s-tag.s-tag__ignored,
5575
- .s-tag__watched,
5576
- .s-tag.s-tag__watched {
5577
- --_ta-pl: calc(var(--su-static24) - var(--su-static2));
5578
- --_ta-before-size: calc(var(--su-static16) - var(--su-static2));
5579
- position: relative;
5592
+ --_ta-fs: var(--fs-body1);
5593
+ --_ta-pt: var(--su4);
5580
5594
  }
5581
- .s-tag__ignored:before,
5582
5595
  .s-tag.s-tag__ignored:before,
5583
- .s-tag__watched:before,
5584
5596
  .s-tag.s-tag__watched:before {
5585
- height: var(--_ta-before-size);
5586
- width: var(--_ta-before-size);
5587
5597
  -webkit-mask: var(--_ta-before-icon) no-repeat center;
5588
5598
  mask: var(--_ta-before-icon) no-repeat center;
5589
5599
  background-color: currentColor;
5590
5600
  content: "";
5591
5601
  display: block;
5592
- left: var(--su-static4);
5593
- margin-right: var(--su2);
5594
- position: absolute;
5595
- top: calc(50% - calc(var(--su-static8) - var(--su-static1)));
5602
+ height: calc(var(--su-static16) - var(--su-static2));
5596
5603
  -webkit-mask-size: contain;
5597
5604
  mask-size: contain;
5605
+ width: calc(var(--su-static16) - var(--su-static2));
5606
+ }
5607
+ .s-tag.s-tag__deleted,
5608
+ .s-tag.s-tag__ignored,
5609
+ .s-tag.s-tag__deleted.s-tag__required:not(.s-tag.s-tag__deleted__moderator),
5610
+ .s-tag.s-tag__ignored.s-tag__required:not(.s-tag.s-tag__deleted__moderator),
5611
+ .s-tag.s-tag__deleted.s-tag__required:not(.s-tag.s-tag__ignored__moderator),
5612
+ .s-tag.s-tag__ignored.s-tag__required:not(.s-tag.s-tag__ignored__moderator),
5613
+ .s-tag.s-tag__deleted.s-tag__moderator,
5614
+ .s-tag.s-tag__ignored.s-tag__moderator {
5615
+ --_ta-bc-hover: var(--_ta-bc);
5616
+ --_ta-bg-hover: var(--_ta-bg);
5617
+ --_ta-fc-hover: var(--_ta-fc);
5618
+ }
5619
+ .s-tag.s-tag__deleted {
5620
+ --_ta-fc: var(--black-500);
5621
+ }
5622
+ .s-tag.s-tag__deleted.s-tag__required:not(.s-tag.s-tag__deleted__moderator) {
5623
+ --_ta-bc: var(--black-300);
5624
+ --_ta-fc: var(--black-400);
5598
5625
  }
5599
- .s-tag__ignored,
5600
5626
  .s-tag.s-tag__ignored {
5627
+ --_ta-bg-hover: var(--_ta-bg);
5601
5628
  --_ta-before-icon: url("data:image/svg+xml;,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.52 7.38 1.58 9.26A12.38 12.38 0 0 1 0 7s2.63-5.14 7.05-5.14c.66 0 1.28.12 1.86.32L7.44 3.6a3.48 3.48 0 0 0-3.92 3.78ZM5.3 9.99c.5.28 1.1.44 1.71.44 1.94 0 3.5-1.53 3.5-3.43 0-.62-.17-1.21-.47-1.72L8.7 6.6a1.73 1.73 0 0 1-2.08 2.07L5.29 10Zm6.23-6.19A12.7 12.7 0 0 1 14 7s-2.63 5.14-6.95 5.14A6.1 6.1 0 0 1 4 11.3L2.27 13l-1.4-1.36L11.9 1l1.23 1.2-1.6 1.6Z'/%3E%3C/svg%3E");
5629
+ --_ta-fc: var(--black-400);
5630
+ --_ta-fc-hover: var(--black-400);
5602
5631
  }
5603
5632
  .s-tag.s-tag__moderator {
5604
5633
  --_ta-bc: var(--orange-300);
@@ -5609,53 +5638,40 @@ body.theme-highcontrast .s-tag:not(body.theme-highcontrast .s-tag__moderator):no
5609
5638
  --_ta-fc-hover: var(--orange-600);
5610
5639
  }
5611
5640
  .s-tag.s-tag__required:not(.s-tag__moderator) {
5612
- --_ta-bc: var(--theme-tag-required-border-color, var(--theme-tag-border-color, var(--black-400)));
5613
- --_ta-bg: var(--theme-tag-required-background-color, var(--theme-tag-background-color, var(--black-150)));
5614
- --_ta-fc: var(--theme-tag-required-color, var(--theme-tag-color, var(--black-500)));
5641
+ --_ta-bc: var(--theme-tag-required-border-color, var(--theme-tag-border-color, var(--black-500)));
5615
5642
  --_ta-bc-hover: var(--theme-tag-required-hover-border-color, var(--theme-tag-hover-border-color, var(--black-600)));
5616
- --_ta-bg-hover: var(--theme-tag-required-hover-background-color, var(--theme-tag-hover-background-color, var(--black-200)));
5617
- --_ta-fc-hover: var(--theme-tag-required-hover-color, var(--theme-tag-hover-color, var(--black-600)));
5618
5643
  }
5619
- .s-tag__watched,
5620
5644
  .s-tag.s-tag__watched {
5621
- --_ta-before-icon: url("data:image/svg+xml;,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7.05 1C2.63 1 0 6.5 0 6.5S2.63 12 7.05 12C11.38 12 14 6.5 14 6.5S11.37 1 7.05 1ZM7 10.17A3.59 3.59 0 0 1 3.5 6.5 3.6 3.6 0 0 1 7 2.83c1.94 0 3.5 1.65 3.5 3.67A3.57 3.57 0 0 1 7 10.17Zm0-1.84c.97 0 1.75-.81 1.75-1.83S7.97 4.67 7 4.67s-1.75.81-1.75 1.83S6.03 8.33 7 8.33Z'/%3E%3C/svg%3E");
5645
+ --_ta-before-icon: url("data:image/svg+xml;,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12'%3E%3Cpath d='M7.05 1C2.63 1 0 6.5 0 6.5S2.63 12 7.05 12C11.38 12 14 6.5 14 6.5S11.37 1 7.05 1ZM7 10.17A3.59 3.59 0 0 1 3.5 6.5 3.6 3.6 0 0 1 7 2.83c1.94 0 3.5 1.65 3.5 3.67A3.57 3.57 0 0 1 7 10.17Zm0-1.84c.97 0 1.75-.81 1.75-1.83S7.97 4.67 7 4.67s-1.75.81-1.75 1.83S6.03 8.33 7 8.33Z'/%3E%3C/svg%3E");
5622
5646
  }
5623
- .s-tag button.s-tag--dismiss:not(.s-btn) {
5624
- all: unset;
5647
+ .s-tag:has( > .s-tag--dismiss) {
5648
+ --_ta-pr: var(--su2);
5625
5649
  }
5626
- .s-tag .s-tag--dismiss,
5627
- .s-tag button.s-tag--dismiss:not(.s-btn) {
5650
+ .s-tag .s-tag--dismiss {
5651
+ all: unset;
5628
5652
  align-items: center;
5629
- align-self: stretch;
5630
5653
  background-color: transparent;
5631
- border-radius: var(--br-md);
5632
5654
  color: inherit;
5633
5655
  cursor: pointer;
5634
5656
  display: flex;
5635
5657
  justify-content: center;
5636
- margin: var(--su-static1) calc(var(--_ta-dismiss-padding) * -1) var(--su-static1) var(--_ta-dismiss-padding);
5637
- padding: var(--_ta-dismiss-padding);
5658
+ margin: calc(var(--_ta-pt) * -1) 0 calc(var(--_ta-pb) * -1);
5659
+ padding: var(--su2);
5638
5660
  }
5639
- .s-tag .s-tag--dismiss:focus-visible,
5640
- .s-tag button.s-tag--dismiss:not(.s-btn):focus-visible {
5661
+ .s-tag .s-tag--dismiss:focus-visible {
5641
5662
  box-shadow: 0 0 0 var(--su-static2) var(--focus-neutral), 0 0 0 var(--su-static4) var(--focus-theme);
5642
5663
  outline: var(--su-static2) solid transparent !important;
5643
5664
  }
5644
- .s-tag .s-tag--dismiss:hover,
5645
- .s-tag button.s-tag--dismiss:not(.s-btn):hover {
5665
+ .s-tag .s-tag--dismiss:hover {
5646
5666
  background-color: var(--_ta-fc);
5647
5667
  color: var(--_ta-bg);
5648
5668
  }
5649
- body.theme-highcontrast .s-tag .s-tag--dismiss:hover,
5650
- body.theme-highcontrast .s-tag button.s-tag--dismiss:not(.s-btn):hover {
5651
- color: var(--white);
5669
+ .s-tag:has( > .s-tag--sponsor) {
5670
+ --_ta-pl: var(--su2);
5652
5671
  }
5653
5672
  .s-tag .s-tag--sponsor {
5654
- align-self: center;
5655
- border-radius: calc(var(--br-md) - var(--su-static1));
5656
- display: inline-flex;
5657
- margin: calc(var(--su1) * -1) var(--su4) calc(var(--su2) * -1) calc(var(--su2) * -1);
5658
5673
  max-width: calc(var(--su-static16) + var(--su-static2));
5674
+ margin: calc(var(--_ta-pt) * -1) 0 calc(var(--_ta-pb) * -1) 0;
5659
5675
  }
5660
5676
  .s-tag .s-tag--sponsor img,
5661
5677
  .s-tag .s-tag--sponsor .svg-icon {
@@ -5708,20 +5724,20 @@ a.s-tag:active {
5708
5724
  }
5709
5725
  .s-toggle-switch {
5710
5726
  --_ts-bg: var(--black-350);
5711
- --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='hsl(0, 0%, 100%)'/%3e%3c/svg%3e");
5727
+ --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
5712
5728
  --_ts-bg-ps: left center;
5713
5729
  --_ts-multiple-bg: unset;
5714
5730
  --_ts-multiple-fc: var(--black-400);
5715
5731
  }
5716
5732
  @media (prefers-color-scheme: dark) {
5717
5733
  body.theme-system .s-toggle-switch {
5718
- --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='hsl(210, 3.0000000000000027%, 15%)'/%3e%3c/svg%3e");
5734
+ --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23141414'/%3e%3c/svg%3e");
5719
5735
  }
5720
5736
  }
5721
5737
  body.theme-dark .s-toggle-switch,
5722
5738
  .theme-dark__forced .s-toggle-switch,
5723
5739
  body.theme-system .theme-dark__forced .s-toggle-switch {
5724
- --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='hsl(210, 3.0000000000000027%, 15%)'/%3e%3c/svg%3e");
5740
+ --_ts-bg-image: url("data:image/svg+xml;,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23141414'/%3e%3c/svg%3e");
5725
5741
  }
5726
5742
  fieldset[disabled] .s-toggle-switch,
5727
5743
  .s-toggle-switch[disabled],
@@ -5841,13 +5857,13 @@ input[type="checkbox"].s-toggle-switch[disabled] {
5841
5857
  }
5842
5858
  @media (prefers-color-scheme: dark) {
5843
5859
  body.theme-system .s-topbar.s-topbar__light {
5844
- --focus-theme: var(--theme-dark-secondary-custom-200, var(--blue-200));
5860
+ --focus-theme: var(--theme-dark-secondary-custom-200, var(--black-200));
5845
5861
  }
5846
5862
  }
5847
5863
  body.theme-dark .s-topbar.s-topbar__light,
5848
5864
  .theme-dark__forced .s-topbar.s-topbar__light,
5849
5865
  body.theme-system .theme-dark__forced .s-topbar.s-topbar__light {
5850
- --focus-theme: var(--theme-dark-secondary-custom-200, var(--blue-200));
5866
+ --focus-theme: var(--theme-dark-secondary-custom-200, var(--black-200));
5851
5867
  }
5852
5868
  body.theme-highcontrast .s-topbar {
5853
5869
  --_tb-notice-td: underline;
@@ -5864,30 +5880,30 @@ body.theme-highcontrast .s-topbar {
5864
5880
  border-bottom: var(--su-static1) solid currentColor;
5865
5881
  }
5866
5882
  body.theme-highcontrast .s-topbar.s-topbar__dark {
5867
- --focus-theme: hsl(210, 89%, 77%);
5883
+ --focus-theme: #ffffff;
5868
5884
  }
5869
5885
  body.theme-highcontrast .s-topbar__dark {
5870
5886
  --theme-topbar-item-color: var(--_white-static);
5871
5887
  --theme-topbar-item-color-hover: var(--_white-static);
5872
- --theme-topbar-item-background-hover: hsl(210, 8%, 25%);
5888
+ --theme-topbar-item-background-hover: #46484d;
5873
5889
  --theme-topbar-item-color-current: var(--_white-static);
5874
5890
  }
5875
5891
  body.theme-highcontrast .s-topbar__dark .s-badge {
5876
5892
  border-color: currentColor;
5877
5893
  }
5878
5894
  body.theme-highcontrast .s-topbar__light {
5879
- --theme-topbar-item-color: hsl(210, 8%, 5%);
5880
- --theme-topbar-item-color-hover: hsl(210, 8%, 5%);
5881
- --theme-topbar-item-background-hover: hsl(210, 8%, 90%);
5895
+ --theme-topbar-item-color: #211d1e;
5896
+ --theme-topbar-item-color-hover: #211d1e;
5897
+ --theme-topbar-item-background-hover: #dee0e3;
5882
5898
  --theme-topbar-item-color-current: var(--_black-static);
5883
5899
  }
5884
5900
  @media (prefers-color-scheme: dark) {
5885
5901
  body.theme-highcontrast.theme-system .s-topbar.s-topbar__light {
5886
- --focus-theme: var(--blue-200);
5902
+ --focus-theme: var(--black-200);
5887
5903
  }
5888
5904
  }
5889
5905
  body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light {
5890
- --focus-theme: var(--blue-200);
5906
+ --focus-theme: var(--black-200);
5891
5907
  }
5892
5908
  @media (max-width: 640px) {
5893
5909
  .s-topbar {
@@ -5901,11 +5917,11 @@ body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light {
5901
5917
  }
5902
5918
  }
5903
5919
  .s-topbar.s-topbar__light {
5904
- --focus-neutral: hsl(0, 0%, 100%);
5920
+ --focus-neutral: #ffffff;
5905
5921
  }
5906
5922
  .s-topbar.s-topbar__dark {
5907
- --focus-neutral: hsl(210, 8%, 5%);
5908
- --focus-theme: var(--theme-dark-secondary-custom-400, hsl(210, 89%, 77%));
5923
+ --focus-neutral: #211d1e;
5924
+ --focus-theme: var(--theme-dark-secondary-custom-400, #ffffff);
5909
5925
  }
5910
5926
  .s-topbar:has( > .s-topbar--skip-link:focus) {
5911
5927
  border-top: none;
@@ -6231,33 +6247,33 @@ body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light {
6231
6247
  color: var(--black-600);
6232
6248
  }
6233
6249
  .s-topbar__dark {
6234
- --theme-topbar-background-color: hsl(210, 8%, 5%);
6235
- --theme-topbar-bottom-border: var(--su-static1) solid hsl(210, 8%, 5%);
6236
- --theme-topbar-search-color: hsl(0, 0%, 100%);
6237
- --theme-topbar-search-background: hsl(210, 8%, 25%);
6238
- --theme-topbar-search-placeholder: hsl(210, 8%, 85%);
6239
- --theme-topbar-search-border: hsl(210, 8%, 45%);
6240
- --theme-topbar-select-color: hsl(210, 8%, 85%);
6241
- --theme-topbar-select-background: hsl(210, 8%, 35%);
6242
- --theme-topbar-item-color: hsl(210, 8%, 85%);
6250
+ --theme-topbar-background-color: #211d1e;
6251
+ --theme-topbar-bottom-border: var(--su-static1) solid #211d1e;
6252
+ --theme-topbar-search-color: #ffffff;
6253
+ --theme-topbar-search-background: #584c4f;
6254
+ --theme-topbar-search-placeholder: #eceaea;
6255
+ --theme-topbar-search-border: #8d7d81;
6256
+ --theme-topbar-select-color: #eceaea;
6257
+ --theme-topbar-select-background: #736468;
6258
+ --theme-topbar-item-color: #d7d8db;
6243
6259
  --theme-topbar-item-color-hover: var(--_white-static);
6244
- --theme-topbar-item-background-hover: hsl(210, 8%, 25%);
6260
+ --theme-topbar-item-background-hover: #46484d;
6245
6261
  --theme-topbar-item-color-current: var(--_white-static);
6246
6262
  --theme-topbar-accent-border: none;
6247
6263
  --scrollbar: hsla(0, 0%, 100%, 0.2);
6248
6264
  }
6249
6265
  .s-topbar__light {
6250
6266
  --theme-topbar-background-color: var(--_white-static);
6251
- --theme-topbar-bottom-border: var(--su-static1) solid hsl(210, 8%, 85%);
6252
- --theme-topbar-search-color: hsl(210, 8%, 25%);
6267
+ --theme-topbar-bottom-border: var(--su-static1) solid #d7d8db;
6268
+ --theme-topbar-search-color: #46484d;
6253
6269
  --theme-topbar-search-background: var(--_white-static);
6254
- --theme-topbar-search-placeholder: hsl(210, 8%, 42%);
6255
- --theme-topbar-search-border: hsl(210, 9%, 75%);
6256
- --theme-topbar-select-color: hsl(210, 8%, 25%);
6257
- --theme-topbar-select-background: hsl(210, 8%, 90%);
6258
- --theme-topbar-item-color: hsl(210, 8%, 42%);
6259
- --theme-topbar-item-color-hover: hsl(210, 8%, 25%);
6260
- --theme-topbar-item-background-hover: hsl(210, 8%, 90%);
6270
+ --theme-topbar-search-placeholder: #6b6d73;
6271
+ --theme-topbar-search-border: #a7aab0;
6272
+ --theme-topbar-select-color: #46484d;
6273
+ --theme-topbar-select-background: #dee0e3;
6274
+ --theme-topbar-item-color: #6b6d73;
6275
+ --theme-topbar-item-color-hover: #46484d;
6276
+ --theme-topbar-item-background-hover: #dee0e3;
6261
6277
  --theme-topbar-item-color-current: var(--_black-static);
6262
6278
  --scrollbar: hsla(0, 0%, 0%, 0.2);
6263
6279
  }
@@ -6593,31 +6609,31 @@ body {
6593
6609
  --ff-serif: Georgia, Cambria, "Times New Roman", Times, serif;
6594
6610
  --ff-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
6595
6611
  --theme-body-font-family: var(--ff-sans);
6596
- --fs-fine: 11px;
6597
- --fs-caption: 12px;
6598
- --fs-body1: 13px;
6599
- --fs-body2: 1.15384615rem;
6600
- --fs-body3: 1.30769231rem;
6601
- --fs-subheading: 1.46153846rem;
6602
- --fs-title: 1.61538462rem;
6603
- --fs-headline1: 2.07692308rem;
6604
- --fs-headline2: 2.61538461rem;
6605
- --fs-display1: 3.30769231rem;
6606
- --fs-display2: 4.23076923rem;
6607
- --fs-display3: 5.30769231rem;
6608
- --fs-display4: 7.61538461rem;
6609
- --fs-body2-relative: 1.15384615em;
6610
- --fs-body3-relative: 1.30769231em;
6611
- --fs-subheading-relative: 1.46153846em;
6612
- --fs-title-relative: 1.61538462em;
6613
- --fs-headline1-relative: 2.07692308em;
6614
- --fs-headline2-relative: 2.61538461em;
6615
- --fs-display1-relative: 3.30769231em;
6616
- --fs-display2-relative: 4.23076923em;
6617
- --fs-display3-relative: 5.30769231em;
6618
- --fs-display4-relative: 7.61538461em;
6619
- --fs-base: 13px;
6620
- --stacks-internals-lh-unit: 13;
6612
+ --fs-fine: 12px;
6613
+ --fs-caption: 13px;
6614
+ --fs-body1: 14px;
6615
+ --fs-body2: 1.143rem;
6616
+ --fs-body3: 1.286rem;
6617
+ --fs-subheading: 1.429rem;
6618
+ --fs-title: 1.571rem;
6619
+ --fs-headline1: 2rem;
6620
+ --fs-headline2: 2.571rem;
6621
+ --fs-display1: 3.286rem;
6622
+ --fs-display2: 4.143rem;
6623
+ --fs-display3: 5.143rem;
6624
+ --fs-display4: 7.143rem;
6625
+ --fs-body2-relative: 1.143rem;
6626
+ --fs-body3-relative: 1.286rem;
6627
+ --fs-subheading-relative: 1.429rem;
6628
+ --fs-title-relative: 1.571rem;
6629
+ --fs-headline1-relative: 2rem;
6630
+ --fs-headline2-relative: 2.571rem;
6631
+ --fs-display1-relative: 3.286rem;
6632
+ --fs-display2-relative: 4.143rem;
6633
+ --fs-display3-relative: 5.143rem;
6634
+ --fs-display4-relative: 7.143rem;
6635
+ --fs-base: 14px;
6636
+ --stacks-internals-lh-unit: 14;
6621
6637
  --lh-xs: 1;
6622
6638
  --lh-sm: calc((var(--stacks-internals-lh-unit) + 2) / var(--stacks-internals-lh-unit));
6623
6639
  --lh-md: calc((var(--stacks-internals-lh-unit) + 4) / var(--stacks-internals-lh-unit));
@@ -6643,6 +6659,8 @@ body {
6643
6659
  --br-md: calc(var(--su-static4) + var(--su-static6));
6644
6660
  --br-circle: 50%;
6645
6661
  --br-pill: 1000px;
6662
+ --br-sm: var(--br-md);
6663
+ --br-lg: var(--br-md);
6646
6664
  --te-smooth-slow: cubic-bezier(0.25, 0.46, 0.45, 0.94);
6647
6665
  --te-smooth: cubic-bezier(0.165, 0.84, 0.44, 1);
6648
6666
  --te-smooth-quick: cubic-bezier(0.19, 1, 0.22, 1);
@@ -6659,8 +6677,8 @@ body {
6659
6677
  body {
6660
6678
  --_o-disabled: 0.55;
6661
6679
  --_o-disabled-static: 0.55;
6662
- --_black-static: hsl(0, 0%, 0%);
6663
- --_white-static: hsl(0, 0%, 100%);
6680
+ --_black-static: #000000;
6681
+ --_white-static: #ffffff;
6664
6682
  }
6665
6683
  body:not(.theme-dark),
6666
6684
  body.theme-highcontrast:not(.theme-dark),
@@ -6723,55 +6741,61 @@ body:not(.theme-highcontrast).theme-system .theme-light__forced.themed,
6723
6741
  body:not(.theme-highcontrast):not(.theme-dark) .themed,
6724
6742
  body:not(.theme-highcontrast).theme-dark .theme-light__forced .themed,
6725
6743
  body:not(.theme-highcontrast).theme-system .theme-light__forced .themed {
6726
- --white: hsl(0, 0%, 100%);
6727
- --black-050: hsl(0, 0%, 100%);
6728
- --black-100: hsl(210, 8%, 98%);
6729
- --black-150: hsl(210, 8%, 95%);
6730
- --black-200: hsl(210, 8%, 90%);
6731
- --black-225: hsl(210, 8%, 85%);
6732
- --black-250: hsl(210, 8%, 80%);
6733
- --black-300: hsl(210, 9%, 75%);
6734
- --black-350: hsl(210, 8%, 68%);
6735
- --black-400: hsl(210, 8%, 42%);
6736
- --black-500: hsl(210, 8%, 25%);
6737
- --black-600: hsl(210, 8%, 5%);
6738
- --black: hsl(0, 0%, 0%);
6739
- --orange-100: hsl(23, 87%, 97%);
6740
- --orange-200: hsl(27, 87%, 87%);
6741
- --orange-300: hsl(27, 87%, 72%);
6742
- --orange-400: hsl(27, 89%, 48%);
6743
- --orange-500: hsl(27, 87%, 41%);
6744
- --orange-600: hsl(27, 87%, 27%);
6745
- --blue-100: hsl(210, 80%, 96%);
6746
- --blue-200: hsl(210, 80%, 91%);
6747
- --blue-300: hsl(210, 78%, 76%);
6748
- --blue-400: hsl(210, 77%, 46%);
6749
- --blue-500: hsl(210, 77%, 36%);
6750
- --blue-600: hsl(210, 80%, 23%);
6751
- --green-100: hsl(148, 35%, 95%);
6752
- --green-200: hsl(148, 35%, 88%);
6753
- --green-300: hsl(148, 35%, 69%);
6754
- --green-400: hsl(148, 70%, 31%);
6755
- --green-500: hsl(148, 75%, 22%);
6756
- --green-600: hsl(148, 75%, 15%);
6757
- --red-100: hsl(0, 72%, 96%);
6758
- --red-200: hsl(0, 70%, 93%);
6759
- --red-300: hsl(0, 66%, 80%);
6760
- --red-400: hsl(0, 60%, 49%);
6761
- --red-500: hsl(0, 65%, 37%);
6762
- --red-600: hsl(0, 65%, 22%);
6763
- --yellow-100: hsl(43, 85%, 95%);
6764
- --yellow-200: hsl(43, 85%, 88%);
6765
- --yellow-300: hsl(43, 85%, 72%);
6766
- --yellow-400: hsl(43, 85%, 50%);
6767
- --yellow-500: hsl(43, 85%, 33%);
6768
- --yellow-600: hsl(43, 85%, 18%);
6769
- --purple-100: hsl(237, 83%, 98%);
6770
- --purple-200: hsl(237, 78%, 93%);
6771
- --purple-300: hsl(237, 60%, 83%);
6772
- --purple-400: hsl(237, 55%, 57%);
6773
- --purple-500: hsl(237, 50%, 45%);
6774
- --purple-600: hsl(237, 50%, 32%);
6744
+ --white: #ffffff;
6745
+ --black-050: #ffffff;
6746
+ --black-100: #f7f6f5;
6747
+ --black-150: #f0efed;
6748
+ --black-200: #dee0e3;
6749
+ --black-225: #d7d8db;
6750
+ --black-250: #c9ccd1;
6751
+ --black-300: #a7aab0;
6752
+ --black-350: #84878c;
6753
+ --black-400: #6b6d73;
6754
+ --black-500: #46484d;
6755
+ --black-600: #211d1e;
6756
+ --black: #000000;
6757
+ --orange-100: #fff7f2;
6758
+ --orange-200: #ffd5bd;
6759
+ --orange-300: #f59056;
6760
+ --orange-400: #e86113;
6761
+ --orange-500: #bf4904;
6762
+ --orange-600: #702d06;
6763
+ --blue-100: #f0f4ff;
6764
+ --blue-200: #c8d4fa;
6765
+ --blue-300: #88a2f7;
6766
+ --blue-400: #5076f2;
6767
+ --blue-500: #2445b3;
6768
+ --blue-600: #0f2466;
6769
+ --green-100: #f4faeb;
6770
+ --green-200: #cce6a1;
6771
+ --green-300: #9fbf67;
6772
+ --green-400: #6c991f;
6773
+ --green-500: #4d730b;
6774
+ --green-600: #324d04;
6775
+ --red-100: #fceded;
6776
+ --red-200: #f5b9b8;
6777
+ --red-300: #e67373;
6778
+ --red-400: #bf3030;
6779
+ --red-500: #8c0e0e;
6780
+ --red-600: #590404;
6781
+ --yellow-100: #fcf8e8;
6782
+ --yellow-200: #f5e39d;
6783
+ --yellow-300: #edc10e;
6784
+ --yellow-400: #ab8900;
6785
+ --yellow-500: #806600;
6786
+ --yellow-600: #4d3d00;
6787
+ --purple-100: #f0edfc;
6788
+ --purple-200: #d0c6f7;
6789
+ --purple-300: #a591f2;
6790
+ --purple-400: #6e50e6;
6791
+ --purple-500: #4526bf;
6792
+ --purple-600: #200b73;
6793
+ --pink-100: #fbedfc;
6794
+ --pink-200: #ebb6f2;
6795
+ --pink-300: #e685f2;
6796
+ --pink-400: #d34ae8;
6797
+ --pink-500: #a224b3;
6798
+ --pink-600: #670b73;
6775
6799
  --gold-100: hsl(46, 100%, 91%);
6776
6800
  --gold-200: hsl(46, 100%, 74%);
6777
6801
  --gold-300: hsl(45, 100%, 42%);
@@ -6794,14 +6818,14 @@ body:not(.theme-highcontrast).theme-system .theme-light__forced .themed {
6794
6818
  --bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.06), 0 2px 6px hsla(0, 0%, 0%, 0.06), 0 3px 8px hsla(0, 0%, 0%, 0.09);
6795
6819
  --bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.09), 0 3px 8px hsla(0, 0%, 0%, 0.09), 0 4px 13px hsla(0, 0%, 0%, 0.13);
6796
6820
  --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.05), 0 20px 48px hsla(0, 0%, 0%, 0.05), 0 1px 4px hsla(0, 0%, 0%, 0.1);
6797
- --translucent-secondary: var(--theme-secondary-custom-translucent, hsla(206, 100%, 40%, 0.15));
6821
+ --translucent-secondary: var(--theme-secondary-custom-translucent, rgba(115, 115, 115, 0.15));
6798
6822
  --translucent-success: hsla(140, 40%, 75%, 0.4);
6799
6823
  --translucent-warning: hsla(47, 79%, 58%, 0.4);
6800
6824
  --translucent-error: hsla(358, 62%, 47%, 0.15);
6801
6825
  --translucent-muted: hsla(210, 8%, 15%, 0.1);
6802
6826
  --focus-neutral: var(--white);
6803
- --focus-theme: var(--theme-secondary-400);
6804
- --focus-ring: var(--theme-secondary-custom-focus-ring, hsla(206, 100%, 40%, 0.15));
6827
+ --focus-theme: var(--theme-secondary);
6828
+ --focus-ring: var(--theme-secondary-custom-focus-ring, rgba(115, 115, 115, 0.15));
6805
6829
  --focus-ring-success: hsla(140, 40%, 75%, 0.4);
6806
6830
  --focus-ring-warning: hsla(47, 79%, 58%, 0.4);
6807
6831
  --focus-ring-error: hsla(358, 62%, 47%, 0.15);
@@ -6826,13 +6850,13 @@ body:not(.theme-highcontrast).theme-system .theme-light__forced .themed {
6826
6850
  --theme-primary-400: var(--theme-primary-custom-400, var(--orange-400));
6827
6851
  --theme-primary-500: var(--theme-primary-custom-500, var(--orange-500));
6828
6852
  --theme-primary-600: var(--theme-primary-custom-600, var(--orange-600));
6829
- --theme-secondary: var(--theme-secondary-custom, var(--blue-400));
6830
- --theme-secondary-100: var(--theme-secondary-custom-100, var(--blue-100));
6831
- --theme-secondary-200: var(--theme-secondary-custom-200, var(--blue-200));
6832
- --theme-secondary-300: var(--theme-secondary-custom-300, var(--blue-300));
6833
- --theme-secondary-400: var(--theme-secondary-custom-400, var(--blue-400));
6834
- --theme-secondary-500: var(--theme-secondary-custom-500, var(--blue-500));
6835
- --theme-secondary-600: var(--theme-secondary-custom-600, var(--blue-600));
6853
+ --theme-secondary: var(--theme-secondary-custom, var(--black));
6854
+ --theme-secondary-100: var(--theme-secondary-custom-100, var(--black-100));
6855
+ --theme-secondary-200: var(--theme-secondary-custom-200, var(--black-200));
6856
+ --theme-secondary-300: var(--theme-secondary-custom-300, var(--black-300));
6857
+ --theme-secondary-400: var(--theme-secondary-custom-400, var(--black-400));
6858
+ --theme-secondary-500: var(--theme-secondary-custom-500, var(--black-500));
6859
+ --theme-secondary-600: var(--theme-secondary-custom-600, var(--black-600));
6836
6860
  --theme-primary-custom-100: hsl(var(--theme-base-primary-color-h), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-color-l) + ((100% - var(--theme-base-primary-color-l)) * .9)));
6837
6861
  --theme-primary-custom-200: hsl(var(--theme-base-primary-color-h), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-color-l) + ((100% - var(--theme-base-primary-color-l)) * .75)));
6838
6862
  --theme-primary-custom-300: hsl(var(--theme-base-primary-color-h), var(--theme-base-primary-color-s), calc(var(--theme-base-primary-color-l) + ((100% - var(--theme-base-primary-color-l)) * .5)));
@@ -6857,55 +6881,61 @@ body:not(.theme-highcontrast).theme-dark.themed,
6857
6881
  body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced.themed,
6858
6882
  body:not(.theme-highcontrast).theme-dark .themed,
6859
6883
  body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
6860
- --white: hsl(210, 3%, 15%);
6861
- --black-050: hsl(210, 3%, 15%);
6862
- --black-100: hsl(210, 3%, 18%);
6863
- --black-150: hsl(210, 4%, 21%);
6864
- --black-200: hsl(210, 4%, 27%);
6865
- --black-225: hsl(210, 4%, 30%);
6866
- --black-250: hsl(210, 5%, 36%);
6867
- --black-300: hsl(210, 4%, 47%);
6868
- --black-350: hsl(210, 8%, 70%);
6869
- --black-400: hsl(210, 8%, 80%);
6870
- --black-500: hsl(210, 8%, 90%);
6871
- --black-600: hsl(210, 11%, 98%);
6872
- --black: hsl(0, 0%, 100%);
6873
- --orange-100: hsl(27, 55%, 20%);
6874
- --orange-200: hsl(27, 50%, 33%);
6875
- --orange-300: hsl(27, 50%, 43%);
6876
- --orange-400: hsl(27, 90%, 68%);
6877
- --orange-500: hsl(27, 90%, 80%);
6878
- --orange-600: hsl(27, 90%, 90%);
6879
- --blue-100: hsl(210, 50%, 22%);
6880
- --blue-200: hsl(210, 50%, 36%);
6881
- --blue-300: hsl(210, 50%, 48%);
6882
- --blue-400: hsl(210, 89%, 77%);
6883
- --blue-500: hsl(210, 89%, 84%);
6884
- --blue-600: hsl(210, 89%, 92%);
6885
- --green-100: hsl(149, 51%, 15%);
6886
- --green-200: hsl(149, 51%, 25%);
6887
- --green-300: hsl(149, 51%, 36%);
6888
- --green-400: hsl(149, 50%, 62%);
6889
- --green-500: hsl(149, 50%, 74%);
6890
- --green-600: hsl(149, 50%, 88%);
6891
- --red-100: hsl(0, 43%, 22%);
6892
- --red-200: hsl(0, 43%, 41%);
6893
- --red-300: hsl(0, 43%, 56%);
6894
- --red-400: hsl(0, 90%, 81%);
6895
- --red-500: hsl(0, 90%, 88%);
6896
- --red-600: hsl(0, 90%, 94%);
6897
- --yellow-100: hsl(43, 50%, 17%);
6898
- --yellow-200: hsl(43, 50%, 28%);
6899
- --yellow-300: hsl(43, 50%, 39%);
6900
- --yellow-400: hsl(43, 90%, 75%);
6901
- --yellow-500: hsl(43, 90%, 82%);
6902
- --yellow-600: hsl(43, 90%, 91%);
6903
- --purple-100: hsl(237, 26%, 23%);
6904
- --purple-200: hsl(237, 26%, 44%);
6905
- --purple-300: hsl(237, 26%, 56%);
6906
- --purple-400: hsl(237, 98%, 87%);
6907
- --purple-500: hsl(237, 98%, 92%);
6908
- --purple-600: hsl(237, 98%, 96%);
6884
+ --white: #141414;
6885
+ --black-050: #141414;
6886
+ --black-100: #262626;
6887
+ --black-150: #333333;
6888
+ --black-200: #575757;
6889
+ --black-225: #666666;
6890
+ --black-250: #737373;
6891
+ --black-300: #8c8c8c;
6892
+ --black-350: #a6a6a6;
6893
+ --black-400: #d9d3ce;
6894
+ --black-500: #f2ede9;
6895
+ --black-600: #ffffff;
6896
+ --black: #ffffff;
6897
+ --orange-100: #401f0d;
6898
+ --orange-200: #733c1c;
6899
+ --orange-300: #c78c69;
6900
+ --orange-400: #e6ab8a;
6901
+ --orange-500: #fcccb1;
6902
+ --orange-600: #fadac8;
6903
+ --blue-100: #22304d;
6904
+ --blue-200: #4d6699;
6905
+ --blue-300: #7b9de0;
6906
+ --blue-400: #a6c3ff;
6907
+ --blue-500: #ccddff;
6908
+ --blue-600: #e6eeff;
6909
+ --green-100: #28380b;
6910
+ --green-200: #5c7334;
6911
+ --green-300: #96b364;
6912
+ --green-400: #c4e68a;
6913
+ --green-500: #cce6a1;
6914
+ --green-600: #ecffcc;
6915
+ --red-100: #330f0f;
6916
+ --red-200: #662e2e;
6917
+ --red-300: #b35d5d;
6918
+ --red-400: #faafaf;
6919
+ --red-500: #fccaca;
6920
+ --red-600: #ffe6e6;
6921
+ --yellow-100: #332b0a;
6922
+ --yellow-200: #594c16;
6923
+ --yellow-300: #a6944b;
6924
+ --yellow-400: #e6d17e;
6925
+ --yellow-500: #e3d59f;
6926
+ --yellow-600: #fffae6;
6927
+ --purple-100: #22174d;
6928
+ --purple-200: #3d2d80;
6929
+ --purple-300: #7262b3;
6930
+ --purple-400: #b6a6f7;
6931
+ --purple-500: #d2c8fa;
6932
+ --purple-600: #e8e3fc;
6933
+ --pink-100: #2e0a33;
6934
+ --pink-200: #5e2466;
6935
+ --pink-300: #bf81c7;
6936
+ --pink-400: #f3bbfa;
6937
+ --pink-500: #f7cffc;
6938
+ --pink-600: #fae3fc;
6909
6939
  --gold-100: hsl(45, 29%, 24%);
6910
6940
  --gold-200: hsl(45, 47%, 37%);
6911
6941
  --gold-300: hsl(45, 92%, 62%);
@@ -6928,14 +6958,14 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
6928
6958
  --bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.11), 0 2px 6px hsla(0, 0%, 0%, 0.11), 0 3px 8px hsla(0, 0%, 0%, 0.14);
6929
6959
  --bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.14), 0 3px 8px hsla(0, 0%, 0%, 0.14), 0 4px 13px hsla(0, 0%, 0%, 0.18);
6930
6960
  --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.1), 0 20px 48px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.15);
6931
- --translucent-secondary: var(--theme-dark-secondary-custom-translucent, hsla(206, 100%, 40%, 0.25));
6961
+ --translucent-secondary: var(--theme-dark-secondary-custom-translucent, rgba(217, 211, 206, 0.25));
6932
6962
  --translucent-success: hsla(140, 40%, 75%, 0.4);
6933
6963
  --translucent-warning: hsla(47, 79%, 58%, 0.4);
6934
6964
  --translucent-error: hsla(358, 62%, 47%, 0.15);
6935
6965
  --translucent-muted: hsla(210, 8%, 15%, 0.1);
6936
6966
  --focus-neutral: var(--white);
6937
- --focus-theme: var(--theme-secondary-400);
6938
- --focus-ring: var(--theme-dark-secondary-custom-focus-ring, hsla(206, 100%, 40%, 0.25));
6967
+ --focus-theme: var(--theme-secondary);
6968
+ --focus-ring: var(--theme-dark-secondary-custom-focus-ring, rgba(217, 211, 206, 0.25));
6939
6969
  --focus-ring-success: hsla(140, 40%, 75%, 0.4);
6940
6970
  --focus-ring-warning: hsla(47, 79%, 58%, 0.4);
6941
6971
  --focus-ring-error: hsla(358, 62%, 47%, 0.15);
@@ -6960,13 +6990,13 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
6960
6990
  --theme-primary-400: var(--theme-dark-primary-custom-400, var(--orange-400));
6961
6991
  --theme-primary-500: var(--theme-dark-primary-custom-500, var(--orange-500));
6962
6992
  --theme-primary-600: var(--theme-dark-primary-custom-600, var(--orange-600));
6963
- --theme-secondary: var(--theme-dark-secondary-custom, var(--blue-400));
6964
- --theme-secondary-100: var(--theme-dark-secondary-custom-100, var(--blue-100));
6965
- --theme-secondary-200: var(--theme-dark-secondary-custom-200, var(--blue-200));
6966
- --theme-secondary-300: var(--theme-dark-secondary-custom-300, var(--blue-300));
6967
- --theme-secondary-400: var(--theme-dark-secondary-custom-400, var(--blue-400));
6968
- --theme-secondary-500: var(--theme-dark-secondary-custom-500, var(--blue-500));
6969
- --theme-secondary-600: var(--theme-dark-secondary-custom-600, var(--blue-600));
6993
+ --theme-secondary: var(--theme-dark-secondary-custom, var(--black));
6994
+ --theme-secondary-100: var(--theme-dark-secondary-custom-100, var(--black-100));
6995
+ --theme-secondary-200: var(--theme-dark-secondary-custom-200, var(--black-200));
6996
+ --theme-secondary-300: var(--theme-dark-secondary-custom-300, var(--black-300));
6997
+ --theme-secondary-400: var(--theme-dark-secondary-custom-400, var(--black-400));
6998
+ --theme-secondary-500: var(--theme-dark-secondary-custom-500, var(--black-500));
6999
+ --theme-secondary-600: var(--theme-dark-secondary-custom-600, var(--black-600));
6970
7000
  --theme-dark-primary-custom-100: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.6)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.7)));
6971
7001
  --theme-dark-primary-custom-200: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.4)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.5)));
6972
7002
  --theme-dark-primary-custom-300: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.3)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.2)));
@@ -6989,55 +7019,61 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
6989
7019
  body:not(.theme-highcontrast).theme-system,
6990
7020
  body:not(.theme-highcontrast).theme-system.themed,
6991
7021
  body:not(.theme-highcontrast).theme-system .themed {
6992
- --white: hsl(210, 3%, 15%);
6993
- --black-050: hsl(210, 3%, 15%);
6994
- --black-100: hsl(210, 3%, 18%);
6995
- --black-150: hsl(210, 4%, 21%);
6996
- --black-200: hsl(210, 4%, 27%);
6997
- --black-225: hsl(210, 4%, 30%);
6998
- --black-250: hsl(210, 5%, 36%);
6999
- --black-300: hsl(210, 4%, 47%);
7000
- --black-350: hsl(210, 8%, 70%);
7001
- --black-400: hsl(210, 8%, 80%);
7002
- --black-500: hsl(210, 8%, 90%);
7003
- --black-600: hsl(210, 11%, 98%);
7004
- --black: hsl(0, 0%, 100%);
7005
- --orange-100: hsl(27, 55%, 20%);
7006
- --orange-200: hsl(27, 50%, 33%);
7007
- --orange-300: hsl(27, 50%, 43%);
7008
- --orange-400: hsl(27, 90%, 68%);
7009
- --orange-500: hsl(27, 90%, 80%);
7010
- --orange-600: hsl(27, 90%, 90%);
7011
- --blue-100: hsl(210, 50%, 22%);
7012
- --blue-200: hsl(210, 50%, 36%);
7013
- --blue-300: hsl(210, 50%, 48%);
7014
- --blue-400: hsl(210, 89%, 77%);
7015
- --blue-500: hsl(210, 89%, 84%);
7016
- --blue-600: hsl(210, 89%, 92%);
7017
- --green-100: hsl(149, 51%, 15%);
7018
- --green-200: hsl(149, 51%, 25%);
7019
- --green-300: hsl(149, 51%, 36%);
7020
- --green-400: hsl(149, 50%, 62%);
7021
- --green-500: hsl(149, 50%, 74%);
7022
- --green-600: hsl(149, 50%, 88%);
7023
- --red-100: hsl(0, 43%, 22%);
7024
- --red-200: hsl(0, 43%, 41%);
7025
- --red-300: hsl(0, 43%, 56%);
7026
- --red-400: hsl(0, 90%, 81%);
7027
- --red-500: hsl(0, 90%, 88%);
7028
- --red-600: hsl(0, 90%, 94%);
7029
- --yellow-100: hsl(43, 50%, 17%);
7030
- --yellow-200: hsl(43, 50%, 28%);
7031
- --yellow-300: hsl(43, 50%, 39%);
7032
- --yellow-400: hsl(43, 90%, 75%);
7033
- --yellow-500: hsl(43, 90%, 82%);
7034
- --yellow-600: hsl(43, 90%, 91%);
7035
- --purple-100: hsl(237, 26%, 23%);
7036
- --purple-200: hsl(237, 26%, 44%);
7037
- --purple-300: hsl(237, 26%, 56%);
7038
- --purple-400: hsl(237, 98%, 87%);
7039
- --purple-500: hsl(237, 98%, 92%);
7040
- --purple-600: hsl(237, 98%, 96%);
7022
+ --white: #141414;
7023
+ --black-050: #141414;
7024
+ --black-100: #262626;
7025
+ --black-150: #333333;
7026
+ --black-200: #575757;
7027
+ --black-225: #666666;
7028
+ --black-250: #737373;
7029
+ --black-300: #8c8c8c;
7030
+ --black-350: #a6a6a6;
7031
+ --black-400: #d9d3ce;
7032
+ --black-500: #f2ede9;
7033
+ --black-600: #ffffff;
7034
+ --black: #ffffff;
7035
+ --orange-100: #401f0d;
7036
+ --orange-200: #733c1c;
7037
+ --orange-300: #c78c69;
7038
+ --orange-400: #e6ab8a;
7039
+ --orange-500: #fcccb1;
7040
+ --orange-600: #fadac8;
7041
+ --blue-100: #22304d;
7042
+ --blue-200: #4d6699;
7043
+ --blue-300: #7b9de0;
7044
+ --blue-400: #a6c3ff;
7045
+ --blue-500: #ccddff;
7046
+ --blue-600: #e6eeff;
7047
+ --green-100: #28380b;
7048
+ --green-200: #5c7334;
7049
+ --green-300: #96b364;
7050
+ --green-400: #c4e68a;
7051
+ --green-500: #cce6a1;
7052
+ --green-600: #ecffcc;
7053
+ --red-100: #330f0f;
7054
+ --red-200: #662e2e;
7055
+ --red-300: #b35d5d;
7056
+ --red-400: #faafaf;
7057
+ --red-500: #fccaca;
7058
+ --red-600: #ffe6e6;
7059
+ --yellow-100: #332b0a;
7060
+ --yellow-200: #594c16;
7061
+ --yellow-300: #a6944b;
7062
+ --yellow-400: #e6d17e;
7063
+ --yellow-500: #e3d59f;
7064
+ --yellow-600: #fffae6;
7065
+ --purple-100: #22174d;
7066
+ --purple-200: #3d2d80;
7067
+ --purple-300: #7262b3;
7068
+ --purple-400: #b6a6f7;
7069
+ --purple-500: #d2c8fa;
7070
+ --purple-600: #e8e3fc;
7071
+ --pink-100: #2e0a33;
7072
+ --pink-200: #5e2466;
7073
+ --pink-300: #bf81c7;
7074
+ --pink-400: #f3bbfa;
7075
+ --pink-500: #f7cffc;
7076
+ --pink-600: #fae3fc;
7041
7077
  --gold-100: hsl(45, 29%, 24%);
7042
7078
  --gold-200: hsl(45, 47%, 37%);
7043
7079
  --gold-300: hsl(45, 92%, 62%);
@@ -7060,14 +7096,14 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
7060
7096
  --bs-md: 0 1px 3px hsla(0, 0%, 0%, 0.11), 0 2px 6px hsla(0, 0%, 0%, 0.11), 0 3px 8px hsla(0, 0%, 0%, 0.14);
7061
7097
  --bs-lg: 0 1px 4px hsla(0, 0%, 0%, 0.14), 0 3px 8px hsla(0, 0%, 0%, 0.14), 0 4px 13px hsla(0, 0%, 0%, 0.18);
7062
7098
  --bs-xl: 0 10px 24px hsla(0, 0%, 0%, 0.1), 0 20px 48px hsla(0, 0%, 0%, 0.1), 0 1px 4px hsla(0, 0%, 0%, 0.15);
7063
- --translucent-secondary: var(--theme-dark-secondary-custom-translucent, hsla(206, 100%, 40%, 0.25));
7099
+ --translucent-secondary: var(--theme-dark-secondary-custom-translucent, rgba(217, 211, 206, 0.25));
7064
7100
  --translucent-success: hsla(140, 40%, 75%, 0.4);
7065
7101
  --translucent-warning: hsla(47, 79%, 58%, 0.4);
7066
7102
  --translucent-error: hsla(358, 62%, 47%, 0.15);
7067
7103
  --translucent-muted: hsla(210, 8%, 15%, 0.1);
7068
7104
  --focus-neutral: var(--white);
7069
- --focus-theme: var(--theme-secondary-400);
7070
- --focus-ring: var(--theme-dark-secondary-custom-focus-ring, hsla(206, 100%, 40%, 0.25));
7105
+ --focus-theme: var(--theme-secondary);
7106
+ --focus-ring: var(--theme-dark-secondary-custom-focus-ring, rgba(217, 211, 206, 0.25));
7071
7107
  --focus-ring-success: hsla(140, 40%, 75%, 0.4);
7072
7108
  --focus-ring-warning: hsla(47, 79%, 58%, 0.4);
7073
7109
  --focus-ring-error: hsla(358, 62%, 47%, 0.15);
@@ -7092,13 +7128,13 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
7092
7128
  --theme-primary-400: var(--theme-dark-primary-custom-400, var(--orange-400));
7093
7129
  --theme-primary-500: var(--theme-dark-primary-custom-500, var(--orange-500));
7094
7130
  --theme-primary-600: var(--theme-dark-primary-custom-600, var(--orange-600));
7095
- --theme-secondary: var(--theme-dark-secondary-custom, var(--blue-400));
7096
- --theme-secondary-100: var(--theme-dark-secondary-custom-100, var(--blue-100));
7097
- --theme-secondary-200: var(--theme-dark-secondary-custom-200, var(--blue-200));
7098
- --theme-secondary-300: var(--theme-dark-secondary-custom-300, var(--blue-300));
7099
- --theme-secondary-400: var(--theme-dark-secondary-custom-400, var(--blue-400));
7100
- --theme-secondary-500: var(--theme-dark-secondary-custom-500, var(--blue-500));
7101
- --theme-secondary-600: var(--theme-dark-secondary-custom-600, var(--blue-600));
7131
+ --theme-secondary: var(--theme-dark-secondary-custom, var(--black));
7132
+ --theme-secondary-100: var(--theme-dark-secondary-custom-100, var(--black-100));
7133
+ --theme-secondary-200: var(--theme-dark-secondary-custom-200, var(--black-200));
7134
+ --theme-secondary-300: var(--theme-dark-secondary-custom-300, var(--black-300));
7135
+ --theme-secondary-400: var(--theme-dark-secondary-custom-400, var(--black-400));
7136
+ --theme-secondary-500: var(--theme-dark-secondary-custom-500, var(--black-500));
7137
+ --theme-secondary-600: var(--theme-dark-secondary-custom-600, var(--black-600));
7102
7138
  --theme-dark-primary-custom-100: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.6)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.7)));
7103
7139
  --theme-dark-primary-custom-200: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.4)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.5)));
7104
7140
  --theme-dark-primary-custom-300: hsl(var(--theme-dark-primary-color-h), calc(var(--theme-dark-primary-color-s) + (var(--theme-dark-primary-color-s) * -.3)), calc(var(--theme-dark-primary-color-l) + (var(--theme-dark-primary-color-l) * -.2)));
@@ -7121,55 +7157,61 @@ body:not(.theme-highcontrast):not(.theme-dark) .theme-dark__forced .themed {
7121
7157
  body.theme-highcontrast:not(.theme-dark),
7122
7158
  body.theme-highcontrast.theme-dark .theme-light__forced,
7123
7159
  body.theme-highcontrast.theme-system .theme-light__forced {
7124
- --white: hsl(0, 0%, 100%);
7125
- --black-050: hsl(0, 0%, 100%);
7126
- --black-100: hsl(210, 8%, 98%);
7127
- --black-150: hsl(210, 8%, 95%);
7128
- --black-200: hsl(210, 8%, 90%);
7129
- --black-225: hsl(210, 8%, 85%);
7130
- --black-250: hsl(210, 8%, 80%);
7131
- --black-300: hsl(210, 9%, 75%);
7132
- --black-350: hsl(210, 8%, 45%);
7133
- --black-400: hsl(212, 8%, 35%);
7134
- --black-500: hsl(210, 8%, 25%);
7135
- --black-600: hsl(210, 8%, 5%);
7136
- --black: hsl(0, 0%, 0%);
7137
- --orange-100: hsl(23, 87%, 97%);
7138
- --orange-200: hsl(23, 87%, 97%);
7139
- --orange-300: hsl(27, 89%, 48%);
7140
- --orange-400: hsl(27, 87%, 29%);
7141
- --orange-500: hsl(27, 87%, 21%);
7142
- --orange-600: hsl(27, 87%, 21%);
7143
- --blue-100: hsl(210, 80%, 96%);
7144
- --blue-200: hsl(210, 80%, 96%);
7145
- --blue-300: hsl(210, 70%, 48%);
7146
- --blue-400: hsl(210, 77%, 34%);
7147
- --blue-500: hsl(210, 80%, 23%);
7148
- --blue-600: hsl(210, 80%, 23%);
7149
- --green-100: hsl(147, 36%, 95%);
7150
- --green-200: hsl(147, 36%, 95%);
7151
- --green-300: hsl(148, 70%, 31%);
7152
- --green-400: hsl(148, 75%, 22%);
7153
- --green-500: hsl(146, 74%, 15%);
7154
- --green-600: hsl(146, 74%, 15%);
7155
- --red-100: hsl(0, 80%, 96%);
7156
- --red-200: hsl(0, 80%, 96%);
7157
- --red-300: hsl(0, 60%, 49%);
7158
- --red-400: hsl(0, 65%, 37%);
7159
- --red-500: hsl(0, 65%, 22%);
7160
- --red-600: hsl(0, 65%, 22%);
7161
- --yellow-100: hsl(41, 85%, 95%);
7162
- --yellow-200: hsl(41, 85%, 95%);
7163
- --yellow-300: hsl(43, 85%, 50%);
7164
- --yellow-400: hsl(43, 85%, 50%);
7165
- --yellow-500: hsl(48, 85%, 18%);
7166
- --yellow-600: hsl(48, 85%, 18%);
7167
- --purple-100: hsl(237, 83%, 98%);
7168
- --purple-200: hsl(237, 83%, 98%);
7169
- --purple-300: hsl(237, 55%, 57%);
7170
- --purple-400: hsl(237, 52%, 48%);
7171
- --purple-500: hsl(237, 50%, 32%);
7172
- --purple-600: hsl(237, 50%, 32%);
7160
+ --white: #ffffff;
7161
+ --black-050: #ffffff;
7162
+ --black-100: #f7f6f5;
7163
+ --black-150: #f0efed;
7164
+ --black-200: #dee0e3;
7165
+ --black-225: #d7d8db;
7166
+ --black-250: #c9ccd1;
7167
+ --black-300: #91939c;
7168
+ --black-350: #54585c;
7169
+ --black-400: #545759;
7170
+ --black-500: #46484d;
7171
+ --black-600: #211d1e;
7172
+ --black: #000000;
7173
+ --orange-100: #fff7f2;
7174
+ --orange-200: #fff7f2;
7175
+ --orange-300: #e86113;
7176
+ --orange-400: #963903;
7177
+ --orange-500: #6e2c05;
7178
+ --orange-600: #6e2c05;
7179
+ --blue-100: #f0f4ff;
7180
+ --blue-200: #f0f4ff;
7181
+ --blue-300: #5076f2;
7182
+ --blue-400: #2445b3;
7183
+ --blue-500: #0f2466;
7184
+ --blue-600: #0f2466;
7185
+ --green-100: #f4faeb;
7186
+ --green-200: #f4faeb;
7187
+ --green-300: #72a120;
7188
+ --green-400: #406107;
7189
+ --green-500: #324d04;
7190
+ --green-600: #324d04;
7191
+ --red-100: #fceded;
7192
+ --red-200: #fceded;
7193
+ --red-300: #bf3030;
7194
+ --red-400: #8c0e0e;
7195
+ --red-500: #590404;
7196
+ --red-600: #590404;
7197
+ --yellow-100: #fcf8e8;
7198
+ --yellow-200: #fcf8e8;
7199
+ --yellow-300: #ab8900;
7200
+ --yellow-400: #6b5600;
7201
+ --yellow-500: #4d3d00;
7202
+ --yellow-600: #4d3d00;
7203
+ --purple-100: #f0edfc;
7204
+ --purple-200: #f0edfc;
7205
+ --purple-300: #6e50e6;
7206
+ --purple-400: #4526bf;
7207
+ --purple-500: #200b73;
7208
+ --purple-600: #200b73;
7209
+ --pink-100: #fbedfc;
7210
+ --pink-200: #fbedfc;
7211
+ --pink-300: #d34ae8;
7212
+ --pink-400: #8f209e;
7213
+ --pink-500: #670b73;
7214
+ --pink-600: #670b73;
7173
7215
  --gold-100: hsl(46, 100%, 91%);
7174
7216
  --gold-200: hsl(46, 100%, 91%);
7175
7217
  --gold-300: hsl(45, 100%, 42%);
@@ -7192,14 +7234,14 @@ body.theme-highcontrast.theme-system .theme-light__forced {
7192
7234
  --bs-md: none;
7193
7235
  --bs-lg: none;
7194
7236
  --bs-xl: none;
7195
- --translucent-secondary: hsla(206, 100%, 40%, 0.9);
7237
+ --translucent-secondary: hsla(204, 6%, 35%, 0.9);
7196
7238
  --translucent-success: hsla(140, 40%, 40%, 0.9);
7197
7239
  --translucent-warning: hsla(47, 76%, 46%, 0.9);
7198
7240
  --translucent-error: hsla(358, 62%, 47%, 0.9);
7199
7241
  --translucent-muted: hsla(210, 8%, 55%, 0.95);
7200
7242
  --focus-neutral: var(--white);
7201
- --focus-theme: var(--theme-secondary-400);
7202
- --focus-ring: hsla(206, 100%, 40%, 0.9);
7243
+ --focus-theme: var(--theme-secondary);
7244
+ --focus-ring: rgba(115, 115, 115, 0.9);
7203
7245
  --focus-ring-success: hsla(140, 40%, 40%, 0.9);
7204
7246
  --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
7205
7247
  --focus-ring-error: hsla(358, 62%, 47%, 0.9);
@@ -7224,66 +7266,72 @@ body.theme-highcontrast.theme-system .theme-light__forced {
7224
7266
  --theme-primary-400: var(--orange-400);
7225
7267
  --theme-primary-500: var(--orange-500);
7226
7268
  --theme-primary-600: var(--orange-600);
7227
- --theme-secondary: var(--blue-400);
7228
- --theme-secondary-100: var(--blue-100);
7229
- --theme-secondary-200: var(--blue-200);
7230
- --theme-secondary-300: var(--blue-300);
7231
- --theme-secondary-400: var(--blue-400);
7232
- --theme-secondary-500: var(--blue-500);
7233
- --theme-secondary-600: var(--blue-600);
7269
+ --theme-secondary: var(--black);
7270
+ --theme-secondary-100: var(--black-100);
7271
+ --theme-secondary-200: var(--black-200);
7272
+ --theme-secondary-300: var(--black-300);
7273
+ --theme-secondary-400: var(--black-400);
7274
+ --theme-secondary-500: var(--black-500);
7275
+ --theme-secondary-600: var(--black-600);
7234
7276
  --_o-disabled: 0.8;
7235
7277
  }
7236
7278
  body.theme-highcontrast.theme-dark,
7237
7279
  body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7238
- --white: hsl(0, 0%, 0%);
7239
- --black-050: hsl(210, 3%, 15%);
7240
- --black-100: hsl(210, 3%, 18%);
7241
- --black-150: hsl(210, 4%, 21%);
7242
- --black-200: hsl(210, 4%, 27%);
7243
- --black-225: hsl(210, 4%, 30%);
7244
- --black-250: hsl(210, 5%, 36%);
7245
- --black-300: hsl(210, 4%, 47%);
7246
- --black-350: hsl(210, 10%, 74%);
7247
- --black-400: hsl(210, 8%, 80%);
7248
- --black-500: hsl(210, 8%, 90%);
7249
- --black-600: hsl(210, 11%, 98%);
7250
- --black: hsl(0, 0%, 100%);
7251
- --orange-100: hsl(27, 30%, 19%);
7252
- --orange-200: hsl(27, 30%, 19%);
7253
- --orange-300: hsl(27, 80%, 72%);
7254
- --orange-400: hsl(27, 80%, 72%);
7255
- --orange-500: hsl(28, 78%, 93%);
7256
- --orange-600: hsl(28, 78%, 93%);
7257
- --blue-100: hsl(209, 30%, 19%);
7258
- --blue-200: hsl(209, 30%, 19%);
7259
- --blue-300: hsl(210, 80%, 72%);
7260
- --blue-400: hsl(210, 80%, 75%);
7261
- --blue-500: hsl(210, 78%, 93%);
7262
- --blue-600: hsl(210, 78%, 93%);
7263
- --green-100: hsl(147, 30%, 19%);
7264
- --green-200: hsl(147, 30%, 19%);
7265
- --green-300: hsl(148, 40%, 62%);
7266
- --green-400: hsl(148, 40%, 68%);
7267
- --green-500: hsl(150, 39%, 93%);
7268
- --green-600: hsl(150, 39%, 93%);
7269
- --red-100: hsl(358, 30%, 19%);
7270
- --red-200: hsl(358, 30%, 19%);
7271
- --red-300: hsl(0, 75%, 77%);
7272
- --red-400: hsl(0, 73%, 80%);
7273
- --red-500: hsl(0, 76%, 95%);
7274
- --red-600: hsl(0, 76%, 95%);
7275
- --yellow-100: hsl(43, 29%, 17%);
7276
- --yellow-200: hsl(43, 29%, 17%);
7277
- --yellow-300: hsl(43, 75%, 75%);
7278
- --yellow-400: hsl(43, 75%, 75%);
7279
- --yellow-500: hsl(48, 74%, 91%);
7280
- --yellow-600: hsl(44, 74%, 91%);
7281
- --purple-100: hsl(237, 26%, 23%);
7282
- --purple-200: hsl(237, 26%, 23%);
7283
- --purple-300: hsl(237, 98%, 87%);
7284
- --purple-400: hsl(237, 98%, 87%);
7285
- --purple-500: hsl(237, 98%, 96%);
7286
- --purple-600: hsl(237, 98%, 96%);
7280
+ --white: #000000;
7281
+ --black-050: #141414;
7282
+ --black-100: #262626;
7283
+ --black-150: #333333;
7284
+ --black-200: #575757;
7285
+ --black-225: #666666;
7286
+ --black-250: #737373;
7287
+ --black-300: #8c8c8c;
7288
+ --black-350: #a6a6a6;
7289
+ --black-400: #d9d3ce;
7290
+ --black-500: #f2ede9;
7291
+ --black-600: #ffffff;
7292
+ --black: #ffffff;
7293
+ --orange-100: #401f0d;
7294
+ --orange-200: #401f0d;
7295
+ --orange-300: #dead90;
7296
+ --orange-400: #fcccb1;
7297
+ --orange-500: #fadac8;
7298
+ --orange-600: #fadac8;
7299
+ --blue-100: #22304d;
7300
+ --blue-200: #22304d;
7301
+ --blue-300: #a6c3ff;
7302
+ --blue-400: #ccddff;
7303
+ --blue-500: #e6eeff;
7304
+ --blue-600: #e6eeff;
7305
+ --green-100: #28380b;
7306
+ --green-200: #28380b;
7307
+ --green-300: #c4e68a;
7308
+ --green-400: #cce6a1;
7309
+ --green-500: #ecffcc;
7310
+ --green-600: #ecffcc;
7311
+ --red-100: #330f0f;
7312
+ --red-200: #330f0f;
7313
+ --red-300: #faafaf;
7314
+ --red-400: #fccaca;
7315
+ --red-500: #ffe6e6;
7316
+ --red-600: #ffe6e6;
7317
+ --yellow-100: #332b0a;
7318
+ --yellow-200: #332b0a;
7319
+ --yellow-300: #e6d17e;
7320
+ --yellow-400: #e3d59f;
7321
+ --yellow-500: #fffae6;
7322
+ --yellow-600: #fffae6;
7323
+ --purple-100: #22174d;
7324
+ --purple-200: #22174d;
7325
+ --purple-300: #b6a6f7;
7326
+ --purple-400: #d2c8fa;
7327
+ --purple-500: #e8e3fc;
7328
+ --purple-600: #e8e3fc;
7329
+ --pink-100: #2e0a33;
7330
+ --pink-200: #2e0a33;
7331
+ --pink-300: #f3bbfa;
7332
+ --pink-400: #f7cffc;
7333
+ --pink-500: #fae3fc;
7334
+ --pink-600: #fae3fc;
7287
7335
  --gold-100: hsl(45, 22%, 25%);
7288
7336
  --gold-200: hsl(45, 22%, 25%);
7289
7337
  --gold-300: hsl(45, 92%, 62%);
@@ -7306,14 +7354,14 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7306
7354
  --bs-md: none;
7307
7355
  --bs-lg: none;
7308
7356
  --bs-xl: none;
7309
- --translucent-secondary: hsla(206, 100%, 40%, 0.9);
7357
+ --translucent-secondary: hsla(204, 6%, 35%, 0.9);
7310
7358
  --translucent-success: hsla(140, 40%, 40%, 0.9);
7311
7359
  --translucent-warning: hsla(47, 76%, 46%, 0.9);
7312
7360
  --translucent-error: hsla(358, 62%, 47%, 0.9);
7313
7361
  --translucent-muted: hsla(210, 8%, 55%, 0.95);
7314
7362
  --focus-neutral: var(--white);
7315
- --focus-theme: var(--theme-secondary-400);
7316
- --focus-ring: hsla(206, 100%, 40%, 0.9);
7363
+ --focus-theme: var(--theme-secondary);
7364
+ --focus-ring: rgba(115, 115, 115, 0.9);
7317
7365
  --focus-ring-success: hsla(140, 40%, 40%, 0.9);
7318
7366
  --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
7319
7367
  --focus-ring-error: hsla(358, 62%, 47%, 0.9);
@@ -7338,66 +7386,72 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7338
7386
  --theme-primary-400: var(--orange-400);
7339
7387
  --theme-primary-500: var(--orange-500);
7340
7388
  --theme-primary-600: var(--orange-600);
7341
- --theme-secondary: var(--blue-400);
7342
- --theme-secondary-100: var(--blue-100);
7343
- --theme-secondary-200: var(--blue-200);
7344
- --theme-secondary-300: var(--blue-300);
7345
- --theme-secondary-400: var(--blue-400);
7346
- --theme-secondary-500: var(--blue-500);
7347
- --theme-secondary-600: var(--blue-600);
7389
+ --theme-secondary: var(--black);
7390
+ --theme-secondary-100: var(--black-100);
7391
+ --theme-secondary-200: var(--black-200);
7392
+ --theme-secondary-300: var(--black-300);
7393
+ --theme-secondary-400: var(--black-400);
7394
+ --theme-secondary-500: var(--black-500);
7395
+ --theme-secondary-600: var(--black-600);
7348
7396
  --_o-disabled: 0.8;
7349
7397
  }
7350
7398
  @media (prefers-color-scheme: dark) {
7351
7399
  body.theme-highcontrast.theme-system {
7352
- --white: hsl(0, 0%, 0%);
7353
- --black-050: hsl(210, 3%, 15%);
7354
- --black-100: hsl(210, 3%, 18%);
7355
- --black-150: hsl(210, 4%, 21%);
7356
- --black-200: hsl(210, 4%, 27%);
7357
- --black-225: hsl(210, 4%, 30%);
7358
- --black-250: hsl(210, 5%, 36%);
7359
- --black-300: hsl(210, 4%, 47%);
7360
- --black-350: hsl(210, 10%, 74%);
7361
- --black-400: hsl(210, 8%, 80%);
7362
- --black-500: hsl(210, 8%, 90%);
7363
- --black-600: hsl(210, 11%, 98%);
7364
- --black: hsl(0, 0%, 100%);
7365
- --orange-100: hsl(27, 30%, 19%);
7366
- --orange-200: hsl(27, 30%, 19%);
7367
- --orange-300: hsl(27, 80%, 72%);
7368
- --orange-400: hsl(27, 80%, 72%);
7369
- --orange-500: hsl(28, 78%, 93%);
7370
- --orange-600: hsl(28, 78%, 93%);
7371
- --blue-100: hsl(209, 30%, 19%);
7372
- --blue-200: hsl(209, 30%, 19%);
7373
- --blue-300: hsl(210, 80%, 72%);
7374
- --blue-400: hsl(210, 80%, 75%);
7375
- --blue-500: hsl(210, 78%, 93%);
7376
- --blue-600: hsl(210, 78%, 93%);
7377
- --green-100: hsl(147, 30%, 19%);
7378
- --green-200: hsl(147, 30%, 19%);
7379
- --green-300: hsl(148, 40%, 62%);
7380
- --green-400: hsl(148, 40%, 68%);
7381
- --green-500: hsl(150, 39%, 93%);
7382
- --green-600: hsl(150, 39%, 93%);
7383
- --red-100: hsl(358, 30%, 19%);
7384
- --red-200: hsl(358, 30%, 19%);
7385
- --red-300: hsl(0, 75%, 77%);
7386
- --red-400: hsl(0, 73%, 80%);
7387
- --red-500: hsl(0, 76%, 95%);
7388
- --red-600: hsl(0, 76%, 95%);
7389
- --yellow-100: hsl(43, 29%, 17%);
7390
- --yellow-200: hsl(43, 29%, 17%);
7391
- --yellow-300: hsl(43, 75%, 75%);
7392
- --yellow-400: hsl(43, 75%, 75%);
7393
- --yellow-500: hsl(48, 74%, 91%);
7394
- --yellow-600: hsl(44, 74%, 91%);
7395
- --purple-100: hsl(237, 26%, 23%);
7396
- --purple-200: hsl(237, 26%, 23%);
7397
- --purple-300: hsl(237, 98%, 87%);
7398
- --purple-400: hsl(237, 98%, 87%);
7399
- --purple-500: hsl(237, 98%, 96%);
7400
- --purple-600: hsl(237, 98%, 96%);
7400
+ --white: #000000;
7401
+ --black-050: #141414;
7402
+ --black-100: #262626;
7403
+ --black-150: #333333;
7404
+ --black-200: #575757;
7405
+ --black-225: #666666;
7406
+ --black-250: #737373;
7407
+ --black-300: #8c8c8c;
7408
+ --black-350: #a6a6a6;
7409
+ --black-400: #d9d3ce;
7410
+ --black-500: #f2ede9;
7411
+ --black-600: #ffffff;
7412
+ --black: #ffffff;
7413
+ --orange-100: #401f0d;
7414
+ --orange-200: #401f0d;
7415
+ --orange-300: #dead90;
7416
+ --orange-400: #fcccb1;
7417
+ --orange-500: #fadac8;
7418
+ --orange-600: #fadac8;
7419
+ --blue-100: #22304d;
7420
+ --blue-200: #22304d;
7421
+ --blue-300: #a6c3ff;
7422
+ --blue-400: #ccddff;
7423
+ --blue-500: #e6eeff;
7424
+ --blue-600: #e6eeff;
7425
+ --green-100: #28380b;
7426
+ --green-200: #28380b;
7427
+ --green-300: #c4e68a;
7428
+ --green-400: #cce6a1;
7429
+ --green-500: #ecffcc;
7430
+ --green-600: #ecffcc;
7431
+ --red-100: #330f0f;
7432
+ --red-200: #330f0f;
7433
+ --red-300: #faafaf;
7434
+ --red-400: #fccaca;
7435
+ --red-500: #ffe6e6;
7436
+ --red-600: #ffe6e6;
7437
+ --yellow-100: #332b0a;
7438
+ --yellow-200: #332b0a;
7439
+ --yellow-300: #e6d17e;
7440
+ --yellow-400: #e3d59f;
7441
+ --yellow-500: #fffae6;
7442
+ --yellow-600: #fffae6;
7443
+ --purple-100: #22174d;
7444
+ --purple-200: #22174d;
7445
+ --purple-300: #b6a6f7;
7446
+ --purple-400: #d2c8fa;
7447
+ --purple-500: #e8e3fc;
7448
+ --purple-600: #e8e3fc;
7449
+ --pink-100: #2e0a33;
7450
+ --pink-200: #2e0a33;
7451
+ --pink-300: #f3bbfa;
7452
+ --pink-400: #f7cffc;
7453
+ --pink-500: #fae3fc;
7454
+ --pink-600: #fae3fc;
7401
7455
  --gold-100: hsl(45, 22%, 25%);
7402
7456
  --gold-200: hsl(45, 22%, 25%);
7403
7457
  --gold-300: hsl(45, 92%, 62%);
@@ -7420,14 +7474,14 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7420
7474
  --bs-md: none;
7421
7475
  --bs-lg: none;
7422
7476
  --bs-xl: none;
7423
- --translucent-secondary: hsla(206, 100%, 40%, 0.9);
7477
+ --translucent-secondary: hsla(204, 6%, 35%, 0.9);
7424
7478
  --translucent-success: hsla(140, 40%, 40%, 0.9);
7425
7479
  --translucent-warning: hsla(47, 76%, 46%, 0.9);
7426
7480
  --translucent-error: hsla(358, 62%, 47%, 0.9);
7427
7481
  --translucent-muted: hsla(210, 8%, 55%, 0.95);
7428
7482
  --focus-neutral: var(--white);
7429
- --focus-theme: var(--theme-secondary-400);
7430
- --focus-ring: hsla(206, 100%, 40%, 0.9);
7483
+ --focus-theme: var(--theme-secondary);
7484
+ --focus-ring: rgba(115, 115, 115, 0.9);
7431
7485
  --focus-ring-success: hsla(140, 40%, 40%, 0.9);
7432
7486
  --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
7433
7487
  --focus-ring-error: hsla(358, 62%, 47%, 0.9);
@@ -7452,13 +7506,13 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7452
7506
  --theme-primary-400: var(--orange-400);
7453
7507
  --theme-primary-500: var(--orange-500);
7454
7508
  --theme-primary-600: var(--orange-600);
7455
- --theme-secondary: var(--blue-400);
7456
- --theme-secondary-100: var(--blue-100);
7457
- --theme-secondary-200: var(--blue-200);
7458
- --theme-secondary-300: var(--blue-300);
7459
- --theme-secondary-400: var(--blue-400);
7460
- --theme-secondary-500: var(--blue-500);
7461
- --theme-secondary-600: var(--blue-600);
7509
+ --theme-secondary: var(--black);
7510
+ --theme-secondary-100: var(--black-100);
7511
+ --theme-secondary-200: var(--black-200);
7512
+ --theme-secondary-300: var(--black-300);
7513
+ --theme-secondary-400: var(--black-400);
7514
+ --theme-secondary-500: var(--black-500);
7515
+ --theme-secondary-600: var(--black-600);
7462
7516
  --_o-disabled: 0.8;
7463
7517
  }
7464
7518
  }
@@ -8581,6 +8635,114 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
8581
8635
  .f\:fc-purple-600:focus-within {
8582
8636
  color: var(--purple-600) !important;
8583
8637
  }
8638
+ .bg-pink-100,
8639
+ .h\:bg-pink-100:hover,
8640
+ .f\:bg-pink-100:focus,
8641
+ .f\:bg-pink-100:focus-within {
8642
+ background-color: var(--pink-100) !important;
8643
+ }
8644
+ .bc-pink-100,
8645
+ .h\:bc-pink-100:hover,
8646
+ .f\:bc-pink-100:focus,
8647
+ .f\:bc-pink-100:focus-within {
8648
+ border-color: var(--pink-100) !important;
8649
+ }
8650
+ .fc-pink-100,
8651
+ .h\:fc-pink-100:hover,
8652
+ .f\:fc-pink-100:focus,
8653
+ .f\:fc-pink-100:focus-within {
8654
+ color: var(--pink-100) !important;
8655
+ }
8656
+ .bg-pink-200,
8657
+ .h\:bg-pink-200:hover,
8658
+ .f\:bg-pink-200:focus,
8659
+ .f\:bg-pink-200:focus-within {
8660
+ background-color: var(--pink-200) !important;
8661
+ }
8662
+ .bc-pink-200,
8663
+ .h\:bc-pink-200:hover,
8664
+ .f\:bc-pink-200:focus,
8665
+ .f\:bc-pink-200:focus-within {
8666
+ border-color: var(--pink-200) !important;
8667
+ }
8668
+ .fc-pink-200,
8669
+ .h\:fc-pink-200:hover,
8670
+ .f\:fc-pink-200:focus,
8671
+ .f\:fc-pink-200:focus-within {
8672
+ color: var(--pink-200) !important;
8673
+ }
8674
+ .bg-pink-300,
8675
+ .h\:bg-pink-300:hover,
8676
+ .f\:bg-pink-300:focus,
8677
+ .f\:bg-pink-300:focus-within {
8678
+ background-color: var(--pink-300) !important;
8679
+ }
8680
+ .bc-pink-300,
8681
+ .h\:bc-pink-300:hover,
8682
+ .f\:bc-pink-300:focus,
8683
+ .f\:bc-pink-300:focus-within {
8684
+ border-color: var(--pink-300) !important;
8685
+ }
8686
+ .fc-pink-300,
8687
+ .h\:fc-pink-300:hover,
8688
+ .f\:fc-pink-300:focus,
8689
+ .f\:fc-pink-300:focus-within {
8690
+ color: var(--pink-300) !important;
8691
+ }
8692
+ .bg-pink-400,
8693
+ .h\:bg-pink-400:hover,
8694
+ .f\:bg-pink-400:focus,
8695
+ .f\:bg-pink-400:focus-within {
8696
+ background-color: var(--pink-400) !important;
8697
+ }
8698
+ .bc-pink-400,
8699
+ .h\:bc-pink-400:hover,
8700
+ .f\:bc-pink-400:focus,
8701
+ .f\:bc-pink-400:focus-within {
8702
+ border-color: var(--pink-400) !important;
8703
+ }
8704
+ .fc-pink-400,
8705
+ .h\:fc-pink-400:hover,
8706
+ .f\:fc-pink-400:focus,
8707
+ .f\:fc-pink-400:focus-within {
8708
+ color: var(--pink-400) !important;
8709
+ }
8710
+ .bg-pink-500,
8711
+ .h\:bg-pink-500:hover,
8712
+ .f\:bg-pink-500:focus,
8713
+ .f\:bg-pink-500:focus-within {
8714
+ background-color: var(--pink-500) !important;
8715
+ }
8716
+ .bc-pink-500,
8717
+ .h\:bc-pink-500:hover,
8718
+ .f\:bc-pink-500:focus,
8719
+ .f\:bc-pink-500:focus-within {
8720
+ border-color: var(--pink-500) !important;
8721
+ }
8722
+ .fc-pink-500,
8723
+ .h\:fc-pink-500:hover,
8724
+ .f\:fc-pink-500:focus,
8725
+ .f\:fc-pink-500:focus-within {
8726
+ color: var(--pink-500) !important;
8727
+ }
8728
+ .bg-pink-600,
8729
+ .h\:bg-pink-600:hover,
8730
+ .f\:bg-pink-600:focus,
8731
+ .f\:bg-pink-600:focus-within {
8732
+ background-color: var(--pink-600) !important;
8733
+ }
8734
+ .bc-pink-600,
8735
+ .h\:bc-pink-600:hover,
8736
+ .f\:bc-pink-600:focus,
8737
+ .f\:bc-pink-600:focus-within {
8738
+ border-color: var(--pink-600) !important;
8739
+ }
8740
+ .fc-pink-600,
8741
+ .h\:fc-pink-600:hover,
8742
+ .f\:fc-pink-600:focus,
8743
+ .f\:fc-pink-600:focus-within {
8744
+ color: var(--pink-600) !important;
8745
+ }
8584
8746
  .bg-gold-100,
8585
8747
  .h\:bg-gold-100:hover,
8586
8748
  .f\:bg-gold-100:focus,
@@ -9458,6 +9620,42 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
9458
9620
  body.theme-system .d\:fc-purple-600 {
9459
9621
  color: var(--purple-600) !important;
9460
9622
  }
9623
+ body.theme-system .d\:bg-pink-100 {
9624
+ background-color: var(--pink-100) !important;
9625
+ }
9626
+ body.theme-system .d\:fc-pink-100 {
9627
+ color: var(--pink-100) !important;
9628
+ }
9629
+ body.theme-system .d\:bg-pink-200 {
9630
+ background-color: var(--pink-200) !important;
9631
+ }
9632
+ body.theme-system .d\:fc-pink-200 {
9633
+ color: var(--pink-200) !important;
9634
+ }
9635
+ body.theme-system .d\:bg-pink-300 {
9636
+ background-color: var(--pink-300) !important;
9637
+ }
9638
+ body.theme-system .d\:fc-pink-300 {
9639
+ color: var(--pink-300) !important;
9640
+ }
9641
+ body.theme-system .d\:bg-pink-400 {
9642
+ background-color: var(--pink-400) !important;
9643
+ }
9644
+ body.theme-system .d\:fc-pink-400 {
9645
+ color: var(--pink-400) !important;
9646
+ }
9647
+ body.theme-system .d\:bg-pink-500 {
9648
+ background-color: var(--pink-500) !important;
9649
+ }
9650
+ body.theme-system .d\:fc-pink-500 {
9651
+ color: var(--pink-500) !important;
9652
+ }
9653
+ body.theme-system .d\:bg-pink-600 {
9654
+ background-color: var(--pink-600) !important;
9655
+ }
9656
+ body.theme-system .d\:fc-pink-600 {
9657
+ color: var(--pink-600) !important;
9658
+ }
9461
9659
  body.theme-system .d\:bg-gold-100 {
9462
9660
  background-color: var(--gold-100) !important;
9463
9661
  }
@@ -10078,6 +10276,66 @@ body.theme-dark .d\:fc-purple-600,
10078
10276
  body.theme-system .theme-dark__forced .d\:fc-purple-600 {
10079
10277
  color: var(--purple-600) !important;
10080
10278
  }
10279
+ body.theme-dark .d\:bg-pink-100,
10280
+ .theme-dark__forced .d\:bg-pink-100,
10281
+ body.theme-system .theme-dark__forced .d\:bg-pink-100 {
10282
+ background-color: var(--pink-100) !important;
10283
+ }
10284
+ body.theme-dark .d\:fc-pink-100,
10285
+ .theme-dark__forced .d\:fc-pink-100,
10286
+ body.theme-system .theme-dark__forced .d\:fc-pink-100 {
10287
+ color: var(--pink-100) !important;
10288
+ }
10289
+ body.theme-dark .d\:bg-pink-200,
10290
+ .theme-dark__forced .d\:bg-pink-200,
10291
+ body.theme-system .theme-dark__forced .d\:bg-pink-200 {
10292
+ background-color: var(--pink-200) !important;
10293
+ }
10294
+ body.theme-dark .d\:fc-pink-200,
10295
+ .theme-dark__forced .d\:fc-pink-200,
10296
+ body.theme-system .theme-dark__forced .d\:fc-pink-200 {
10297
+ color: var(--pink-200) !important;
10298
+ }
10299
+ body.theme-dark .d\:bg-pink-300,
10300
+ .theme-dark__forced .d\:bg-pink-300,
10301
+ body.theme-system .theme-dark__forced .d\:bg-pink-300 {
10302
+ background-color: var(--pink-300) !important;
10303
+ }
10304
+ body.theme-dark .d\:fc-pink-300,
10305
+ .theme-dark__forced .d\:fc-pink-300,
10306
+ body.theme-system .theme-dark__forced .d\:fc-pink-300 {
10307
+ color: var(--pink-300) !important;
10308
+ }
10309
+ body.theme-dark .d\:bg-pink-400,
10310
+ .theme-dark__forced .d\:bg-pink-400,
10311
+ body.theme-system .theme-dark__forced .d\:bg-pink-400 {
10312
+ background-color: var(--pink-400) !important;
10313
+ }
10314
+ body.theme-dark .d\:fc-pink-400,
10315
+ .theme-dark__forced .d\:fc-pink-400,
10316
+ body.theme-system .theme-dark__forced .d\:fc-pink-400 {
10317
+ color: var(--pink-400) !important;
10318
+ }
10319
+ body.theme-dark .d\:bg-pink-500,
10320
+ .theme-dark__forced .d\:bg-pink-500,
10321
+ body.theme-system .theme-dark__forced .d\:bg-pink-500 {
10322
+ background-color: var(--pink-500) !important;
10323
+ }
10324
+ body.theme-dark .d\:fc-pink-500,
10325
+ .theme-dark__forced .d\:fc-pink-500,
10326
+ body.theme-system .theme-dark__forced .d\:fc-pink-500 {
10327
+ color: var(--pink-500) !important;
10328
+ }
10329
+ body.theme-dark .d\:bg-pink-600,
10330
+ .theme-dark__forced .d\:bg-pink-600,
10331
+ body.theme-system .theme-dark__forced .d\:bg-pink-600 {
10332
+ background-color: var(--pink-600) !important;
10333
+ }
10334
+ body.theme-dark .d\:fc-pink-600,
10335
+ .theme-dark__forced .d\:fc-pink-600,
10336
+ body.theme-system .theme-dark__forced .d\:fc-pink-600 {
10337
+ color: var(--pink-600) !important;
10338
+ }
10081
10339
  body.theme-dark .d\:bg-gold-100,
10082
10340
  .theme-dark__forced .d\:bg-gold-100,
10083
10341
  body.theme-system .theme-dark__forced .d\:bg-gold-100 {
@@ -15170,85 +15428,88 @@ p {
15170
15428
  }
15171
15429
  .fs-display4 {
15172
15430
  font-size: var(--fs-display4) !important;
15431
+ line-height: 1.18;
15173
15432
  }
15174
15433
  .fs-display3 {
15175
15434
  font-size: var(--fs-display3) !important;
15435
+ line-height: 1.2;
15176
15436
  }
15177
15437
  .fs-display2 {
15178
15438
  font-size: var(--fs-display2) !important;
15439
+ line-height: 1.28;
15179
15440
  }
15180
15441
  .fs-display1 {
15181
15442
  font-size: var(--fs-display1) !important;
15443
+ line-height: 1.34;
15182
15444
  }
15183
15445
  .fs-headline2 {
15184
15446
  font-size: var(--fs-headline2) !important;
15447
+ line-height: 1.4;
15185
15448
  }
15186
15449
  .fs-headline1 {
15187
15450
  font-size: var(--fs-headline1) !important;
15451
+ line-height: 1.4;
15188
15452
  }
15189
15453
  .fs-title {
15190
15454
  font-size: var(--fs-title) !important;
15455
+ line-height: 1.4;
15191
15456
  }
15192
15457
  .fs-subheading {
15193
15458
  font-size: var(--fs-subheading) !important;
15459
+ line-height: 1.4;
15194
15460
  }
15195
15461
  .fs-body3 {
15196
15462
  font-size: var(--fs-body3) !important;
15463
+ line-height: 1.4;
15197
15464
  }
15198
15465
  .fs-body2 {
15199
15466
  font-size: var(--fs-body2) !important;
15467
+ line-height: 1.4;
15200
15468
  }
15201
15469
  .fs-body1 {
15202
15470
  font-size: var(--fs-body1) !important;
15471
+ line-height: 1.4;
15203
15472
  }
15204
- .fs-caption,
15205
- .fs-category {
15473
+ .fs-caption {
15206
15474
  font-size: var(--fs-caption) !important;
15475
+ line-height: 1.4;
15207
15476
  }
15208
15477
  .fs-fine {
15209
15478
  font-size: var(--fs-fine) !important;
15479
+ line-height: 1.36;
15210
15480
  }
15211
15481
  @media (max-width: 640px) {
15212
15482
  html .fs-display4 {
15213
- font-size: 3.8rem !important;
15483
+ font-size: calc(var(--fs-display4) * 0.43) !important;
15214
15484
  }
15215
15485
  html .fs-display3 {
15216
- font-size: 3.3rem !important;
15486
+ font-size: calc(var(--fs-display3) * 0.5139) !important;
15217
15487
  }
15218
15488
  html .fs-display2 {
15219
- font-size: 3rem !important;
15489
+ font-size: calc(var(--fs-display2) * 0.5862) !important;
15220
15490
  }
15221
15491
  html .fs-display1 {
15222
- font-size: 2.6rem !important;
15492
+ font-size: calc(var(--fs-display1) * 0.6304) !important;
15223
15493
  }
15224
15494
  html .fs-headline2 {
15225
- font-size: 2.3rem !important;
15495
+ font-size: calc(var(--fs-headline2) * 0.7224) !important;
15226
15496
  }
15227
15497
  html .fs-headline1 {
15228
- font-size: 2rem !important;
15498
+ font-size: calc(var(--fs-headline1) * 0.8215) !important;
15229
15499
  }
15230
15500
  html .fs-title {
15231
- font-size: 1.8rem !important;
15501
+ font-size: calc(var(--fs-title) * 0.9094) !important;
15232
15502
  }
15233
15503
  html .fs-subheading {
15234
- font-size: 1.6rem !important;
15504
+ font-size: calc(var(--fs-subheading) * 0.8998) !important;
15235
15505
  }
15236
15506
  html .fs-body3 {
15237
- font-size: 1.4rem !important;
15507
+ font-size: calc(var(--fs-body3) * 0.8888) !important;
15238
15508
  }
15239
15509
  html .fs-body2 {
15240
- font-size: 1.3rem !important;
15510
+ font-size: calc(var(--fs-body2) * 0.9374) !important;
15241
15511
  }
15242
15512
  }
15243
- .fs-category {
15244
- font-weight: 700;
15245
- text-transform: uppercase;
15246
- }
15247
- .fs-category.has-border {
15248
- width: 100%;
15249
- padding: var(--su4) 0;
15250
- border-top: var(--su-static1) solid var(--bc-medium);
15251
- }
15252
15513
  .lh-xs {
15253
15514
  line-height: var(--lh-xs) !important;
15254
15515
  }
@@ -15285,8 +15546,11 @@ p {
15285
15546
  .fw-normal {
15286
15547
  font-weight: 400 !important;
15287
15548
  }
15549
+ .fw-medium {
15550
+ font-weight: 500 !important;
15551
+ }
15288
15552
  .fw-bold {
15289
- font-weight: 700 !important;
15553
+ font-weight: 600 !important;
15290
15554
  }
15291
15555
  .fs-normal {
15292
15556
  font-style: normal !important;
@@ -16139,22 +16403,22 @@ ol {
16139
16403
  box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
16140
16404
  }
16141
16405
  .bs-sm.bs-hover:hover {
16142
- box-shadow: 0 var(--su-static2) var(--su-static8) hsl(210, 8%, 95%) !important;
16406
+ box-shadow: 0 var(--su-static2) var(--su-static8) #f0efed !important;
16143
16407
  }
16144
16408
  .bs-md.bs-hover:hover {
16145
- box-shadow: 0 var(--su-static4) var(--su-static8) hsl(210, 8%, 85%) !important;
16409
+ box-shadow: 0 var(--su-static4) var(--su-static8) #d7d8db !important;
16146
16410
  }
16147
16411
  .bs-lg.bs-hover:hover {
16148
- box-shadow: 0 var(--su-static4) var(--su-static12) hsla(210, 8%, 68%, 0.7) !important;
16412
+ box-shadow: 0 var(--su-static4) var(--su-static12) rgba(132, 135, 140, 0.7) !important;
16149
16413
  }
16150
16414
  .bs-i-sm.bs-hover:hover {
16151
- box-shadow: inset 0 var(--su-static1) var(--su-static8) 0 hsla(210, 9%, 75%, 0.75) !important;
16415
+ box-shadow: inset 0 var(--su-static1) var(--su-static8) 0 rgba(167, 170, 176, 0.75) !important;
16152
16416
  }
16153
16417
  .bs-i-md.bs-hover:hover {
16154
- box-shadow: inset 0 var(--su-static1) var(--su-static8) 0 hsla(210, 8%, 68%, 0.8) !important;
16418
+ box-shadow: inset 0 var(--su-static1) var(--su-static8) 0 rgba(132, 135, 140, 0.8) !important;
16155
16419
  }
16156
16420
  .bs-i-lg.bs-hover:hover {
16157
- box-shadow: inset 0 var(--su-static1) var(--su-static12) 0 hsl(210, 8%, 68%) !important;
16421
+ box-shadow: inset 0 var(--su-static1) var(--su-static12) 0 #84878c !important;
16158
16422
  }
16159
16423
  .t {
16160
16424
  transition-duration: var(--transition-time);
@@ -22956,12 +23220,6 @@ body {
22956
23220
  font-size: var(--fs-base);
22957
23221
  line-height: var(--lh-base);
22958
23222
  }
22959
- @media (max-width: 640px) {
22960
- html ,
22961
- html body {
22962
- font-size: 11px;
22963
- }
22964
- }
22965
23223
  body {
22966
23224
  box-sizing: border-box;
22967
23225
  min-height: 100%;