@stackoverflow/stacks 2.3.2 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1570,21 +1570,6 @@ body.theme-highcontrast .s-btn.s-btn__muted {
1570
1570
  --_bu-number-fc-filled: var(--black);
1571
1571
  --_bu-number-fc-selected: var(--white);
1572
1572
  }
1573
- .s-btn.s-btn__primary {
1574
- --_bu-bg: var(--theme-button-primary-background-color, var(--theme-secondary-400));
1575
- --_bu-bg-active: var(--theme-button-primary-active-background-color, var(--theme-secondary-600));
1576
- --_bu-bg-hover: var(--theme-button-primary-hover-background-color, var(--theme-secondary-500));
1577
- --_bu-bg-selected: var(--theme-button-primary-selected-background-color, var(--theme-secondary-500));
1578
- --_bu-fc: var(--theme-button-primary-color, var(--white));
1579
- --_bu-fc-active: var(--theme-button-primary-hover-color, var(--white));
1580
- --_bu-fc-hover: var(--theme-button-primary-hover-color, var(--white));
1581
- --_bu-fc-selected: var(--theme-button-primary-selected-color, var(--white));
1582
- --_bu-number-fc: var(--theme-button-primary-number-color, var(--theme-secondary-600));
1583
- --_bu-number-fc-selected: var(--theme-button-primary-number-color, var(--theme-secondary-600));
1584
- }
1585
- body.theme-highcontrast .s-btn.s-btn__primary {
1586
- --_bu-bc: transparent;
1587
- }
1588
1573
  body.theme-highcontrast .s-btn.s-btn__facebook,
1589
1574
  body.theme-highcontrast .s-btn.s-btn__github {
1590
1575
  --_bu-bc: transparent;
@@ -1881,6 +1866,12 @@ body.theme-highcontrast.theme-dark .s-checkbox:indeterminate {
1881
1866
  --_ch-bc: var(--blue-500) !important;
1882
1867
  --_ch-bg: var(--blue-400);
1883
1868
  }
1869
+ @media (forced-colors: active) {
1870
+ .s-checkbox:checked,
1871
+ .s-checkbox:indeterminate {
1872
+ --_ch-bg: ButtonText !important;
1873
+ }
1874
+ }
1884
1875
  .s-checkbox:checked,
1885
1876
  .s-checkbox:indeterminate {
1886
1877
  --_ch-bc: var(--theme-secondary-400) !important;
@@ -5848,6 +5839,8 @@ input[type="checkbox"].s-toggle-switch[disabled] {
5848
5839
  cursor: default;
5849
5840
  }
5850
5841
  .s-topbar {
5842
+ --_tb-bt: var(--theme-topbar-accent-border, 3px solid var(--theme-primary));
5843
+ --_tb-h: var(--theme-topbar-height, calc(var(--su-static48) + var(--su-static8)));
5851
5844
  --_tb-item-bg: unset;
5852
5845
  --_tb-item-fc: var(--theme-topbar-item-color, var(--black-400));
5853
5846
  --_tb-item-ai-bs: 0 0 0 var(--su-static2) var(--theme-topbar-background-color, var(--white));
@@ -5874,9 +5867,9 @@ input[type="checkbox"].s-toggle-switch[disabled] {
5874
5867
  align-items: center;
5875
5868
  background-color: var(--theme-topbar-background-color, var(--white));
5876
5869
  border-bottom: var(--theme-topbar-bottom-border, var(--su-static1) solid var(--black-225));
5877
- border-top: var(--theme-topbar-accent-border, 3px solid var(--theme-primary));
5870
+ border-top: var(--_tb-bt);
5878
5871
  display: flex;
5879
- height: var(--theme-topbar-height, calc(var(--su-static48) + var(--su-static8)));
5872
+ height: var(--_tb-h);
5880
5873
  min-width: auto;
5881
5874
  position: relative;
5882
5875
  width: 100%;
@@ -5948,6 +5941,17 @@ body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light {
5948
5941
  --focus-neutral: hsl(210, 8%, 5%);
5949
5942
  --focus-theme: var(--theme-dark-secondary-custom-400, hsl(210, 89%, 77%));
5950
5943
  }
5944
+ .s-topbar:has( > .s-topbar--skip-link:focus) {
5945
+ border-top: none;
5946
+ display: block;
5947
+ height: auto;
5948
+ }
5949
+ .s-topbar:has( > .s-topbar--skip-link:focus) .s-topbar--container {
5950
+ height: var(--_tb-h);
5951
+ }
5952
+ .s-topbar:has( > .s-topbar--skip-link:focus) .s-topbar--skip-link {
5953
+ border-bottom: var(--_tb-bt);
5954
+ }
5951
5955
  .s-topbar a.s-topbar--logo:focus-visible {
5952
5956
  box-shadow: inset 0 0 0 var(--su-static2) var(--focus-theme), inset 0 0 0 var(--su-static4) var(--focus-neutral);
5953
5957
  outline: var(--su-static2) solid transparent !important;
@@ -6230,6 +6234,14 @@ body.theme-highcontrast.theme-dark .s-topbar.s-topbar__light {
6230
6234
  max-width: var(--_tb-searchbar-open-mxw);
6231
6235
  }
6232
6236
  }
6237
+ .s-topbar .s-topbar--skip-link {
6238
+ background-color: var(--theme-secondary-100);
6239
+ border-bottom: var(--_tb-bt);
6240
+ display: block;
6241
+ outline: none;
6242
+ padding: var(--su12);
6243
+ text-align: center;
6244
+ }
6233
6245
  .s-topbar .s-navigation .s-navigation--item:not(.is-selected) {
6234
6246
  color: var(--theme-topbar-item-color, var(--black-400));
6235
6247
  }
@@ -6671,894 +6683,6 @@ body {
6671
6683
  --s-full: 97.2307692rem;
6672
6684
  --s-step: calc(var(--s-full) / 12);
6673
6685
  }
6674
- :root {
6675
- --theme-base-primary-color-legacy-h: 27;
6676
- --theme-base-primary-color-legacy-s: 90%;
6677
- --theme-base-primary-color-legacy-l: 55%;
6678
- --theme-base-primary-color-legacy-r: 243.525;
6679
- --theme-base-primary-color-legacy-g: 129.9225;
6680
- --theme-base-primary-color-legacy-b: 36.975;
6681
- --theme-base-secondary-color-legacy-h: 206;
6682
- --theme-base-secondary-color-legacy-s: 100%;
6683
- --theme-base-secondary-color-legacy-l: 40%;
6684
- --theme-base-secondary-color-legacy-r: 0;
6685
- --theme-base-secondary-color-legacy-g: 115.6;
6686
- --theme-base-secondary-color-legacy-b: 204;
6687
- }
6688
- body:not(.theme-dark),
6689
- body.theme-dark .theme-light__forced,
6690
- body.theme-system .theme-light__forced {
6691
- --white-legacy: hsl(0, 0%, 100%);
6692
- --black-legacy: hsl(210, 8%, 5%);
6693
- --orange-legacy: hsl(27, 90%, 55%);
6694
- --yellow-legacy: hsl(47, 83%, 91%);
6695
- --green-legacy: hsl(140, 40%, 55%);
6696
- --blue-legacy: hsl(206, 100%, 40%);
6697
- --powder-legacy: hsl(205, 46%, 92%);
6698
- --red-legacy: hsl(358, 62%, 52%);
6699
- --black-legacy-025: hsl(210, 8%, 97.5%);
6700
- --black-legacy-050: hsl(210, 8%, 95%);
6701
- --black-legacy-075: hsl(210, 8%, 90%);
6702
- --black-legacy-100: hsl(210, 8%, 85%);
6703
- --black-legacy-150: hsl(210, 8%, 80%);
6704
- --black-legacy-200: hsl(210, 8%, 75%);
6705
- --black-legacy-300: hsl(210, 8%, 65%);
6706
- --black-legacy-350: hsl(210, 8%, 60%);
6707
- --black-legacy-400: hsl(210, 8%, 55%);
6708
- --black-legacy-500: hsl(210, 8%, 45%);
6709
- --black-legacy-600: hsl(210, 8%, 35%);
6710
- --black-legacy-700: hsl(210, 8%, 25%);
6711
- --black-legacy-750: hsl(210, 8%, 20%);
6712
- --black-legacy-800: hsl(210, 8%, 15%);
6713
- --black-legacy-900: hsl(210, 8%, 5%);
6714
- --orange-legacy-050: hsl(27, 100%, 97%);
6715
- --orange-legacy-100: hsl(27, 95%, 90%);
6716
- --orange-legacy-200: hsl(27, 90%, 83%);
6717
- --orange-legacy-300: hsl(27, 90%, 70%);
6718
- --orange-legacy-400: hsl(27, 90%, 55%);
6719
- --orange-legacy-500: hsl(27, 90%, 50%);
6720
- --orange-legacy-600: hsl(27, 90%, 45%);
6721
- --orange-legacy-700: hsl(27, 90%, 39%);
6722
- --orange-legacy-800: hsl(27, 87%, 35%);
6723
- --orange-legacy-900: hsl(27, 80%, 30%);
6724
- --blue-legacy-050: hsl(206, 100%, 97%);
6725
- --blue-legacy-100: hsl(206, 96%, 90%);
6726
- --blue-legacy-200: hsl(206, 93%, 83.5%);
6727
- --blue-legacy-300: hsl(206, 90%, 69.5%);
6728
- --blue-legacy-400: hsl(206, 85%, 57.5%);
6729
- --blue-legacy-500: hsl(206, 100%, 52%);
6730
- --blue-legacy-600: hsl(206, 100%, 40%);
6731
- --blue-legacy-700: hsl(209, 100%, 37.5%);
6732
- --blue-legacy-800: hsl(209, 100%, 32%);
6733
- --blue-legacy-900: hsl(209, 100%, 26%);
6734
- --powder-legacy-050: hsl(205, 47%, 97%);
6735
- --powder-legacy-100: hsl(205, 46%, 92%);
6736
- --powder-legacy-200: hsl(205, 53%, 88%);
6737
- --powder-legacy-300: hsl(205, 57%, 81%);
6738
- --powder-legacy-400: hsl(205, 56%, 76%);
6739
- --powder-legacy-500: hsl(205, 41%, 63%);
6740
- --powder-legacy-600: hsl(205, 36%, 53%);
6741
- --powder-legacy-700: hsl(205, 47%, 42%);
6742
- --powder-legacy-800: hsl(205, 46%, 32%);
6743
- --powder-legacy-900: hsl(205, 46%, 22%);
6744
- --green-legacy-025: hsl(140, 42%, 95%);
6745
- --green-legacy-050: hsl(140, 40%, 90%);
6746
- --green-legacy-100: hsl(140, 40%, 85%);
6747
- --green-legacy-200: hsl(140, 40%, 75%);
6748
- --green-legacy-300: hsl(140, 40%, 65%);
6749
- --green-legacy-400: hsl(140, 40%, 55%);
6750
- --green-legacy-500: hsl(140, 40%, 47%);
6751
- --green-legacy-600: hsl(140, 40%, 40%);
6752
- --green-legacy-700: hsl(140, 41%, 31%);
6753
- --green-legacy-800: hsl(140, 40%, 27%);
6754
- --green-legacy-900: hsl(140, 40%, 20%);
6755
- --yellow-legacy-050: hsl(47, 87%, 94%);
6756
- --yellow-legacy-100: hsl(47, 83%, 91%);
6757
- --yellow-legacy-200: hsl(47, 65%, 84%);
6758
- --yellow-legacy-300: hsl(47, 69%, 69%);
6759
- --yellow-legacy-400: hsl(47, 79%, 58%);
6760
- --yellow-legacy-500: hsl(47, 73%, 50%);
6761
- --yellow-legacy-600: hsl(47, 76%, 46%);
6762
- --yellow-legacy-700: hsl(47, 79%, 40%);
6763
- --yellow-legacy-800: hsl(47, 82%, 34%);
6764
- --yellow-legacy-900: hsl(47, 84%, 28%);
6765
- --red-legacy-025: hsl(358, 80%, 98%);
6766
- --red-legacy-050: hsl(358, 75%, 97%);
6767
- --red-legacy-100: hsl(358, 76%, 90%);
6768
- --red-legacy-200: hsl(358, 74%, 83%);
6769
- --red-legacy-300: hsl(358, 70%, 70%);
6770
- --red-legacy-400: hsl(358, 68%, 59%);
6771
- --red-legacy-500: hsl(358, 62%, 52%);
6772
- --red-legacy-600: hsl(358, 62%, 47%);
6773
- --red-legacy-700: hsl(358, 64%, 41%);
6774
- --red-legacy-800: hsl(358, 64%, 35%);
6775
- --red-legacy-900: hsl(358, 67%, 29%);
6776
- --gold-legacy: hsl(48, 100%, 50%);
6777
- --gold-legacy-lighter: hsl(48, 100%, 91%);
6778
- --gold-legacy-darker: hsl(45, 100%, 47%);
6779
- --silver-legacy: hsl(210, 6%, 72%);
6780
- --silver-legacy-lighter: hsl(0, 0%, 91%);
6781
- --silver-legacy-darker: hsl(210, 3%, 61%);
6782
- --bronze-legacy: hsl(28, 38%, 67%);
6783
- --bronze-legacy-lighter: hsl(28, 40%, 92%);
6784
- --bronze-legacy-darker: hsl(28, 31%, 52%);
6785
- --bc-lightest-legacy: var(--black-legacy-025);
6786
- --bc-lighter-legacy: var(--black-legacy-050);
6787
- --bc-light-legacy: var(--black-legacy-075);
6788
- --bc-medium-legacy: var(--black-legacy-100);
6789
- --bc-dark-legacy: var(--black-legacy-150);
6790
- --bc-darker-legacy: var(--black-legacy-200);
6791
- --fc-dark-legacy: hsl(210, 8%, 5%);
6792
- --fc-medium-legacy: hsl(210, 8%, 25%);
6793
- --fc-light-legacy: hsl(210, 8%, 45%);
6794
- --focus-ring-success-legacy: hsla(140, 40%, 75%, 0.4);
6795
- --focus-ring-warning-legacy: hsla(47, 79%, 58%, 0.4);
6796
- --focus-ring-error-legacy: hsla(358, 62%, 47%, 0.15);
6797
- --focus-ring-muted-legacy: hsla(210, 8%, 15%, 0.1);
6798
- }
6799
- body:not(.theme-dark),
6800
- body.theme-dark .theme-light__forced,
6801
- body.theme-system .theme-light__forced,
6802
- body:not(.theme-dark) .themed,
6803
- body.theme-dark .theme-light__forced .themed,
6804
- body.theme-system .theme-light__forced .themed {
6805
- color: var(--theme-body-font-color, var(--black-600));
6806
- --theme-primary-color-legacy-h: var(--theme-light-primary-color-legacy-h, var(--theme-base-primary-color-legacy-h));
6807
- --theme-primary-color-legacy-s: var(--theme-light-primary-color-legacy-s, var(--theme-base-primary-color-legacy-s));
6808
- --theme-primary-color-legacy-l: var(--theme-light-primary-color-legacy-l, var(--theme-base-primary-color-legacy-l));
6809
- --theme-primary-color-legacy-r: var(--theme-light-primary-color-legacy-r, var(--theme-base-primary-color-legacy-r));
6810
- --theme-primary-color-legacy-g: var(--theme-light-primary-color-legacy-g, var(--theme-base-primary-color-legacy-g));
6811
- --theme-primary-color-legacy-b: var(--theme-light-primary-color-legacy-b, var(--theme-base-primary-color-legacy-b));
6812
- --theme-secondary-color-legacy-h: var(--theme-light-secondary-color-legacy-h, var(--theme-base-secondary-color-legacy-h));
6813
- --theme-secondary-color-legacy-s: var(--theme-light-secondary-color-legacy-s, var(--theme-base-secondary-color-legacy-s));
6814
- --theme-secondary-color-legacy-l: var(--theme-light-secondary-color-legacy-l, var(--theme-base-secondary-color-legacy-l));
6815
- --theme-secondary-color-legacy-r: var(--theme-light-secondary-color-legacy-r, var(--theme-base-secondary-color-legacy-r));
6816
- --theme-secondary-color-legacy-g: var(--theme-light-secondary-color-legacy-g, var(--theme-base-secondary-color-legacy-g));
6817
- --theme-secondary-color-legacy-b: var(--theme-light-secondary-color-legacy-b, var(--theme-base-secondary-color-legacy-b));
6818
- --theme-primary-color-legacy: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), var(--theme-primary-color-legacy-l));
6819
- --theme-primary-legacy-900: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), calc(var(--theme-primary-color-legacy-l) - 26%));
6820
- --theme-primary-legacy-800: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), calc(var(--theme-primary-color-legacy-l) - 21%));
6821
- --theme-primary-legacy-700: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), calc(var(--theme-primary-color-legacy-l) - 16%));
6822
- --theme-primary-legacy-600: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), calc(var(--theme-primary-color-legacy-l) - 10%));
6823
- --theme-primary-legacy-500: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), calc(var(--theme-primary-color-legacy-l) - 5%));
6824
- --theme-primary-legacy-400: var(--theme-primary-color-legacy);
6825
- --theme-primary-legacy-350: rgb(calc(51 + var(--theme-primary-color-legacy-r) * 0.8), calc(51 + var(--theme-primary-color-legacy-g) * 0.8), calc(51 + var(--theme-primary-color-legacy-b) * 0.8));
6826
- --theme-primary-legacy-300: rgb(calc(89.25 + var(--theme-primary-color-legacy-r) * 0.65), calc(89.25 + var(--theme-primary-color-legacy-g) * 0.65), calc(89.25 + var(--theme-primary-color-legacy-b) * 0.65));
6827
- --theme-primary-legacy-200: rgb(calc(122.4 + var(--theme-primary-color-legacy-r) * 0.52), calc(122.4 + var(--theme-primary-color-legacy-g) * 0.52), calc(122.4 + var(--theme-primary-color-legacy-b) * 0.52));
6828
- --theme-primary-legacy-150: rgb(calc(165.75 + var(--theme-primary-color-legacy-r) * 0.35), calc(165.75 + var(--theme-primary-color-legacy-g) * 0.35), calc(165.75 + var(--theme-primary-color-legacy-b) * 0.35));
6829
- --theme-primary-legacy-100: rgb(calc(198.9 + var(--theme-primary-color-legacy-r) * 0.22), calc(198.9 + var(--theme-primary-color-legacy-g) * 0.22), calc(198.9 + var(--theme-primary-color-legacy-b) * 0.22));
6830
- --theme-primary-legacy-075: rgb(calc(216.75 + var(--theme-primary-color-legacy-r) * 0.15), calc(216.75 + var(--theme-primary-color-legacy-g) * 0.15), calc(216.75 + var(--theme-primary-color-legacy-b) * 0.15));
6831
- --theme-primary-legacy-050: rgb(calc(234.6 + var(--theme-primary-color-legacy-r) * 0.08), calc(234.6 + var(--theme-primary-color-legacy-g) * 0.08), calc(234.6 + var(--theme-primary-color-legacy-b) * 0.08));
6832
- --theme-primary-legacy-025: rgb(calc(244.8 + var(--theme-primary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-b) * 0.04));
6833
- --theme-secondary-color-legacy: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l));
6834
- --theme-secondary-legacy-900: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), calc(var(--theme-secondary-color-legacy-l) - 26%));
6835
- --theme-secondary-legacy-800: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), calc(var(--theme-secondary-color-legacy-l) - 21%));
6836
- --theme-secondary-legacy-700: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), calc(var(--theme-secondary-color-legacy-l) - 16%));
6837
- --theme-secondary-legacy-600: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), calc(var(--theme-secondary-color-legacy-l) - 10%));
6838
- --theme-secondary-legacy-500: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), calc(var(--theme-secondary-color-legacy-l) - 5%));
6839
- --theme-secondary-legacy-400: var(--theme-secondary-color-legacy);
6840
- --theme-secondary-legacy-350: rgb(calc(51 + var(--theme-secondary-color-legacy-r) * 0.8), calc(51 + var(--theme-secondary-color-legacy-g) * 0.8), calc(51 + var(--theme-secondary-color-legacy-b) * 0.8));
6841
- --theme-secondary-legacy-300: rgb(calc(89.25 + var(--theme-secondary-color-legacy-r) * 0.65), calc(89.25 + var(--theme-secondary-color-legacy-g) * 0.65), calc(89.25 + var(--theme-secondary-color-legacy-b) * 0.65));
6842
- --theme-secondary-legacy-200: rgb(calc(122.4 + var(--theme-secondary-color-legacy-r) * 0.52), calc(122.4 + var(--theme-secondary-color-legacy-g) * 0.52), calc(122.4 + var(--theme-secondary-color-legacy-b) * 0.52));
6843
- --theme-secondary-legacy-150: rgb(calc(165.75 + var(--theme-secondary-color-legacy-r) * 0.35), calc(165.75 + var(--theme-secondary-color-legacy-g) * 0.35), calc(165.75 + var(--theme-secondary-color-legacy-b) * 0.35));
6844
- --theme-secondary-legacy-100: rgb(calc(198.9 + var(--theme-secondary-color-legacy-r) * 0.22), calc(198.9 + var(--theme-secondary-color-legacy-g) * 0.22), calc(198.9 + var(--theme-secondary-color-legacy-b) * 0.22));
6845
- --theme-secondary-legacy-075: rgb(calc(216.75 + var(--theme-secondary-color-legacy-r) * 0.15), calc(216.75 + var(--theme-secondary-color-legacy-g) * 0.15), calc(216.75 + var(--theme-secondary-color-legacy-b) * 0.15));
6846
- --theme-secondary-legacy-050: rgb(calc(234.6 + var(--theme-secondary-color-legacy-r) * 0.08), calc(234.6 + var(--theme-secondary-color-legacy-g) * 0.08), calc(234.6 + var(--theme-secondary-color-legacy-b) * 0.08));
6847
- --theme-secondary-legacy-025: rgb(calc(244.8 + var(--theme-secondary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-b) * 0.04));
6848
- --focus-ring-legacy: hsla(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l), 0.15);
6849
- }
6850
- body.theme-dark,
6851
- body:not(.theme-dark) .theme-dark__forced {
6852
- --white-legacy: hsl(0, 0%, 17.5%);
6853
- --black-legacy: hsl(0, 0%, 100%);
6854
- --black-legacy-025: hsl(0, 0%, 22.5%);
6855
- --black-legacy-050: hsl(0, 0%, 24%);
6856
- --black-legacy-075: hsl(210, 4%, 26%);
6857
- --black-legacy-100: hsl(210, 4.5%, 30.5%);
6858
- --black-legacy-150: hsl(210, 5%, 35%);
6859
- --black-legacy-200: hsl(210, 5.5%, 43.5%);
6860
- --black-legacy-300: hsl(210, 6.5%, 52%);
6861
- --black-legacy-350: hsl(210, 7%, 61%);
6862
- --black-legacy-400: hsl(210, 8%, 65%);
6863
- --black-legacy-500: hsl(210, 8%, 70%);
6864
- --black-legacy-600: hsl(210, 7%, 78.5%);
6865
- --black-legacy-700: hsl(210, 8%, 82.5%);
6866
- --black-legacy-750: hsl(210, 9%, 86.5%);
6867
- --black-legacy-800: hsl(210, 9%, 91.5%);
6868
- --black-legacy-900: hsl(210, 4%, 95%);
6869
- --orange-legacy-050: hsl(27, 16.5%, 23.9%);
6870
- --orange-legacy-100: hsl(27, 30%, 28.4%);
6871
- --orange-legacy-200: hsl(27, 50%, 36.9%);
6872
- --orange-legacy-300: hsl(27, 70%, 47.3%);
6873
- --orange-legacy-400: hsl(27, 90.5%, 54.9%);
6874
- --orange-legacy-500: hsl(27, 100%, 59%);
6875
- --orange-legacy-600: hsl(27, 100%, 68.4%);
6876
- --orange-legacy-700: hsl(27, 89.5%, 74.1%);
6877
- --orange-legacy-800: hsl(27, 92%, 85.7%);
6878
- --orange-legacy-900: hsl(27, 95%, 91.8%);
6879
- --blue-legacy-050: hsl(206, 40%, 23%);
6880
- --blue-legacy-100: hsl(206, 44%, 26%);
6881
- --blue-legacy-200: hsl(206, 46%, 30%);
6882
- --blue-legacy-300: hsl(206, 53%, 35%);
6883
- --blue-legacy-400: hsl(209, 56%, 43%);
6884
- --blue-legacy-500: hsl(206, 64%, 51%);
6885
- --blue-legacy-600: hsl(206, 100%, 60%);
6886
- --blue-legacy-700: hsl(206, 90%, 74%);
6887
- --blue-legacy-800: hsl(206, 95%, 86%);
6888
- --blue-legacy-900: hsl(206, 91%, 91.5%);
6889
- --powder-legacy-050: hsl(205, 5%, 27%);
6890
- --powder-legacy-100: hsl(205, 14%, 28%);
6891
- --powder-legacy-200: hsl(205, 17.5%, 32%);
6892
- --powder-legacy-300: hsl(205, 19.5%, 37%);
6893
- --powder-legacy-400: hsl(205, 22.5%, 44%);
6894
- --powder-legacy-500: hsl(205, 29%, 54%);
6895
- --powder-legacy-600: hsl(205, 50%, 65.5%);
6896
- --powder-legacy-700: hsl(205, 46.5%, 73.5%);
6897
- --powder-legacy-800: hsl(205, 49.5%, 87%);
6898
- --powder-legacy-900: hsl(205, 100%, 95%);
6899
- --green-legacy-025: hsl(140, 18%, 22%);
6900
- --green-legacy-050: hsl(140, 18%, 25%);
6901
- --green-legacy-100: hsl(140, 22.5%, 31%);
6902
- --green-legacy-200: hsl(140, 23.5%, 37%);
6903
- --green-legacy-300: hsl(140, 25%, 40.5%);
6904
- --green-legacy-400: hsl(140, 27.5%, 48.5%);
6905
- --green-legacy-500: hsl(140, 35%, 54.5%);
6906
- --green-legacy-600: hsl(140, 40%, 61.5%);
6907
- --green-legacy-700: hsl(140, 39.5%, 69.5%);
6908
- --green-legacy-800: hsl(140, 39.5%, 78.5%);
6909
- --green-legacy-900: hsl(140, 38%, 86.5%);
6910
- --yellow-legacy-050: hsl(47, 13%, 24.5%);
6911
- --yellow-legacy-100: hsl(47, 19%, 27%);
6912
- --yellow-legacy-200: hsl(47, 30.5%, 31%);
6913
- --yellow-legacy-300: hsl(47, 37%, 36%);
6914
- --yellow-legacy-400: hsl(47, 45.5%, 42.5%);
6915
- --yellow-legacy-500: hsl(47, 55.5%, 48%);
6916
- --yellow-legacy-600: hsl(47, 67.5%, 55.5%);
6917
- --yellow-legacy-700: hsl(47, 84.5%, 64%);
6918
- --yellow-legacy-800: hsl(47, 90%, 72.5%);
6919
- --yellow-legacy-900: hsl(47, 93%, 83.5%);
6920
- --red-legacy-025: hsl(1, 10%, 24%);
6921
- --red-legacy-050: hsl(1, 30%, 26.5%);
6922
- --red-legacy-100: hsl(1, 35%, 33%);
6923
- --red-legacy-200: hsl(1, 37%, 38.5%);
6924
- --red-legacy-300: hsl(1, 39%, 43.5%);
6925
- --red-legacy-400: hsl(1, 42%, 49%);
6926
- --red-legacy-500: hsl(1, 50%, 54%);
6927
- --red-legacy-600: hsl(1, 56.5%, 59.5%);
6928
- --red-legacy-700: hsl(1, 62.5%, 65.5%);
6929
- --red-legacy-800: hsl(1, 64%, 74%);
6930
- --red-legacy-900: hsl(1, 65.5%, 85.5%);
6931
- --gold-legacy: hsl(48, 100%, 50%);
6932
- --gold-legacy-lighter: hsl(48, 22%, 30%);
6933
- --gold-legacy-darker: hsl(45, 100%, 47%);
6934
- --silver-legacy: hsl(210, 6%, 72%);
6935
- --silver-legacy-lighter: hsl(0, 0%, 26%);
6936
- --silver-legacy-darker: hsl(210, 3%, 61%);
6937
- --bronze-legacy: hsl(28, 38%, 67%);
6938
- --bronze-legacy-lighter: hsl(28, 13%, 27%);
6939
- --bronze-legacy-darker: hsl(28, 31%, 52%);
6940
- --bc-lightest-legacy: var(--black-legacy-025);
6941
- --bc-lighter-legacy: var(--black-legacy-050);
6942
- --bc-light-legacy: var(--black-legacy-075);
6943
- --bc-medium-legacy: var(--black-legacy-100);
6944
- --bc-dark-legacy: var(--black-legacy-150);
6945
- --bc-darker-legacy: var(--black-legacy-200);
6946
- --fc-dark-legacy: var(--black-legacy-900);
6947
- --fc-medium-legacy: var(--black-legacy-700);
6948
- --fc-light-legacy: var(--black-legacy-500);
6949
- --focus-ring-success-legacy: hsla(140, 40%, 75%, 0.4);
6950
- --focus-ring-warning-legacy: hsla(47, 79%, 58%, 0.4);
6951
- --focus-ring-error-legacy: hsla(358, 62%, 52%, 0.3);
6952
- --focus-ring-muted-legacy: hsla(0, 0%, 100%, 0.1);
6953
- }
6954
- body.theme-dark,
6955
- body:not(.theme-dark) .theme-dark__forced,
6956
- body.theme-dark .themed,
6957
- body:not(.theme-dark) .theme-dark__forced .themed {
6958
- color: var(--theme-body-font-color, var(--black-600));
6959
- --theme-primary-color-legacy-h: var(--theme-dark-primary-color-legacy-h, var(--theme-base-primary-color-legacy-h));
6960
- --theme-primary-color-legacy-s: var(--theme-dark-primary-color-legacy-s, var(--theme-base-primary-color-legacy-s));
6961
- --theme-primary-color-legacy-l: var(--theme-dark-primary-color-legacy-l, var(--theme-base-primary-color-legacy-l));
6962
- --theme-primary-color-legacy-r: var(--theme-dark-primary-color-legacy-r, var(--theme-base-primary-color-legacy-r));
6963
- --theme-primary-color-legacy-g: var(--theme-dark-primary-color-legacy-g, var(--theme-base-primary-color-legacy-g));
6964
- --theme-primary-color-legacy-b: var(--theme-dark-primary-color-legacy-b, var(--theme-base-primary-color-legacy-b));
6965
- --theme-secondary-color-legacy-h: var(--theme-dark-secondary-color-legacy-h, var(--theme-base-secondary-color-legacy-h));
6966
- --theme-secondary-color-legacy-s: var(--theme-dark-secondary-color-legacy-s, var(--theme-base-secondary-color-legacy-s));
6967
- --theme-secondary-color-legacy-l: var(--theme-dark-secondary-color-legacy-l, var(--theme-base-secondary-color-legacy-l));
6968
- --theme-secondary-color-legacy-r: var(--theme-dark-secondary-color-legacy-r, var(--theme-base-secondary-color-legacy-r));
6969
- --theme-secondary-color-legacy-g: var(--theme-dark-secondary-color-legacy-g, var(--theme-base-secondary-color-legacy-g));
6970
- --theme-secondary-color-legacy-b: var(--theme-dark-secondary-color-legacy-b, var(--theme-base-secondary-color-legacy-b));
6971
- --theme-primary-color-legacy: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), var(--theme-primary-color-legacy-l));
6972
- --theme-secondary-color-legacy: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l));
6973
- --theme-primary-legacy-025: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 73.3%), calc(var(--theme-primary-color-legacy-l) - 31%));
6974
- --theme-primary-legacy-050: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 47%), calc(var(--theme-primary-color-legacy-l) - 15%));
6975
- --theme-primary-legacy-075: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 39%), calc(var(--theme-primary-color-legacy-l) - 13%));
6976
- --theme-primary-legacy-100: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 32%), calc(var(--theme-primary-color-legacy-l) - 11%));
6977
- --theme-primary-legacy-150: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 23%), calc(var(--theme-primary-color-legacy-l) - 9%));
6978
- --theme-primary-legacy-200: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 15%), calc(var(--theme-primary-color-legacy-l) - 7%));
6979
- --theme-primary-legacy-300: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 7%), calc(var(--theme-primary-color-legacy-l) - 5%));
6980
- --theme-primary-legacy-350: var(--theme-primary-color-legacy);
6981
- --theme-primary-legacy-400: rgb(calc(53.55 + var(--theme-primary-color-legacy-r) * 0.79), calc(53.55 + var(--theme-primary-color-legacy-g) * 0.79), calc(53.55 + var(--theme-primary-color-legacy-b) * 0.79));
6982
- --theme-primary-legacy-500: rgb(calc(91.8 + var(--theme-primary-color-legacy-r) * 0.64), calc(91.8 + var(--theme-primary-color-legacy-g) * 0.64), calc(91.8 + var(--theme-primary-color-legacy-b) * 0.64));
6983
- --theme-primary-legacy-600: rgb(calc(130.05 + var(--theme-primary-color-legacy-r) * 0.49), calc(130.05 + var(--theme-primary-color-legacy-g) * 0.49), calc(130.05 + var(--theme-primary-color-legacy-b) * 0.49));
6984
- --theme-primary-legacy-700: rgb(calc(168.3 + var(--theme-primary-color-legacy-r) * 0.34), calc(168.3 + var(--theme-primary-color-legacy-g) * 0.34), calc(168.3 + var(--theme-primary-color-legacy-b) * 0.34));
6985
- --theme-primary-legacy-800: rgb(calc(206.55 + var(--theme-primary-color-legacy-r) * 0.19), calc(206.55 + var(--theme-primary-color-legacy-g) * 0.19), calc(206.55 + var(--theme-primary-color-legacy-b) * 0.19));
6986
- --theme-primary-legacy-900: rgb(calc(244.8 + var(--theme-primary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-b) * 0.04));
6987
- --theme-secondary-legacy-025: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 73.3%), calc(var(--theme-secondary-color-legacy-l) - 31%));
6988
- --theme-secondary-legacy-050: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 47%), calc(var(--theme-secondary-color-legacy-l) - 15%));
6989
- --theme-secondary-legacy-075: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 39%), calc(var(--theme-secondary-color-legacy-l) - 13%));
6990
- --theme-secondary-legacy-100: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 32%), calc(var(--theme-secondary-color-legacy-l) - 11%));
6991
- --theme-secondary-legacy-150: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 23%), calc(var(--theme-secondary-color-legacy-l) - 9%));
6992
- --theme-secondary-legacy-200: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 15%), calc(var(--theme-secondary-color-legacy-l) - 7%));
6993
- --theme-secondary-legacy-300: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 7%), calc(var(--theme-secondary-color-legacy-l) - 5%));
6994
- --theme-secondary-legacy-350: var(--theme-secondary-color-legacy);
6995
- --theme-secondary-legacy-400: rgb(calc(53.55 + var(--theme-secondary-color-legacy-r) * 0.79), calc(53.55 + var(--theme-secondary-color-legacy-g) * 0.79), calc(53.55 + var(--theme-secondary-color-legacy-b) * 0.79));
6996
- --theme-secondary-legacy-500: rgb(calc(91.8 + var(--theme-secondary-color-legacy-r) * 0.64), calc(91.8 + var(--theme-secondary-color-legacy-g) * 0.64), calc(91.8 + var(--theme-secondary-color-legacy-b) * 0.64));
6997
- --theme-secondary-legacy-600: rgb(calc(130.05 + var(--theme-secondary-color-legacy-r) * 0.49), calc(130.05 + var(--theme-secondary-color-legacy-g) * 0.49), calc(130.05 + var(--theme-secondary-color-legacy-b) * 0.49));
6998
- --theme-secondary-legacy-700: rgb(calc(168.3 + var(--theme-secondary-color-legacy-r) * 0.34), calc(168.3 + var(--theme-secondary-color-legacy-g) * 0.34), calc(168.3 + var(--theme-secondary-color-legacy-b) * 0.34));
6999
- --theme-secondary-legacy-800: rgb(calc(206.55 + var(--theme-secondary-color-legacy-r) * 0.19), calc(206.55 + var(--theme-secondary-color-legacy-g) * 0.19), calc(206.55 + var(--theme-secondary-color-legacy-b) * 0.19));
7000
- --theme-secondary-legacy-900: rgb(calc(244.8 + var(--theme-secondary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-b) * 0.04));
7001
- --focus-ring-legacy: hsla(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l), 0.25);
7002
- }
7003
- @media (prefers-color-scheme: dark) {
7004
- body.theme-system {
7005
- --white-legacy: hsl(0, 0%, 17.5%);
7006
- --black-legacy: hsl(0, 0%, 100%);
7007
- --black-legacy-025: hsl(0, 0%, 22.5%);
7008
- --black-legacy-050: hsl(0, 0%, 24%);
7009
- --black-legacy-075: hsl(210, 4%, 26%);
7010
- --black-legacy-100: hsl(210, 4.5%, 30.5%);
7011
- --black-legacy-150: hsl(210, 5%, 35%);
7012
- --black-legacy-200: hsl(210, 5.5%, 43.5%);
7013
- --black-legacy-300: hsl(210, 6.5%, 52%);
7014
- --black-legacy-350: hsl(210, 7%, 61%);
7015
- --black-legacy-400: hsl(210, 8%, 65%);
7016
- --black-legacy-500: hsl(210, 8%, 70%);
7017
- --black-legacy-600: hsl(210, 7%, 78.5%);
7018
- --black-legacy-700: hsl(210, 8%, 82.5%);
7019
- --black-legacy-750: hsl(210, 9%, 86.5%);
7020
- --black-legacy-800: hsl(210, 9%, 91.5%);
7021
- --black-legacy-900: hsl(210, 4%, 95%);
7022
- --orange-legacy-050: hsl(27, 16.5%, 23.9%);
7023
- --orange-legacy-100: hsl(27, 30%, 28.4%);
7024
- --orange-legacy-200: hsl(27, 50%, 36.9%);
7025
- --orange-legacy-300: hsl(27, 70%, 47.3%);
7026
- --orange-legacy-400: hsl(27, 90.5%, 54.9%);
7027
- --orange-legacy-500: hsl(27, 100%, 59%);
7028
- --orange-legacy-600: hsl(27, 100%, 68.4%);
7029
- --orange-legacy-700: hsl(27, 89.5%, 74.1%);
7030
- --orange-legacy-800: hsl(27, 92%, 85.7%);
7031
- --orange-legacy-900: hsl(27, 95%, 91.8%);
7032
- --blue-legacy-050: hsl(206, 40%, 23%);
7033
- --blue-legacy-100: hsl(206, 44%, 26%);
7034
- --blue-legacy-200: hsl(206, 46%, 30%);
7035
- --blue-legacy-300: hsl(206, 53%, 35%);
7036
- --blue-legacy-400: hsl(209, 56%, 43%);
7037
- --blue-legacy-500: hsl(206, 64%, 51%);
7038
- --blue-legacy-600: hsl(206, 100%, 60%);
7039
- --blue-legacy-700: hsl(206, 90%, 74%);
7040
- --blue-legacy-800: hsl(206, 95%, 86%);
7041
- --blue-legacy-900: hsl(206, 91%, 91.5%);
7042
- --powder-legacy-050: hsl(205, 5%, 27%);
7043
- --powder-legacy-100: hsl(205, 14%, 28%);
7044
- --powder-legacy-200: hsl(205, 17.5%, 32%);
7045
- --powder-legacy-300: hsl(205, 19.5%, 37%);
7046
- --powder-legacy-400: hsl(205, 22.5%, 44%);
7047
- --powder-legacy-500: hsl(205, 29%, 54%);
7048
- --powder-legacy-600: hsl(205, 50%, 65.5%);
7049
- --powder-legacy-700: hsl(205, 46.5%, 73.5%);
7050
- --powder-legacy-800: hsl(205, 49.5%, 87%);
7051
- --powder-legacy-900: hsl(205, 100%, 95%);
7052
- --green-legacy-025: hsl(140, 18%, 22%);
7053
- --green-legacy-050: hsl(140, 18%, 25%);
7054
- --green-legacy-100: hsl(140, 22.5%, 31%);
7055
- --green-legacy-200: hsl(140, 23.5%, 37%);
7056
- --green-legacy-300: hsl(140, 25%, 40.5%);
7057
- --green-legacy-400: hsl(140, 27.5%, 48.5%);
7058
- --green-legacy-500: hsl(140, 35%, 54.5%);
7059
- --green-legacy-600: hsl(140, 40%, 61.5%);
7060
- --green-legacy-700: hsl(140, 39.5%, 69.5%);
7061
- --green-legacy-800: hsl(140, 39.5%, 78.5%);
7062
- --green-legacy-900: hsl(140, 38%, 86.5%);
7063
- --yellow-legacy-050: hsl(47, 13%, 24.5%);
7064
- --yellow-legacy-100: hsl(47, 19%, 27%);
7065
- --yellow-legacy-200: hsl(47, 30.5%, 31%);
7066
- --yellow-legacy-300: hsl(47, 37%, 36%);
7067
- --yellow-legacy-400: hsl(47, 45.5%, 42.5%);
7068
- --yellow-legacy-500: hsl(47, 55.5%, 48%);
7069
- --yellow-legacy-600: hsl(47, 67.5%, 55.5%);
7070
- --yellow-legacy-700: hsl(47, 84.5%, 64%);
7071
- --yellow-legacy-800: hsl(47, 90%, 72.5%);
7072
- --yellow-legacy-900: hsl(47, 93%, 83.5%);
7073
- --red-legacy-025: hsl(1, 10%, 24%);
7074
- --red-legacy-050: hsl(1, 30%, 26.5%);
7075
- --red-legacy-100: hsl(1, 35%, 33%);
7076
- --red-legacy-200: hsl(1, 37%, 38.5%);
7077
- --red-legacy-300: hsl(1, 39%, 43.5%);
7078
- --red-legacy-400: hsl(1, 42%, 49%);
7079
- --red-legacy-500: hsl(1, 50%, 54%);
7080
- --red-legacy-600: hsl(1, 56.5%, 59.5%);
7081
- --red-legacy-700: hsl(1, 62.5%, 65.5%);
7082
- --red-legacy-800: hsl(1, 64%, 74%);
7083
- --red-legacy-900: hsl(1, 65.5%, 85.5%);
7084
- --gold-legacy: hsl(48, 100%, 50%);
7085
- --gold-legacy-lighter: hsl(48, 22%, 30%);
7086
- --gold-legacy-darker: hsl(45, 100%, 47%);
7087
- --silver-legacy: hsl(210, 6%, 72%);
7088
- --silver-legacy-lighter: hsl(0, 0%, 26%);
7089
- --silver-legacy-darker: hsl(210, 3%, 61%);
7090
- --bronze-legacy: hsl(28, 38%, 67%);
7091
- --bronze-legacy-lighter: hsl(28, 13%, 27%);
7092
- --bronze-legacy-darker: hsl(28, 31%, 52%);
7093
- --bc-lightest-legacy: var(--black-legacy-025);
7094
- --bc-lighter-legacy: var(--black-legacy-050);
7095
- --bc-light-legacy: var(--black-legacy-075);
7096
- --bc-medium-legacy: var(--black-legacy-100);
7097
- --bc-dark-legacy: var(--black-legacy-150);
7098
- --bc-darker-legacy: var(--black-legacy-200);
7099
- --fc-dark-legacy: var(--black-legacy-900);
7100
- --fc-medium-legacy: var(--black-legacy-700);
7101
- --fc-light-legacy: var(--black-legacy-500);
7102
- --focus-ring-success-legacy: hsla(140, 40%, 75%, 0.4);
7103
- --focus-ring-warning-legacy: hsla(47, 79%, 58%, 0.4);
7104
- --focus-ring-error-legacy: hsla(358, 62%, 52%, 0.3);
7105
- --focus-ring-muted-legacy: hsla(0, 0%, 100%, 0.1);
7106
- }
7107
- body.theme-system,
7108
- body.theme-system .themed {
7109
- color: var(--theme-body-font-color, var(--black-600));
7110
- --theme-primary-color-legacy-h: var(--theme-dark-primary-color-legacy-h, var(--theme-base-primary-color-legacy-h));
7111
- --theme-primary-color-legacy-s: var(--theme-dark-primary-color-legacy-s, var(--theme-base-primary-color-legacy-s));
7112
- --theme-primary-color-legacy-l: var(--theme-dark-primary-color-legacy-l, var(--theme-base-primary-color-legacy-l));
7113
- --theme-primary-color-legacy-r: var(--theme-dark-primary-color-legacy-r, var(--theme-base-primary-color-legacy-r));
7114
- --theme-primary-color-legacy-g: var(--theme-dark-primary-color-legacy-g, var(--theme-base-primary-color-legacy-g));
7115
- --theme-primary-color-legacy-b: var(--theme-dark-primary-color-legacy-b, var(--theme-base-primary-color-legacy-b));
7116
- --theme-secondary-color-legacy-h: var(--theme-dark-secondary-color-legacy-h, var(--theme-base-secondary-color-legacy-h));
7117
- --theme-secondary-color-legacy-s: var(--theme-dark-secondary-color-legacy-s, var(--theme-base-secondary-color-legacy-s));
7118
- --theme-secondary-color-legacy-l: var(--theme-dark-secondary-color-legacy-l, var(--theme-base-secondary-color-legacy-l));
7119
- --theme-secondary-color-legacy-r: var(--theme-dark-secondary-color-legacy-r, var(--theme-base-secondary-color-legacy-r));
7120
- --theme-secondary-color-legacy-g: var(--theme-dark-secondary-color-legacy-g, var(--theme-base-secondary-color-legacy-g));
7121
- --theme-secondary-color-legacy-b: var(--theme-dark-secondary-color-legacy-b, var(--theme-base-secondary-color-legacy-b));
7122
- --theme-primary-color-legacy: hsl(var(--theme-primary-color-legacy-h), var(--theme-primary-color-legacy-s), var(--theme-primary-color-legacy-l));
7123
- --theme-secondary-color-legacy: hsl(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l));
7124
- --theme-primary-legacy-025: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 73.3%), calc(var(--theme-primary-color-legacy-l) - 31%));
7125
- --theme-primary-legacy-050: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 47%), calc(var(--theme-primary-color-legacy-l) - 15%));
7126
- --theme-primary-legacy-075: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 39%), calc(var(--theme-primary-color-legacy-l) - 13%));
7127
- --theme-primary-legacy-100: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 32%), calc(var(--theme-primary-color-legacy-l) - 11%));
7128
- --theme-primary-legacy-150: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 23%), calc(var(--theme-primary-color-legacy-l) - 9%));
7129
- --theme-primary-legacy-200: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 15%), calc(var(--theme-primary-color-legacy-l) - 7%));
7130
- --theme-primary-legacy-300: hsl(var(--theme-primary-color-legacy-h), calc(var(--theme-primary-color-legacy-s) - 7%), calc(var(--theme-primary-color-legacy-l) - 5%));
7131
- --theme-primary-legacy-350: var(--theme-primary-color-legacy);
7132
- --theme-primary-legacy-400: rgb(calc(53.55 + var(--theme-primary-color-legacy-r) * 0.79), calc(53.55 + var(--theme-primary-color-legacy-g) * 0.79), calc(53.55 + var(--theme-primary-color-legacy-b) * 0.79));
7133
- --theme-primary-legacy-500: rgb(calc(91.8 + var(--theme-primary-color-legacy-r) * 0.64), calc(91.8 + var(--theme-primary-color-legacy-g) * 0.64), calc(91.8 + var(--theme-primary-color-legacy-b) * 0.64));
7134
- --theme-primary-legacy-600: rgb(calc(130.05 + var(--theme-primary-color-legacy-r) * 0.49), calc(130.05 + var(--theme-primary-color-legacy-g) * 0.49), calc(130.05 + var(--theme-primary-color-legacy-b) * 0.49));
7135
- --theme-primary-legacy-700: rgb(calc(168.3 + var(--theme-primary-color-legacy-r) * 0.34), calc(168.3 + var(--theme-primary-color-legacy-g) * 0.34), calc(168.3 + var(--theme-primary-color-legacy-b) * 0.34));
7136
- --theme-primary-legacy-800: rgb(calc(206.55 + var(--theme-primary-color-legacy-r) * 0.19), calc(206.55 + var(--theme-primary-color-legacy-g) * 0.19), calc(206.55 + var(--theme-primary-color-legacy-b) * 0.19));
7137
- --theme-primary-legacy-900: rgb(calc(244.8 + var(--theme-primary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-primary-color-legacy-b) * 0.04));
7138
- --theme-secondary-legacy-025: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 73.3%), calc(var(--theme-secondary-color-legacy-l) - 31%));
7139
- --theme-secondary-legacy-050: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 47%), calc(var(--theme-secondary-color-legacy-l) - 15%));
7140
- --theme-secondary-legacy-075: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 39%), calc(var(--theme-secondary-color-legacy-l) - 13%));
7141
- --theme-secondary-legacy-100: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 32%), calc(var(--theme-secondary-color-legacy-l) - 11%));
7142
- --theme-secondary-legacy-150: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 23%), calc(var(--theme-secondary-color-legacy-l) - 9%));
7143
- --theme-secondary-legacy-200: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 15%), calc(var(--theme-secondary-color-legacy-l) - 7%));
7144
- --theme-secondary-legacy-300: hsl(var(--theme-secondary-color-legacy-h), calc(var(--theme-secondary-color-legacy-s) - 7%), calc(var(--theme-secondary-color-legacy-l) - 5%));
7145
- --theme-secondary-legacy-350: var(--theme-secondary-color-legacy);
7146
- --theme-secondary-legacy-400: rgb(calc(53.55 + var(--theme-secondary-color-legacy-r) * 0.79), calc(53.55 + var(--theme-secondary-color-legacy-g) * 0.79), calc(53.55 + var(--theme-secondary-color-legacy-b) * 0.79));
7147
- --theme-secondary-legacy-500: rgb(calc(91.8 + var(--theme-secondary-color-legacy-r) * 0.64), calc(91.8 + var(--theme-secondary-color-legacy-g) * 0.64), calc(91.8 + var(--theme-secondary-color-legacy-b) * 0.64));
7148
- --theme-secondary-legacy-600: rgb(calc(130.05 + var(--theme-secondary-color-legacy-r) * 0.49), calc(130.05 + var(--theme-secondary-color-legacy-g) * 0.49), calc(130.05 + var(--theme-secondary-color-legacy-b) * 0.49));
7149
- --theme-secondary-legacy-700: rgb(calc(168.3 + var(--theme-secondary-color-legacy-r) * 0.34), calc(168.3 + var(--theme-secondary-color-legacy-g) * 0.34), calc(168.3 + var(--theme-secondary-color-legacy-b) * 0.34));
7150
- --theme-secondary-legacy-800: rgb(calc(206.55 + var(--theme-secondary-color-legacy-r) * 0.19), calc(206.55 + var(--theme-secondary-color-legacy-g) * 0.19), calc(206.55 + var(--theme-secondary-color-legacy-b) * 0.19));
7151
- --theme-secondary-legacy-900: rgb(calc(244.8 + var(--theme-secondary-color-legacy-r) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-g) * 0.04), calc(244.8 + var(--theme-secondary-color-legacy-b) * 0.04));
7152
- --focus-ring-legacy: hsla(var(--theme-secondary-color-legacy-h), var(--theme-secondary-color-legacy-s), var(--theme-secondary-color-legacy-l), 0.25);
7153
- }
7154
- }
7155
- body.theme-highcontrast:not(.theme-dark),
7156
- body.theme-dark.theme-highcontrast .theme-light__forced,
7157
- body.theme-system.theme-highcontrast .theme-light__forced {
7158
- --white-legacy: hsl(0, 0%, 100%);
7159
- --black-legacy: hsl(0, 0%, 0%);
7160
- --black-legacy-025: hsl(210, 8%, 97.5%);
7161
- --black-legacy-050: hsl(210, 8%, 95%);
7162
- --black-legacy-075: hsl(210, 8%, 92.5%);
7163
- --black-legacy-100: hsl(210, 8%, 90%);
7164
- --black-legacy-150: hsl(210, 8%, 87.5%);
7165
- --black-legacy-200: hsl(210, 8%, 85%);
7166
- --black-legacy-300: hsl(210, 8%, 35%);
7167
- --black-legacy-350: hsl(210, 8%, 32.5%);
7168
- --black-legacy-400: hsl(210, 8%, 30%);
7169
- --black-legacy-500: hsl(210, 8%, 25%);
7170
- --black-legacy-600: hsl(210, 8%, 20%);
7171
- --black-legacy-700: hsl(210, 8%, 15%);
7172
- --black-legacy-750: hsl(210, 8%, 10%);
7173
- --black-legacy-800: hsl(210, 8%, 5%);
7174
- --black-legacy-900: hsl(0, 0%, 0%);
7175
- --orange-legacy-050: hsl(27, 100%, 93%);
7176
- --orange-legacy-100: hsl(27, 100%, 90%);
7177
- --orange-legacy-200: hsl(27, 100%, 86%);
7178
- --orange-legacy-300: hsl(27, 100%, 81%);
7179
- --orange-legacy-400: hsl(27, 100%, 34%);
7180
- --orange-legacy-500: hsl(27, 100%, 29%);
7181
- --orange-legacy-600: hsl(27, 100%, 24%);
7182
- --orange-legacy-700: hsl(27, 100%, 19%);
7183
- --orange-legacy-800: hsl(27, 100%, 13%);
7184
- --orange-legacy-900: hsl(27, 100%, 8%);
7185
- --blue-legacy-050: hsl(206, 100%, 94%);
7186
- --blue-legacy-100: hsl(206, 100%, 92%);
7187
- --blue-legacy-200: hsl(206, 100%, 89%);
7188
- --blue-legacy-300: hsl(206, 100%, 86%);
7189
- --blue-legacy-400: hsl(206, 100%, 25%);
7190
- --blue-legacy-500: hsl(206, 100%, 20%);
7191
- --blue-legacy-600: hsl(206, 100%, 15%);
7192
- --blue-legacy-700: hsl(206, 100%, 10%);
7193
- --blue-legacy-800: hsl(206, 100%, 7.5%);
7194
- --blue-legacy-900: hsl(206, 100%, 5%);
7195
- --powder-legacy-050: hsl(205, 100%, 95%);
7196
- --powder-legacy-100: hsl(205, 85%, 93%);
7197
- --powder-legacy-200: hsl(205, 75%, 89%);
7198
- --powder-legacy-300: hsl(205, 70%, 86%);
7199
- --powder-legacy-400: hsl(205, 55%, 28%);
7200
- --powder-legacy-500: hsl(205, 60%, 24%);
7201
- --powder-legacy-600: hsl(205, 70%, 20%);
7202
- --powder-legacy-700: hsl(205, 75%, 16%);
7203
- --powder-legacy-800: hsl(205, 75%, 12%);
7204
- --powder-legacy-900: hsl(205, 75%, 8%);
7205
- --green-legacy-025: hsl(140, 100%, 94%);
7206
- --green-legacy-050: hsl(140, 100%, 91%);
7207
- --green-legacy-100: hsl(140, 100%, 87%);
7208
- --green-legacy-200: hsl(140, 100%, 83%);
7209
- --green-legacy-300: hsl(140, 100%, 78%);
7210
- --green-legacy-400: hsl(140, 100%, 18%);
7211
- --green-legacy-500: hsl(140, 100%, 15%);
7212
- --green-legacy-600: hsl(140, 100%, 12%);
7213
- --green-legacy-700: hsl(140, 100%, 9%);
7214
- --green-legacy-800: hsl(140, 100%, 6%);
7215
- --green-legacy-900: hsl(140, 100%, 3%);
7216
- --yellow-legacy-050: hsl(47, 100%, 92%);
7217
- --yellow-legacy-100: hsl(47, 100%, 88%);
7218
- --yellow-legacy-200: hsl(47, 95%, 83%);
7219
- --yellow-legacy-300: hsl(47, 95%, 75%);
7220
- --yellow-legacy-400: hsl(47, 100%, 28%);
7221
- --yellow-legacy-500: hsl(47, 100%, 26%);
7222
- --yellow-legacy-600: hsl(47, 100%, 23%);
7223
- --yellow-legacy-700: hsl(47, 100%, 19%);
7224
- --yellow-legacy-800: hsl(47, 100%, 13%);
7225
- --yellow-legacy-900: hsl(47, 100%, 7%);
7226
- --red-legacy-025: hsl(358, 100%, 97%);
7227
- --red-legacy-050: hsl(358, 100%, 94%);
7228
- --red-legacy-100: hsl(358, 100%, 92%);
7229
- --red-legacy-200: hsl(358, 100%, 89%);
7230
- --red-legacy-300: hsl(358, 100%, 86%);
7231
- --red-legacy-400: hsl(358, 100%, 35%);
7232
- --red-legacy-500: hsl(358, 100%, 29%);
7233
- --red-legacy-600: hsl(358, 100%, 23%);
7234
- --red-legacy-700: hsl(358, 100%, 17%);
7235
- --red-legacy-800: hsl(358, 100%, 11%);
7236
- --red-legacy-900: hsl(358, 100%, 7%);
7237
- --gold-legacy: hsl(48, 100%, 50%);
7238
- --gold-legacy-lighter: hsl(48, 100%, 91%);
7239
- --gold-legacy-darker: hsl(45, 100%, 20%);
7240
- --silver-legacy: hsl(210, 6%, 72%);
7241
- --silver-legacy-lighter: hsl(210, 6%, 91%);
7242
- --silver-legacy-darker: hsl(210, 6%, 30%);
7243
- --bronze-legacy: hsl(28, 38%, 65%);
7244
- --bronze-legacy-lighter: hsl(28, 40%, 92%);
7245
- --bronze-legacy-darker: hsl(28, 31%, 25%);
7246
- --bc-lightest-legacy: var(--black-legacy-400);
7247
- --bc-lighter-legacy: var(--black-legacy-400);
7248
- --bc-light-legacy: var(--black-legacy-400);
7249
- --bc-medium-legacy: var(--black-legacy-400);
7250
- --bc-dark-legacy: var(--black-legacy-700);
7251
- --bc-darker-legacy: var(--black-legacy-900);
7252
- --fc-dark-legacy: var(--black-legacy-900);
7253
- --fc-medium-legacy: var(--black-legacy-700);
7254
- --fc-light-legacy: var(--black-legacy-500);
7255
- --focus-ring-legacy: hsla(206, 100%, 40%, 0.9);
7256
- --focus-ring-success-legacy: hsla(140, 40%, 40%, 0.9);
7257
- --focus-ring-warning-legacy: hsla(47, 76%, 46%, 0.9);
7258
- --focus-ring-error-legacy: hsla(358, 62%, 47%, 0.9);
7259
- --focus-ring-muted-legacy: hsla(210, 8%, 55%, 0.95);
7260
- --theme-primary-color-legacy: var(--orange-legacy-400);
7261
- --theme-primary-legacy-025: var(--orange-legacy-050);
7262
- --theme-primary-legacy-050: var(--orange-legacy-050);
7263
- --theme-primary-legacy-075: var(--orange-legacy-050);
7264
- --theme-primary-legacy-100: var(--orange-legacy-100);
7265
- --theme-primary-legacy-150: var(--orange-legacy-100);
7266
- --theme-primary-legacy-200: var(--orange-legacy-200);
7267
- --theme-primary-legacy-300: var(--orange-legacy-300);
7268
- --theme-primary-legacy-350: var(--orange-legacy-300);
7269
- --theme-primary-legacy-400: var(--orange-legacy-400);
7270
- --theme-primary-legacy-500: var(--orange-legacy-500);
7271
- --theme-primary-legacy-600: var(--orange-legacy-600);
7272
- --theme-primary-legacy-700: var(--orange-legacy-700);
7273
- --theme-primary-legacy-800: var(--orange-legacy-800);
7274
- --theme-primary-legacy-900: var(--orange-legacy-900);
7275
- --theme-secondary-color-legacy: var(--blue-legacy-400);
7276
- --theme-secondary-legacy-025: var(--blue-legacy-050);
7277
- --theme-secondary-legacy-050: var(--blue-legacy-050);
7278
- --theme-secondary-legacy-075: var(--blue-legacy-050);
7279
- --theme-secondary-legacy-100: var(--blue-legacy-100);
7280
- --theme-secondary-legacy-150: var(--blue-legacy-100);
7281
- --theme-secondary-legacy-200: var(--blue-legacy-200);
7282
- --theme-secondary-legacy-300: var(--blue-legacy-300);
7283
- --theme-secondary-legacy-350: var(--blue-legacy-300);
7284
- --theme-secondary-legacy-400: var(--blue-legacy-400);
7285
- --theme-secondary-legacy-500: var(--blue-legacy-500);
7286
- --theme-secondary-legacy-600: var(--blue-legacy-600);
7287
- --theme-secondary-legacy-700: var(--blue-legacy-700);
7288
- --theme-secondary-legacy-800: var(--blue-legacy-800);
7289
- --theme-secondary-legacy-900: var(--blue-legacy-900);
7290
- }
7291
- body.theme-dark.theme-highcontrast,
7292
- body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
7293
- --white-legacy: hsl(0, 0%, 0%);
7294
- --black-legacy: hsl(0, 0%, 100%);
7295
- --black-legacy-025: hsl(210, 8%, 2.5%);
7296
- --black-legacy-050: hsl(210, 8%, 5%);
7297
- --black-legacy-075: hsl(210, 8%, 7.5%);
7298
- --black-legacy-100: hsl(210, 8%, 10%);
7299
- --black-legacy-150: hsl(210, 8%, 12.5%);
7300
- --black-legacy-200: hsl(210, 8%, 15%);
7301
- --black-legacy-300: hsl(210, 8%, 65%);
7302
- --black-legacy-350: hsl(210, 8%, 67.5%);
7303
- --black-legacy-400: hsl(210, 8%, 70%);
7304
- --black-legacy-500: hsl(210, 8%, 75%);
7305
- --black-legacy-600: hsl(210, 8%, 80%);
7306
- --black-legacy-700: hsl(210, 8%, 85%);
7307
- --black-legacy-750: hsl(210, 8%, 90%);
7308
- --black-legacy-800: hsl(210, 8%, 95%);
7309
- --black-legacy-900: hsl(0, 0%, 100%);
7310
- --orange-legacy-050: hsl(27, 100%, 7%);
7311
- --orange-legacy-100: hsl(27, 100%, 9%);
7312
- --orange-legacy-200: hsl(27, 100%, 15%);
7313
- --orange-legacy-300: hsl(27, 100%, 22%);
7314
- --orange-legacy-400: hsl(27, 100%, 64%);
7315
- --orange-legacy-500: hsl(27, 100%, 71%);
7316
- --orange-legacy-600: hsl(27, 100%, 77%);
7317
- --orange-legacy-700: hsl(27, 100%, 82%);
7318
- --orange-legacy-800: hsl(27, 100%, 87%);
7319
- --orange-legacy-900: hsl(27, 100%, 91%);
7320
- --blue-legacy-050: hsl(206, 100%, 7%);
7321
- --blue-legacy-100: hsl(206, 100%, 11%);
7322
- --blue-legacy-200: hsl(206, 100%, 17%);
7323
- --blue-legacy-300: hsl(206, 100%, 24%);
7324
- --blue-legacy-400: hsl(206, 100%, 75%);
7325
- --blue-legacy-500: hsl(206, 100%, 80%);
7326
- --blue-legacy-600: hsl(206, 100%, 85%);
7327
- --blue-legacy-700: hsl(206, 100%, 90%);
7328
- --blue-legacy-800: hsl(206, 100%, 92.5%);
7329
- --blue-legacy-900: hsl(206, 100%, 95%);
7330
- --powder-legacy-050: hsl(205, 100%, 7%);
7331
- --powder-legacy-100: hsl(205, 95%, 10%);
7332
- --powder-legacy-200: hsl(205, 80%, 14%);
7333
- --powder-legacy-300: hsl(205, 76%, 19%);
7334
- --powder-legacy-400: hsl(205, 55%, 72%);
7335
- --powder-legacy-500: hsl(205, 60%, 76%);
7336
- --powder-legacy-600: hsl(205, 70%, 80%);
7337
- --powder-legacy-700: hsl(205, 75%, 84%);
7338
- --powder-legacy-800: hsl(205, 75%, 88%);
7339
- --powder-legacy-900: hsl(205, 75%, 92%);
7340
- --green-legacy-025: hsl(140, 100%, 5%);
7341
- --green-legacy-050: hsl(140, 100%, 6%);
7342
- --green-legacy-100: hsl(140, 100%, 7%);
7343
- --green-legacy-200: hsl(140, 100%, 11%);
7344
- --green-legacy-300: hsl(140, 100%, 15%);
7345
- --green-legacy-400: hsl(140, 100%, 65%);
7346
- --green-legacy-500: hsl(140, 100%, 71%);
7347
- --green-legacy-600: hsl(140, 100%, 77%);
7348
- --green-legacy-700: hsl(140, 100%, 83%);
7349
- --green-legacy-800: hsl(140, 100%, 89%);
7350
- --green-legacy-900: hsl(140, 100%, 94%);
7351
- --yellow-legacy-050: hsl(47, 100%, 6%);
7352
- --yellow-legacy-100: hsl(47, 100%, 9%);
7353
- --yellow-legacy-200: hsl(47, 100%, 14%);
7354
- --yellow-legacy-300: hsl(47, 100%, 20%);
7355
- --yellow-legacy-400: hsl(47, 100%, 55%);
7356
- --yellow-legacy-500: hsl(47, 100%, 63%);
7357
- --yellow-legacy-600: hsl(47, 100%, 71%);
7358
- --yellow-legacy-700: hsl(47, 100%, 79%);
7359
- --yellow-legacy-800: hsl(47, 100%, 87%);
7360
- --yellow-legacy-900: hsl(47, 100%, 95%);
7361
- --red-legacy-025: hsl(358, 100%, 7%);
7362
- --red-legacy-050: hsl(358, 100%, 9%);
7363
- --red-legacy-100: hsl(358, 100%, 12%);
7364
- --red-legacy-200: hsl(358, 100%, 17%);
7365
- --red-legacy-300: hsl(358, 100%, 22%);
7366
- --red-legacy-400: hsl(358, 100%, 70%);
7367
- --red-legacy-500: hsl(358, 100%, 75%);
7368
- --red-legacy-600: hsl(358, 100%, 80%);
7369
- --red-legacy-700: hsl(358, 100%, 85%);
7370
- --red-legacy-800: hsl(358, 100%, 90%);
7371
- --red-legacy-900: hsl(358, 100%, 95%);
7372
- --gold-legacy: hsl(48, 100%, 50%);
7373
- --gold-legacy-lighter: hsl(45, 100%, 9%);
7374
- --gold-legacy-darker: hsl(45, 100%, 80%);
7375
- --silver-legacy: hsl(210, 6%, 72%);
7376
- --silver-legacy-lighter: hsl(210, 5%, 9%);
7377
- --silver-legacy-darker: hsl(210, 5%, 70%);
7378
- --bronze-legacy: hsl(28, 38%, 65%);
7379
- --bronze-legacy-lighter: hsl(28, 40%, 8%);
7380
- --bronze-legacy-darker: hsl(28, 46.7%, 75%);
7381
- --bc-lightest-legacy: var(--black-legacy-400);
7382
- --bc-lighter-legacy: var(--black-legacy-400);
7383
- --bc-light-legacy: var(--black-legacy-400);
7384
- --bc-medium-legacy: var(--black-legacy-400);
7385
- --bc-dark-legacy: var(--black-legacy-700);
7386
- --bc-darker-legacy: var(--black-legacy-900);
7387
- --focus-ring-legacy: hsla(206, 100%, 40%, 0.9);
7388
- --focus-ring-success-legacy: hsla(140, 40%, 40%, 0.9);
7389
- --focus-ring-warning-legacy: hsla(47, 76%, 46%, 0.9);
7390
- --focus-ring-error-legacy: hsla(358, 62%, 47%, 0.9);
7391
- --focus-ring-muted-legacy: hsla(210, 8%, 55%, 0.95);
7392
- --fc-dark-legacy: var(--black-legacy-900);
7393
- --fc-medium-legacy: var(--black-legacy-700);
7394
- --fc-light-legacy: var(--black-legacy-500);
7395
- --theme-primary-color-legacy: var(--orange-legacy-400);
7396
- --theme-primary-legacy-025: var(--orange-legacy-050);
7397
- --theme-primary-legacy-050: var(--orange-legacy-050);
7398
- --theme-primary-legacy-075: var(--orange-legacy-050);
7399
- --theme-primary-legacy-100: var(--orange-legacy-100);
7400
- --theme-primary-legacy-150: var(--orange-legacy-100);
7401
- --theme-primary-legacy-200: var(--orange-legacy-200);
7402
- --theme-primary-legacy-300: var(--orange-legacy-300);
7403
- --theme-primary-legacy-350: var(--orange-legacy-300);
7404
- --theme-primary-legacy-400: var(--orange-legacy-400);
7405
- --theme-primary-legacy-500: var(--orange-legacy-500);
7406
- --theme-primary-legacy-600: var(--orange-legacy-600);
7407
- --theme-primary-legacy-700: var(--orange-legacy-700);
7408
- --theme-primary-legacy-800: var(--orange-legacy-800);
7409
- --theme-primary-legacy-900: var(--orange-legacy-900);
7410
- --theme-secondary-color-legacy: var(--blue-legacy-400);
7411
- --theme-secondary-legacy-025: var(--blue-legacy-050);
7412
- --theme-secondary-legacy-050: var(--blue-legacy-050);
7413
- --theme-secondary-legacy-075: var(--blue-legacy-050);
7414
- --theme-secondary-legacy-100: var(--blue-legacy-100);
7415
- --theme-secondary-legacy-150: var(--blue-legacy-100);
7416
- --theme-secondary-legacy-200: var(--blue-legacy-200);
7417
- --theme-secondary-legacy-300: var(--blue-legacy-300);
7418
- --theme-secondary-legacy-350: var(--blue-legacy-300);
7419
- --theme-secondary-legacy-400: var(--blue-legacy-400);
7420
- --theme-secondary-legacy-500: var(--blue-legacy-500);
7421
- --theme-secondary-legacy-600: var(--blue-legacy-600);
7422
- --theme-secondary-legacy-700: var(--blue-legacy-700);
7423
- --theme-secondary-legacy-800: var(--blue-legacy-800);
7424
- --theme-secondary-legacy-900: var(--blue-legacy-900);
7425
- }
7426
- @media (prefers-color-scheme: dark) {
7427
- body.theme-system.theme-highcontrast {
7428
- --white-legacy: hsl(0, 0%, 0%);
7429
- --black-legacy: hsl(0, 0%, 100%);
7430
- --black-legacy-025: hsl(210, 8%, 2.5%);
7431
- --black-legacy-050: hsl(210, 8%, 5%);
7432
- --black-legacy-075: hsl(210, 8%, 7.5%);
7433
- --black-legacy-100: hsl(210, 8%, 10%);
7434
- --black-legacy-150: hsl(210, 8%, 12.5%);
7435
- --black-legacy-200: hsl(210, 8%, 15%);
7436
- --black-legacy-300: hsl(210, 8%, 65%);
7437
- --black-legacy-350: hsl(210, 8%, 67.5%);
7438
- --black-legacy-400: hsl(210, 8%, 70%);
7439
- --black-legacy-500: hsl(210, 8%, 75%);
7440
- --black-legacy-600: hsl(210, 8%, 80%);
7441
- --black-legacy-700: hsl(210, 8%, 85%);
7442
- --black-legacy-750: hsl(210, 8%, 90%);
7443
- --black-legacy-800: hsl(210, 8%, 95%);
7444
- --black-legacy-900: hsl(0, 0%, 100%);
7445
- --orange-legacy-050: hsl(27, 100%, 7%);
7446
- --orange-legacy-100: hsl(27, 100%, 9%);
7447
- --orange-legacy-200: hsl(27, 100%, 15%);
7448
- --orange-legacy-300: hsl(27, 100%, 22%);
7449
- --orange-legacy-400: hsl(27, 100%, 64%);
7450
- --orange-legacy-500: hsl(27, 100%, 71%);
7451
- --orange-legacy-600: hsl(27, 100%, 77%);
7452
- --orange-legacy-700: hsl(27, 100%, 82%);
7453
- --orange-legacy-800: hsl(27, 100%, 87%);
7454
- --orange-legacy-900: hsl(27, 100%, 91%);
7455
- --blue-legacy-050: hsl(206, 100%, 7%);
7456
- --blue-legacy-100: hsl(206, 100%, 11%);
7457
- --blue-legacy-200: hsl(206, 100%, 17%);
7458
- --blue-legacy-300: hsl(206, 100%, 24%);
7459
- --blue-legacy-400: hsl(206, 100%, 75%);
7460
- --blue-legacy-500: hsl(206, 100%, 80%);
7461
- --blue-legacy-600: hsl(206, 100%, 85%);
7462
- --blue-legacy-700: hsl(206, 100%, 90%);
7463
- --blue-legacy-800: hsl(206, 100%, 92.5%);
7464
- --blue-legacy-900: hsl(206, 100%, 95%);
7465
- --powder-legacy-050: hsl(205, 100%, 7%);
7466
- --powder-legacy-100: hsl(205, 95%, 10%);
7467
- --powder-legacy-200: hsl(205, 80%, 14%);
7468
- --powder-legacy-300: hsl(205, 76%, 19%);
7469
- --powder-legacy-400: hsl(205, 55%, 72%);
7470
- --powder-legacy-500: hsl(205, 60%, 76%);
7471
- --powder-legacy-600: hsl(205, 70%, 80%);
7472
- --powder-legacy-700: hsl(205, 75%, 84%);
7473
- --powder-legacy-800: hsl(205, 75%, 88%);
7474
- --powder-legacy-900: hsl(205, 75%, 92%);
7475
- --green-legacy-025: hsl(140, 100%, 5%);
7476
- --green-legacy-050: hsl(140, 100%, 6%);
7477
- --green-legacy-100: hsl(140, 100%, 7%);
7478
- --green-legacy-200: hsl(140, 100%, 11%);
7479
- --green-legacy-300: hsl(140, 100%, 15%);
7480
- --green-legacy-400: hsl(140, 100%, 65%);
7481
- --green-legacy-500: hsl(140, 100%, 71%);
7482
- --green-legacy-600: hsl(140, 100%, 77%);
7483
- --green-legacy-700: hsl(140, 100%, 83%);
7484
- --green-legacy-800: hsl(140, 100%, 89%);
7485
- --green-legacy-900: hsl(140, 100%, 94%);
7486
- --yellow-legacy-050: hsl(47, 100%, 6%);
7487
- --yellow-legacy-100: hsl(47, 100%, 9%);
7488
- --yellow-legacy-200: hsl(47, 100%, 14%);
7489
- --yellow-legacy-300: hsl(47, 100%, 20%);
7490
- --yellow-legacy-400: hsl(47, 100%, 55%);
7491
- --yellow-legacy-500: hsl(47, 100%, 63%);
7492
- --yellow-legacy-600: hsl(47, 100%, 71%);
7493
- --yellow-legacy-700: hsl(47, 100%, 79%);
7494
- --yellow-legacy-800: hsl(47, 100%, 87%);
7495
- --yellow-legacy-900: hsl(47, 100%, 95%);
7496
- --red-legacy-025: hsl(358, 100%, 7%);
7497
- --red-legacy-050: hsl(358, 100%, 9%);
7498
- --red-legacy-100: hsl(358, 100%, 12%);
7499
- --red-legacy-200: hsl(358, 100%, 17%);
7500
- --red-legacy-300: hsl(358, 100%, 22%);
7501
- --red-legacy-400: hsl(358, 100%, 70%);
7502
- --red-legacy-500: hsl(358, 100%, 75%);
7503
- --red-legacy-600: hsl(358, 100%, 80%);
7504
- --red-legacy-700: hsl(358, 100%, 85%);
7505
- --red-legacy-800: hsl(358, 100%, 90%);
7506
- --red-legacy-900: hsl(358, 100%, 95%);
7507
- --gold-legacy: hsl(48, 100%, 50%);
7508
- --gold-legacy-lighter: hsl(45, 100%, 9%);
7509
- --gold-legacy-darker: hsl(45, 100%, 80%);
7510
- --silver-legacy: hsl(210, 6%, 72%);
7511
- --silver-legacy-lighter: hsl(210, 5%, 9%);
7512
- --silver-legacy-darker: hsl(210, 5%, 70%);
7513
- --bronze-legacy: hsl(28, 38%, 65%);
7514
- --bronze-legacy-lighter: hsl(28, 40%, 8%);
7515
- --bronze-legacy-darker: hsl(28, 46.7%, 75%);
7516
- --bc-lightest-legacy: var(--black-legacy-400);
7517
- --bc-lighter-legacy: var(--black-legacy-400);
7518
- --bc-light-legacy: var(--black-legacy-400);
7519
- --bc-medium-legacy: var(--black-legacy-400);
7520
- --bc-dark-legacy: var(--black-legacy-700);
7521
- --bc-darker-legacy: var(--black-legacy-900);
7522
- --focus-ring-legacy: hsla(206, 100%, 40%, 0.9);
7523
- --focus-ring-success-legacy: hsla(140, 40%, 40%, 0.9);
7524
- --focus-ring-warning-legacy: hsla(47, 76%, 46%, 0.9);
7525
- --focus-ring-error-legacy: hsla(358, 62%, 47%, 0.9);
7526
- --focus-ring-muted-legacy: hsla(210, 8%, 55%, 0.95);
7527
- --fc-dark-legacy: var(--black-legacy-900);
7528
- --fc-medium-legacy: var(--black-legacy-700);
7529
- --fc-light-legacy: var(--black-legacy-500);
7530
- --theme-primary-color-legacy: var(--orange-legacy-400);
7531
- --theme-primary-legacy-025: var(--orange-legacy-050);
7532
- --theme-primary-legacy-050: var(--orange-legacy-050);
7533
- --theme-primary-legacy-075: var(--orange-legacy-050);
7534
- --theme-primary-legacy-100: var(--orange-legacy-100);
7535
- --theme-primary-legacy-150: var(--orange-legacy-100);
7536
- --theme-primary-legacy-200: var(--orange-legacy-200);
7537
- --theme-primary-legacy-300: var(--orange-legacy-300);
7538
- --theme-primary-legacy-350: var(--orange-legacy-300);
7539
- --theme-primary-legacy-400: var(--orange-legacy-400);
7540
- --theme-primary-legacy-500: var(--orange-legacy-500);
7541
- --theme-primary-legacy-600: var(--orange-legacy-600);
7542
- --theme-primary-legacy-700: var(--orange-legacy-700);
7543
- --theme-primary-legacy-800: var(--orange-legacy-800);
7544
- --theme-primary-legacy-900: var(--orange-legacy-900);
7545
- --theme-secondary-color-legacy: var(--blue-legacy-400);
7546
- --theme-secondary-legacy-025: var(--blue-legacy-050);
7547
- --theme-secondary-legacy-050: var(--blue-legacy-050);
7548
- --theme-secondary-legacy-075: var(--blue-legacy-050);
7549
- --theme-secondary-legacy-100: var(--blue-legacy-100);
7550
- --theme-secondary-legacy-150: var(--blue-legacy-100);
7551
- --theme-secondary-legacy-200: var(--blue-legacy-200);
7552
- --theme-secondary-legacy-300: var(--blue-legacy-300);
7553
- --theme-secondary-legacy-350: var(--blue-legacy-300);
7554
- --theme-secondary-legacy-400: var(--blue-legacy-400);
7555
- --theme-secondary-legacy-500: var(--blue-legacy-500);
7556
- --theme-secondary-legacy-600: var(--blue-legacy-600);
7557
- --theme-secondary-legacy-700: var(--blue-legacy-700);
7558
- --theme-secondary-legacy-800: var(--blue-legacy-800);
7559
- --theme-secondary-legacy-900: var(--blue-legacy-900);
7560
- }
7561
- }
7562
6686
  body {
7563
6687
  --_o-disabled: 0.5;
7564
6688
  --_o-disabled-static: 0.5;
@@ -8375,3926 +7499,6 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
8375
7499
  * @inset: boolean - whether the focus style be placed inside the element.
8376
7500
  * @border: boolean - whether the element's border color change to match the focus style.
8377
7501
  */
8378
- .bc-white-legacy-1 {
8379
- border-color: var(--black-legacy-500) !important;
8380
- }
8381
- .bc-white-legacy-2 {
8382
- border-color: var(--black-legacy-300) !important;
8383
- }
8384
- .bc-white-legacy-3,
8385
- .bc-white-legacy {
8386
- border-color: var(--white-legacy) !important;
8387
- }
8388
- body.theme-highcontrast .bc-white-legacy-1 {
8389
- border-color: var(--black-legacy-025) !important;
8390
- }
8391
- body.theme-highcontrast .bc-white-legacy-2 {
8392
- border-color: var(--black-legacy-050) !important;
8393
- }
8394
- .bc-black-legacy-025 {
8395
- border-color: var(--black-legacy-025) !important;
8396
- }
8397
- .bc-black-legacy-1,
8398
- .bc-black-legacy-050 {
8399
- border-color: var(--black-legacy-050) !important;
8400
- }
8401
- .bc-black-legacy-2,
8402
- .bc-black-legacy-075 {
8403
- border-color: var(--black-legacy-075) !important;
8404
- }
8405
- .bc-black-legacy-3,
8406
- .bc-black-legacy-100 {
8407
- border-color: var(--black-legacy-100) !important;
8408
- }
8409
- .bc-black-legacy-150 {
8410
- border-color: var(--black-legacy-150) !important;
8411
- }
8412
- .bc-black-legacy-4,
8413
- .bc-black-legacy-200 {
8414
- border-color: var(--black-legacy-200) !important;
8415
- }
8416
- .bc-black-legacy-5,
8417
- .bc-black-legacy-300 {
8418
- border-color: var(--black-legacy-300) !important;
8419
- }
8420
- .bc-black-legacy-350 {
8421
- border-color: var(--black-legacy-350) !important;
8422
- }
8423
- .bc-black-legacy-6,
8424
- .bc-black-legacy-400 {
8425
- border-color: var(--black-legacy-400) !important;
8426
- }
8427
- .bc-black-legacy-7,
8428
- .bc-black-legacy-500 {
8429
- border-color: var(--black-legacy-500) !important;
8430
- }
8431
- .bc-black-legacy-600 {
8432
- border-color: var(--black-legacy-600) !important;
8433
- }
8434
- .bc-black-legacy-8,
8435
- .bc-black-legacy-700 {
8436
- border-color: var(--black-legacy-700) !important;
8437
- }
8438
- .bc-black-legacy-750 {
8439
- border-color: var(--black-legacy-750) !important;
8440
- }
8441
- .bc-black-legacy-9,
8442
- .bc-black-legacy-800 {
8443
- border-color: var(--black-legacy-800) !important;
8444
- }
8445
- .bc-black-legacy-10,
8446
- .bc-black-legacy-900 {
8447
- border-color: var(--black-legacy-900) !important;
8448
- }
8449
- body.theme-highcontrast .bc-black-legacy-1,
8450
- body.theme-highcontrast .bc-black-legacy-2,
8451
- body.theme-highcontrast .bc-black-legacy-3,
8452
- body.theme-highcontrast .bc-black-legacy-4,
8453
- body.theme-highcontrast .bc-black-legacy-025,
8454
- body.theme-highcontrast .bc-black-legacy-050,
8455
- body.theme-highcontrast .bc-black-legacy-075,
8456
- body.theme-highcontrast .bc-black-legacy-100,
8457
- body.theme-highcontrast .bc-black-legacy-150,
8458
- body.theme-highcontrast .bc-black-legacy-200 {
8459
- border-color: var(--black-legacy-300) !important;
8460
- }
8461
- .bc-orange-legacy-050 {
8462
- border-color: var(--orange-legacy-050) !important;
8463
- }
8464
- .bc-orange-legacy-1,
8465
- .bc-orange-legacy-100 {
8466
- border-color: var(--orange-legacy-100) !important;
8467
- }
8468
- .bc-orange-legacy-200 {
8469
- border-color: var(--orange-legacy-200) !important;
8470
- }
8471
- .bc-orange-legacy-300 {
8472
- border-color: var(--orange-legacy-300) !important;
8473
- }
8474
- .bc-orange-legacy-2,
8475
- .bc-orange-legacy-400 {
8476
- border-color: var(--orange-legacy-400) !important;
8477
- }
8478
- .bc-orange-legacy-500 {
8479
- border-color: var(--orange-legacy-500) !important;
8480
- }
8481
- .bc-orange-legacy-3,
8482
- .bc-orange-legacy-600 {
8483
- border-color: var(--orange-legacy-600) !important;
8484
- }
8485
- .bc-orange-legacy-700 {
8486
- border-color: var(--orange-legacy-700) !important;
8487
- }
8488
- .bc-orange-legacy-800 {
8489
- border-color: var(--orange-legacy-800) !important;
8490
- }
8491
- .bc-orange-legacy-900 {
8492
- border-color: var(--orange-legacy-900) !important;
8493
- }
8494
- .bc-blue-legacy-050 {
8495
- border-color: var(--blue-legacy-050) !important;
8496
- }
8497
- .bc-blue-legacy-1,
8498
- .bc-blue-legacy-100 {
8499
- border-color: var(--blue-legacy-100) !important;
8500
- }
8501
- .bc-blue-legacy-200 {
8502
- border-color: var(--blue-legacy-200) !important;
8503
- }
8504
- .bc-blue-legacy-300 {
8505
- border-color: var(--blue-legacy-300) !important;
8506
- }
8507
- .bc-blue-legacy-2,
8508
- .bc-blue-legacy-400 {
8509
- border-color: var(--blue-legacy-400) !important;
8510
- }
8511
- .bc-blue-legacy-500 {
8512
- border-color: var(--blue-legacy-500) !important;
8513
- }
8514
- .bc-blue-legacy-3,
8515
- .bc-blue-legacy-600 {
8516
- border-color: var(--blue-legacy-600) !important;
8517
- }
8518
- .bc-blue-legacy-700 {
8519
- border-color: var(--blue-legacy-700) !important;
8520
- }
8521
- .bc-blue-legacy-800 {
8522
- border-color: var(--blue-legacy-800) !important;
8523
- }
8524
- .bc-blue-legacy-900 {
8525
- border-color: var(--blue-legacy-900) !important;
8526
- }
8527
- .bc-powder-legacy-050 {
8528
- border-color: var(--powder-legacy-050) !important;
8529
- }
8530
- .bc-powder-legacy-1,
8531
- .bc-powder-legacy-100 {
8532
- border-color: var(--powder-legacy-100) !important;
8533
- }
8534
- .bc-powder-legacy-200 {
8535
- border-color: var(--powder-legacy-200) !important;
8536
- }
8537
- .bc-powder-legacy-300 {
8538
- border-color: var(--powder-legacy-300) !important;
8539
- }
8540
- .bc-powder-legacy-2,
8541
- .bc-powder-legacy-400 {
8542
- border-color: var(--powder-legacy-400) !important;
8543
- }
8544
- .bc-powder-legacy-500 {
8545
- border-color: var(--powder-legacy-500) !important;
8546
- }
8547
- .bc-powder-legacy-3,
8548
- .bc-powder-legacy-600 {
8549
- border-color: var(--powder-legacy-600) !important;
8550
- }
8551
- .bc-powder-legacy-700 {
8552
- border-color: var(--powder-legacy-700) !important;
8553
- }
8554
- .bc-powder-legacy-800 {
8555
- border-color: var(--powder-legacy-800) !important;
8556
- }
8557
- .bc-powder-legacy-900 {
8558
- border-color: var(--powder-legacy-900) !important;
8559
- }
8560
- .bc-green-legacy-025 {
8561
- border-color: var(--green-legacy-025) !important;
8562
- }
8563
- .bc-green-legacy-050 {
8564
- border-color: var(--green-legacy-050) !important;
8565
- }
8566
- .bc-green-legacy-1,
8567
- .bc-green-legacy-100 {
8568
- border-color: var(--green-legacy-100) !important;
8569
- }
8570
- .bc-green-legacy-200 {
8571
- border-color: var(--green-legacy-200) !important;
8572
- }
8573
- .bc-green-legacy-300 {
8574
- border-color: var(--green-legacy-300) !important;
8575
- }
8576
- .bc-green-legacy-2,
8577
- .bc-green-legacy-400 {
8578
- border-color: var(--green-legacy-400) !important;
8579
- }
8580
- .bc-green-legacy-500 {
8581
- border-color: var(--green-legacy-500) !important;
8582
- }
8583
- .bc-green-legacy-3,
8584
- .bc-success-legacy,
8585
- .bc-green-legacy-600 {
8586
- border-color: var(--green-legacy-600) !important;
8587
- }
8588
- .bc-green-legacy-700 {
8589
- border-color: var(--green-legacy-700) !important;
8590
- }
8591
- .bc-green-legacy-800 {
8592
- border-color: var(--green-legacy-800) !important;
8593
- }
8594
- .bc-green-legacy-900 {
8595
- border-color: var(--green-legacy-900) !important;
8596
- }
8597
- .bc-red-legacy-025 {
8598
- border-color: var(--red-legacy-025) !important;
8599
- }
8600
- .bc-red-legacy-050 {
8601
- border-color: var(--red-legacy-050) !important;
8602
- }
8603
- .bc-red-legacy-1,
8604
- .bc-red-legacy-100 {
8605
- border-color: var(--red-legacy-100) !important;
8606
- }
8607
- .bc-red-legacy-200 {
8608
- border-color: var(--red-legacy-200) !important;
8609
- }
8610
- .bc-red-legacy-300 {
8611
- border-color: var(--red-legacy-300) !important;
8612
- }
8613
- .bc-red-legacy-2,
8614
- .bc-error-legacy,
8615
- .bc-red-legacy-400 {
8616
- border-color: var(--red-legacy-400) !important;
8617
- }
8618
- .bc-red-legacy-500 {
8619
- border-color: var(--red-legacy-500) !important;
8620
- }
8621
- .bc-red-legacy-3,
8622
- .bc-red-legacy-600 {
8623
- border-color: var(--red-legacy-600) !important;
8624
- }
8625
- .bc-red-legacy-700 {
8626
- border-color: var(--red-legacy-700) !important;
8627
- }
8628
- .bc-red-legacy-800 {
8629
- border-color: var(--red-legacy-800) !important;
8630
- }
8631
- .bc-red-legacy-900 {
8632
- border-color: var(--red-legacy-900) !important;
8633
- }
8634
- .bc-yellow-legacy-050 {
8635
- border-color: var(--yellow-legacy-050) !important;
8636
- }
8637
- .bc-yellow-legacy-100 {
8638
- border-color: var(--yellow-legacy-100) !important;
8639
- }
8640
- .bc-yellow-legacy-1,
8641
- .bc-yellow-legacy-200 {
8642
- border-color: var(--yellow-legacy-200) !important;
8643
- }
8644
- .bc-yellow-legacy-300 {
8645
- border-color: var(--yellow-legacy-300) !important;
8646
- }
8647
- .bc-yellow-legacy-2,
8648
- .bc-yellow-legacy-400 {
8649
- border-color: var(--yellow-legacy-400) !important;
8650
- }
8651
- .bc-yellow-legacy-500 {
8652
- border-color: var(--yellow-legacy-500) !important;
8653
- }
8654
- .bc-yellow-legacy-3,
8655
- .bc-warning-legacy,
8656
- .bc-yellow-legacy-600 {
8657
- border-color: var(--yellow-legacy-600) !important;
8658
- }
8659
- .bc-yellow-legacy-700 {
8660
- border-color: var(--yellow-legacy-700) !important;
8661
- }
8662
- .bc-yellow-legacy-800 {
8663
- border-color: var(--yellow-legacy-800) !important;
8664
- }
8665
- .bc-yellow-legacy-900 {
8666
- border-color: var(--yellow-legacy-900) !important;
8667
- }
8668
- .bc-gold-legacy-lighter {
8669
- border-color: var(--gold-legacy-lighter) !important;
8670
- }
8671
- .bc-gold-legacy {
8672
- border-color: var(--gold-legacy) !important;
8673
- }
8674
- .bc-gold-legacy-darker {
8675
- border-color: var(--gold-legacy-darker) !important;
8676
- }
8677
- .bc-silver-legacy-lighter {
8678
- border-color: var(--silver-legacy-lighter) !important;
8679
- }
8680
- .bc-silver-legacy {
8681
- border-color: var(--silver-legacy) !important;
8682
- }
8683
- .bc-silver-legacy-darker {
8684
- border-color: var(--silver-legacy-darker) !important;
8685
- }
8686
- .bc-bronze-legacy-lighter {
8687
- border-color: var(--bronze-legacy-lighter) !important;
8688
- }
8689
- .bc-bronze-legacy {
8690
- border-color: var(--bronze-legacy) !important;
8691
- }
8692
- .bc-bronze-legacy-darker {
8693
- border-color: var(--bronze-legacy-darker) !important;
8694
- }
8695
- .bc-theme-primary-legacy-025 {
8696
- border-color: var(--theme-primary-legacy-025) !important;
8697
- }
8698
- .bc-theme-primary-legacy-050 {
8699
- border-color: var(--theme-primary-legacy-050) !important;
8700
- }
8701
- .bc-theme-primary-legacy-075 {
8702
- border-color: var(--theme-primary-legacy-075) !important;
8703
- }
8704
- .bc-theme-primary-legacy-100 {
8705
- border-color: var(--theme-primary-legacy-100) !important;
8706
- }
8707
- .bc-theme-primary-legacy-150 {
8708
- border-color: var(--theme-primary-legacy-150) !important;
8709
- }
8710
- .bc-theme-primary-legacy-200 {
8711
- border-color: var(--theme-primary-legacy-200) !important;
8712
- }
8713
- .bc-theme-primary-legacy-300 {
8714
- border-color: var(--theme-primary-legacy-300) !important;
8715
- }
8716
- .bc-theme-primary-legacy-350 {
8717
- border-color: var(--theme-primary-legacy-350) !important;
8718
- }
8719
- .bc-theme-primary-legacy-400 {
8720
- border-color: var(--theme-primary-legacy-400) !important;
8721
- }
8722
- .bc-theme-primary-legacy-500 {
8723
- border-color: var(--theme-primary-legacy-500) !important;
8724
- }
8725
- .bc-theme-primary-legacy-600 {
8726
- border-color: var(--theme-primary-legacy-600) !important;
8727
- }
8728
- .bc-theme-primary-legacy-700 {
8729
- border-color: var(--theme-primary-legacy-700) !important;
8730
- }
8731
- .bc-theme-primary-legacy-800 {
8732
- border-color: var(--theme-primary-legacy-800) !important;
8733
- }
8734
- .bc-theme-primary-legacy-900 {
8735
- border-color: var(--theme-primary-legacy-900) !important;
8736
- }
8737
- .bc-theme-secondary-legacy-025 {
8738
- border-color: var(--theme-secondary-legacy-025) !important;
8739
- }
8740
- .bc-theme-secondary-legacy-050 {
8741
- border-color: var(--theme-secondary-legacy-050) !important;
8742
- }
8743
- .bc-theme-secondary-legacy-075 {
8744
- border-color: var(--theme-secondary-legacy-075) !important;
8745
- }
8746
- .bc-theme-secondary-legacy-100 {
8747
- border-color: var(--theme-secondary-legacy-100) !important;
8748
- }
8749
- .bc-theme-secondary-legacy-150 {
8750
- border-color: var(--theme-secondary-legacy-150) !important;
8751
- }
8752
- .bc-theme-secondary-legacy-200 {
8753
- border-color: var(--theme-secondary-legacy-200) !important;
8754
- }
8755
- .bc-theme-secondary-legacy-300 {
8756
- border-color: var(--theme-secondary-legacy-300) !important;
8757
- }
8758
- .bc-theme-secondary-legacy-350 {
8759
- border-color: var(--theme-secondary-legacy-350) !important;
8760
- }
8761
- .bc-theme-secondary-legacy-400 {
8762
- border-color: var(--theme-secondary-legacy-400) !important;
8763
- }
8764
- .bc-theme-secondary-legacy-500 {
8765
- border-color: var(--theme-secondary-legacy-500) !important;
8766
- }
8767
- .bc-theme-secondary-legacy-600 {
8768
- border-color: var(--theme-secondary-legacy-600) !important;
8769
- }
8770
- .bc-theme-secondary-legacy-700 {
8771
- border-color: var(--theme-secondary-legacy-700) !important;
8772
- }
8773
- .bc-theme-secondary-legacy-800 {
8774
- border-color: var(--theme-secondary-legacy-800) !important;
8775
- }
8776
- .bc-theme-secondary-legacy-900 {
8777
- border-color: var(--theme-secondary-legacy-900) !important;
8778
- }
8779
- .fc-black-legacy-900,
8780
- .h\:fc-black-legacy-900:hover,
8781
- .f\:fc-black-legacy-900:focus,
8782
- .f\:fc-black-legacy-900:focus-within {
8783
- color: var(--black-legacy-900) !important;
8784
- }
8785
- @media (prefers-color-scheme: dark) {
8786
- body.theme-system .d\:fc-black-legacy-900 {
8787
- color: var(--black-legacy-900) !important;
8788
- }
8789
- }
8790
- body.theme-dark .d\:fc-black-legacy-900,
8791
- .theme-dark__forced .d\:fc-black-legacy-900,
8792
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-900 {
8793
- color: var(--black-legacy-900) !important;
8794
- }
8795
- .bg-black-legacy-900,
8796
- .h\:bg-black-legacy-900:hover,
8797
- .f\:bg-black-legacy-900:focus,
8798
- .f\:bg-black-legacy-900:focus-within {
8799
- background-color: var(--black-legacy-900) !important;
8800
- }
8801
- @media (prefers-color-scheme: dark) {
8802
- body.theme-system .d\:bg-black-legacy-900 {
8803
- background-color: var(--black-legacy-900) !important;
8804
- }
8805
- }
8806
- body.theme-dark .d\:bg-black-legacy-900,
8807
- .theme-dark__forced .d\:bg-black-legacy-900,
8808
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-900 {
8809
- background-color: var(--black-legacy-900) !important;
8810
- }
8811
- .fc-black-legacy-800,
8812
- .h\:fc-black-legacy-800:hover,
8813
- .f\:fc-black-legacy-800:focus,
8814
- .f\:fc-black-legacy-800:focus-within {
8815
- color: var(--black-legacy-800) !important;
8816
- }
8817
- @media (prefers-color-scheme: dark) {
8818
- body.theme-system .d\:fc-black-legacy-800 {
8819
- color: var(--black-legacy-800) !important;
8820
- }
8821
- }
8822
- body.theme-dark .d\:fc-black-legacy-800,
8823
- .theme-dark__forced .d\:fc-black-legacy-800,
8824
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-800 {
8825
- color: var(--black-legacy-800) !important;
8826
- }
8827
- .bg-black-legacy-800,
8828
- .h\:bg-black-legacy-800:hover,
8829
- .f\:bg-black-legacy-800:focus,
8830
- .f\:bg-black-legacy-800:focus-within {
8831
- background-color: var(--black-legacy-800) !important;
8832
- }
8833
- @media (prefers-color-scheme: dark) {
8834
- body.theme-system .d\:bg-black-legacy-800 {
8835
- background-color: var(--black-legacy-800) !important;
8836
- }
8837
- }
8838
- body.theme-dark .d\:bg-black-legacy-800,
8839
- .theme-dark__forced .d\:bg-black-legacy-800,
8840
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-800 {
8841
- background-color: var(--black-legacy-800) !important;
8842
- }
8843
- .fc-black-legacy-700,
8844
- .h\:fc-black-legacy-700:hover,
8845
- .f\:fc-black-legacy-700:focus,
8846
- .f\:fc-black-legacy-700:focus-within {
8847
- color: var(--black-legacy-700) !important;
8848
- }
8849
- @media (prefers-color-scheme: dark) {
8850
- body.theme-system .d\:fc-black-legacy-700 {
8851
- color: var(--black-legacy-700) !important;
8852
- }
8853
- }
8854
- body.theme-dark .d\:fc-black-legacy-700,
8855
- .theme-dark__forced .d\:fc-black-legacy-700,
8856
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-700 {
8857
- color: var(--black-legacy-700) !important;
8858
- }
8859
- .bg-black-legacy-700,
8860
- .h\:bg-black-legacy-700:hover,
8861
- .f\:bg-black-legacy-700:focus,
8862
- .f\:bg-black-legacy-700:focus-within {
8863
- background-color: var(--black-legacy-700) !important;
8864
- }
8865
- @media (prefers-color-scheme: dark) {
8866
- body.theme-system .d\:bg-black-legacy-700 {
8867
- background-color: var(--black-legacy-700) !important;
8868
- }
8869
- }
8870
- body.theme-dark .d\:bg-black-legacy-700,
8871
- .theme-dark__forced .d\:bg-black-legacy-700,
8872
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-700 {
8873
- background-color: var(--black-legacy-700) !important;
8874
- }
8875
- .fc-black-legacy-600,
8876
- .h\:fc-black-legacy-600:hover,
8877
- .f\:fc-black-legacy-600:focus,
8878
- .f\:fc-black-legacy-600:focus-within {
8879
- color: var(--black-legacy-600) !important;
8880
- }
8881
- @media (prefers-color-scheme: dark) {
8882
- body.theme-system .d\:fc-black-legacy-600 {
8883
- color: var(--black-legacy-600) !important;
8884
- }
8885
- }
8886
- body.theme-dark .d\:fc-black-legacy-600,
8887
- .theme-dark__forced .d\:fc-black-legacy-600,
8888
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-600 {
8889
- color: var(--black-legacy-600) !important;
8890
- }
8891
- .bg-black-legacy-600,
8892
- .h\:bg-black-legacy-600:hover,
8893
- .f\:bg-black-legacy-600:focus,
8894
- .f\:bg-black-legacy-600:focus-within {
8895
- background-color: var(--black-legacy-600) !important;
8896
- }
8897
- @media (prefers-color-scheme: dark) {
8898
- body.theme-system .d\:bg-black-legacy-600 {
8899
- background-color: var(--black-legacy-600) !important;
8900
- }
8901
- }
8902
- body.theme-dark .d\:bg-black-legacy-600,
8903
- .theme-dark__forced .d\:bg-black-legacy-600,
8904
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-600 {
8905
- background-color: var(--black-legacy-600) !important;
8906
- }
8907
- .fc-black-legacy-500,
8908
- .h\:fc-black-legacy-500:hover,
8909
- .f\:fc-black-legacy-500:focus,
8910
- .f\:fc-black-legacy-500:focus-within {
8911
- color: var(--black-legacy-500) !important;
8912
- }
8913
- @media (prefers-color-scheme: dark) {
8914
- body.theme-system .d\:fc-black-legacy-500 {
8915
- color: var(--black-legacy-500) !important;
8916
- }
8917
- }
8918
- body.theme-dark .d\:fc-black-legacy-500,
8919
- .theme-dark__forced .d\:fc-black-legacy-500,
8920
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-500 {
8921
- color: var(--black-legacy-500) !important;
8922
- }
8923
- .bg-black-legacy-500,
8924
- .h\:bg-black-legacy-500:hover,
8925
- .f\:bg-black-legacy-500:focus,
8926
- .f\:bg-black-legacy-500:focus-within {
8927
- background-color: var(--black-legacy-500) !important;
8928
- }
8929
- @media (prefers-color-scheme: dark) {
8930
- body.theme-system .d\:bg-black-legacy-500 {
8931
- background-color: var(--black-legacy-500) !important;
8932
- }
8933
- }
8934
- body.theme-dark .d\:bg-black-legacy-500,
8935
- .theme-dark__forced .d\:bg-black-legacy-500,
8936
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-500 {
8937
- background-color: var(--black-legacy-500) !important;
8938
- }
8939
- .fc-black-legacy-400,
8940
- .h\:fc-black-legacy-400:hover,
8941
- .f\:fc-black-legacy-400:focus,
8942
- .f\:fc-black-legacy-400:focus-within {
8943
- color: var(--black-legacy-400) !important;
8944
- }
8945
- @media (prefers-color-scheme: dark) {
8946
- body.theme-system .d\:fc-black-legacy-400 {
8947
- color: var(--black-legacy-400) !important;
8948
- }
8949
- }
8950
- body.theme-dark .d\:fc-black-legacy-400,
8951
- .theme-dark__forced .d\:fc-black-legacy-400,
8952
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-400 {
8953
- color: var(--black-legacy-400) !important;
8954
- }
8955
- .bg-black-legacy-400,
8956
- .h\:bg-black-legacy-400:hover,
8957
- .f\:bg-black-legacy-400:focus,
8958
- .f\:bg-black-legacy-400:focus-within {
8959
- background-color: var(--black-legacy-400) !important;
8960
- }
8961
- @media (prefers-color-scheme: dark) {
8962
- body.theme-system .d\:bg-black-legacy-400 {
8963
- background-color: var(--black-legacy-400) !important;
8964
- }
8965
- }
8966
- body.theme-dark .d\:bg-black-legacy-400,
8967
- .theme-dark__forced .d\:bg-black-legacy-400,
8968
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-400 {
8969
- background-color: var(--black-legacy-400) !important;
8970
- }
8971
- .fc-black-legacy-300,
8972
- .h\:fc-black-legacy-300:hover,
8973
- .f\:fc-black-legacy-300:focus,
8974
- .f\:fc-black-legacy-300:focus-within {
8975
- color: var(--black-legacy-300) !important;
8976
- }
8977
- @media (prefers-color-scheme: dark) {
8978
- body.theme-system .d\:fc-black-legacy-300 {
8979
- color: var(--black-legacy-300) !important;
8980
- }
8981
- }
8982
- body.theme-dark .d\:fc-black-legacy-300,
8983
- .theme-dark__forced .d\:fc-black-legacy-300,
8984
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-300 {
8985
- color: var(--black-legacy-300) !important;
8986
- }
8987
- .bg-black-legacy-300,
8988
- .h\:bg-black-legacy-300:hover,
8989
- .f\:bg-black-legacy-300:focus,
8990
- .f\:bg-black-legacy-300:focus-within {
8991
- background-color: var(--black-legacy-300) !important;
8992
- }
8993
- @media (prefers-color-scheme: dark) {
8994
- body.theme-system .d\:bg-black-legacy-300 {
8995
- background-color: var(--black-legacy-300) !important;
8996
- }
8997
- }
8998
- body.theme-dark .d\:bg-black-legacy-300,
8999
- .theme-dark__forced .d\:bg-black-legacy-300,
9000
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-300 {
9001
- background-color: var(--black-legacy-300) !important;
9002
- }
9003
- .fc-black-legacy-200,
9004
- .h\:fc-black-legacy-200:hover,
9005
- .f\:fc-black-legacy-200:focus,
9006
- .f\:fc-black-legacy-200:focus-within {
9007
- color: var(--black-legacy-200) !important;
9008
- }
9009
- @media (prefers-color-scheme: dark) {
9010
- body.theme-system .d\:fc-black-legacy-200 {
9011
- color: var(--black-legacy-200) !important;
9012
- }
9013
- }
9014
- body.theme-dark .d\:fc-black-legacy-200,
9015
- .theme-dark__forced .d\:fc-black-legacy-200,
9016
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-200 {
9017
- color: var(--black-legacy-200) !important;
9018
- }
9019
- .bg-black-legacy-200,
9020
- .h\:bg-black-legacy-200:hover,
9021
- .f\:bg-black-legacy-200:focus,
9022
- .f\:bg-black-legacy-200:focus-within {
9023
- background-color: var(--black-legacy-200) !important;
9024
- }
9025
- @media (prefers-color-scheme: dark) {
9026
- body.theme-system .d\:bg-black-legacy-200 {
9027
- background-color: var(--black-legacy-200) !important;
9028
- }
9029
- }
9030
- body.theme-dark .d\:bg-black-legacy-200,
9031
- .theme-dark__forced .d\:bg-black-legacy-200,
9032
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-200 {
9033
- background-color: var(--black-legacy-200) !important;
9034
- }
9035
- .fc-black-legacy-100,
9036
- .h\:fc-black-legacy-100:hover,
9037
- .f\:fc-black-legacy-100:focus,
9038
- .f\:fc-black-legacy-100:focus-within {
9039
- color: var(--black-legacy-100) !important;
9040
- }
9041
- @media (prefers-color-scheme: dark) {
9042
- body.theme-system .d\:fc-black-legacy-100 {
9043
- color: var(--black-legacy-100) !important;
9044
- }
9045
- }
9046
- body.theme-dark .d\:fc-black-legacy-100,
9047
- .theme-dark__forced .d\:fc-black-legacy-100,
9048
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-100 {
9049
- color: var(--black-legacy-100) !important;
9050
- }
9051
- .bg-black-legacy-100,
9052
- .h\:bg-black-legacy-100:hover,
9053
- .f\:bg-black-legacy-100:focus,
9054
- .f\:bg-black-legacy-100:focus-within {
9055
- background-color: var(--black-legacy-100) !important;
9056
- }
9057
- @media (prefers-color-scheme: dark) {
9058
- body.theme-system .d\:bg-black-legacy-100 {
9059
- background-color: var(--black-legacy-100) !important;
9060
- }
9061
- }
9062
- body.theme-dark .d\:bg-black-legacy-100,
9063
- .theme-dark__forced .d\:bg-black-legacy-100,
9064
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-100 {
9065
- background-color: var(--black-legacy-100) !important;
9066
- }
9067
- .fc-black-legacy-050,
9068
- .h\:fc-black-legacy-050:hover,
9069
- .f\:fc-black-legacy-050:focus,
9070
- .f\:fc-black-legacy-050:focus-within {
9071
- color: var(--black-legacy-050) !important;
9072
- }
9073
- @media (prefers-color-scheme: dark) {
9074
- body.theme-system .d\:fc-black-legacy-050 {
9075
- color: var(--black-legacy-050) !important;
9076
- }
9077
- }
9078
- body.theme-dark .d\:fc-black-legacy-050,
9079
- .theme-dark__forced .d\:fc-black-legacy-050,
9080
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-050 {
9081
- color: var(--black-legacy-050) !important;
9082
- }
9083
- .bg-black-legacy-050,
9084
- .h\:bg-black-legacy-050:hover,
9085
- .f\:bg-black-legacy-050:focus,
9086
- .f\:bg-black-legacy-050:focus-within {
9087
- background-color: var(--black-legacy-050) !important;
9088
- }
9089
- @media (prefers-color-scheme: dark) {
9090
- body.theme-system .d\:bg-black-legacy-050 {
9091
- background-color: var(--black-legacy-050) !important;
9092
- }
9093
- }
9094
- body.theme-dark .d\:bg-black-legacy-050,
9095
- .theme-dark__forced .d\:bg-black-legacy-050,
9096
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-050 {
9097
- background-color: var(--black-legacy-050) !important;
9098
- }
9099
- .fc-orange-legacy-900,
9100
- .h\:fc-orange-legacy-900:hover,
9101
- .f\:fc-orange-legacy-900:focus,
9102
- .f\:fc-orange-legacy-900:focus-within {
9103
- color: var(--orange-legacy-900) !important;
9104
- }
9105
- @media (prefers-color-scheme: dark) {
9106
- body.theme-system .d\:fc-orange-legacy-900 {
9107
- color: var(--orange-legacy-900) !important;
9108
- }
9109
- }
9110
- body.theme-dark .d\:fc-orange-legacy-900,
9111
- .theme-dark__forced .d\:fc-orange-legacy-900,
9112
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-900 {
9113
- color: var(--orange-legacy-900) !important;
9114
- }
9115
- .bg-orange-legacy-900,
9116
- .h\:bg-orange-legacy-900:hover,
9117
- .f\:bg-orange-legacy-900:focus,
9118
- .f\:bg-orange-legacy-900:focus-within {
9119
- background-color: var(--orange-legacy-900) !important;
9120
- }
9121
- @media (prefers-color-scheme: dark) {
9122
- body.theme-system .d\:bg-orange-legacy-900 {
9123
- background-color: var(--orange-legacy-900) !important;
9124
- }
9125
- }
9126
- body.theme-dark .d\:bg-orange-legacy-900,
9127
- .theme-dark__forced .d\:bg-orange-legacy-900,
9128
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-900 {
9129
- background-color: var(--orange-legacy-900) !important;
9130
- }
9131
- .fc-orange-legacy-800,
9132
- .h\:fc-orange-legacy-800:hover,
9133
- .f\:fc-orange-legacy-800:focus,
9134
- .f\:fc-orange-legacy-800:focus-within {
9135
- color: var(--orange-legacy-800) !important;
9136
- }
9137
- @media (prefers-color-scheme: dark) {
9138
- body.theme-system .d\:fc-orange-legacy-800 {
9139
- color: var(--orange-legacy-800) !important;
9140
- }
9141
- }
9142
- body.theme-dark .d\:fc-orange-legacy-800,
9143
- .theme-dark__forced .d\:fc-orange-legacy-800,
9144
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-800 {
9145
- color: var(--orange-legacy-800) !important;
9146
- }
9147
- .bg-orange-legacy-800,
9148
- .h\:bg-orange-legacy-800:hover,
9149
- .f\:bg-orange-legacy-800:focus,
9150
- .f\:bg-orange-legacy-800:focus-within {
9151
- background-color: var(--orange-legacy-800) !important;
9152
- }
9153
- @media (prefers-color-scheme: dark) {
9154
- body.theme-system .d\:bg-orange-legacy-800 {
9155
- background-color: var(--orange-legacy-800) !important;
9156
- }
9157
- }
9158
- body.theme-dark .d\:bg-orange-legacy-800,
9159
- .theme-dark__forced .d\:bg-orange-legacy-800,
9160
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-800 {
9161
- background-color: var(--orange-legacy-800) !important;
9162
- }
9163
- .fc-orange-legacy-700,
9164
- .h\:fc-orange-legacy-700:hover,
9165
- .f\:fc-orange-legacy-700:focus,
9166
- .f\:fc-orange-legacy-700:focus-within {
9167
- color: var(--orange-legacy-700) !important;
9168
- }
9169
- @media (prefers-color-scheme: dark) {
9170
- body.theme-system .d\:fc-orange-legacy-700 {
9171
- color: var(--orange-legacy-700) !important;
9172
- }
9173
- }
9174
- body.theme-dark .d\:fc-orange-legacy-700,
9175
- .theme-dark__forced .d\:fc-orange-legacy-700,
9176
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-700 {
9177
- color: var(--orange-legacy-700) !important;
9178
- }
9179
- .bg-orange-legacy-700,
9180
- .h\:bg-orange-legacy-700:hover,
9181
- .f\:bg-orange-legacy-700:focus,
9182
- .f\:bg-orange-legacy-700:focus-within {
9183
- background-color: var(--orange-legacy-700) !important;
9184
- }
9185
- @media (prefers-color-scheme: dark) {
9186
- body.theme-system .d\:bg-orange-legacy-700 {
9187
- background-color: var(--orange-legacy-700) !important;
9188
- }
9189
- }
9190
- body.theme-dark .d\:bg-orange-legacy-700,
9191
- .theme-dark__forced .d\:bg-orange-legacy-700,
9192
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-700 {
9193
- background-color: var(--orange-legacy-700) !important;
9194
- }
9195
- .fc-orange-legacy-600,
9196
- .h\:fc-orange-legacy-600:hover,
9197
- .f\:fc-orange-legacy-600:focus,
9198
- .f\:fc-orange-legacy-600:focus-within {
9199
- color: var(--orange-legacy-600) !important;
9200
- }
9201
- @media (prefers-color-scheme: dark) {
9202
- body.theme-system .d\:fc-orange-legacy-600 {
9203
- color: var(--orange-legacy-600) !important;
9204
- }
9205
- }
9206
- body.theme-dark .d\:fc-orange-legacy-600,
9207
- .theme-dark__forced .d\:fc-orange-legacy-600,
9208
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-600 {
9209
- color: var(--orange-legacy-600) !important;
9210
- }
9211
- .bg-orange-legacy-600,
9212
- .h\:bg-orange-legacy-600:hover,
9213
- .f\:bg-orange-legacy-600:focus,
9214
- .f\:bg-orange-legacy-600:focus-within {
9215
- background-color: var(--orange-legacy-600) !important;
9216
- }
9217
- @media (prefers-color-scheme: dark) {
9218
- body.theme-system .d\:bg-orange-legacy-600 {
9219
- background-color: var(--orange-legacy-600) !important;
9220
- }
9221
- }
9222
- body.theme-dark .d\:bg-orange-legacy-600,
9223
- .theme-dark__forced .d\:bg-orange-legacy-600,
9224
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-600 {
9225
- background-color: var(--orange-legacy-600) !important;
9226
- }
9227
- .fc-orange-legacy-500,
9228
- .h\:fc-orange-legacy-500:hover,
9229
- .f\:fc-orange-legacy-500:focus,
9230
- .f\:fc-orange-legacy-500:focus-within {
9231
- color: var(--orange-legacy-500) !important;
9232
- }
9233
- @media (prefers-color-scheme: dark) {
9234
- body.theme-system .d\:fc-orange-legacy-500 {
9235
- color: var(--orange-legacy-500) !important;
9236
- }
9237
- }
9238
- body.theme-dark .d\:fc-orange-legacy-500,
9239
- .theme-dark__forced .d\:fc-orange-legacy-500,
9240
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-500 {
9241
- color: var(--orange-legacy-500) !important;
9242
- }
9243
- .bg-orange-legacy-500,
9244
- .h\:bg-orange-legacy-500:hover,
9245
- .f\:bg-orange-legacy-500:focus,
9246
- .f\:bg-orange-legacy-500:focus-within {
9247
- background-color: var(--orange-legacy-500) !important;
9248
- }
9249
- @media (prefers-color-scheme: dark) {
9250
- body.theme-system .d\:bg-orange-legacy-500 {
9251
- background-color: var(--orange-legacy-500) !important;
9252
- }
9253
- }
9254
- body.theme-dark .d\:bg-orange-legacy-500,
9255
- .theme-dark__forced .d\:bg-orange-legacy-500,
9256
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-500 {
9257
- background-color: var(--orange-legacy-500) !important;
9258
- }
9259
- .fc-orange-legacy-400,
9260
- .h\:fc-orange-legacy-400:hover,
9261
- .f\:fc-orange-legacy-400:focus,
9262
- .f\:fc-orange-legacy-400:focus-within {
9263
- color: var(--orange-legacy-400) !important;
9264
- }
9265
- @media (prefers-color-scheme: dark) {
9266
- body.theme-system .d\:fc-orange-legacy-400 {
9267
- color: var(--orange-legacy-400) !important;
9268
- }
9269
- }
9270
- body.theme-dark .d\:fc-orange-legacy-400,
9271
- .theme-dark__forced .d\:fc-orange-legacy-400,
9272
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-400 {
9273
- color: var(--orange-legacy-400) !important;
9274
- }
9275
- .bg-orange-legacy-400,
9276
- .h\:bg-orange-legacy-400:hover,
9277
- .f\:bg-orange-legacy-400:focus,
9278
- .f\:bg-orange-legacy-400:focus-within {
9279
- background-color: var(--orange-legacy-400) !important;
9280
- }
9281
- @media (prefers-color-scheme: dark) {
9282
- body.theme-system .d\:bg-orange-legacy-400 {
9283
- background-color: var(--orange-legacy-400) !important;
9284
- }
9285
- }
9286
- body.theme-dark .d\:bg-orange-legacy-400,
9287
- .theme-dark__forced .d\:bg-orange-legacy-400,
9288
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-400 {
9289
- background-color: var(--orange-legacy-400) !important;
9290
- }
9291
- .fc-orange-legacy-300,
9292
- .h\:fc-orange-legacy-300:hover,
9293
- .f\:fc-orange-legacy-300:focus,
9294
- .f\:fc-orange-legacy-300:focus-within {
9295
- color: var(--orange-legacy-300) !important;
9296
- }
9297
- @media (prefers-color-scheme: dark) {
9298
- body.theme-system .d\:fc-orange-legacy-300 {
9299
- color: var(--orange-legacy-300) !important;
9300
- }
9301
- }
9302
- body.theme-dark .d\:fc-orange-legacy-300,
9303
- .theme-dark__forced .d\:fc-orange-legacy-300,
9304
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-300 {
9305
- color: var(--orange-legacy-300) !important;
9306
- }
9307
- .bg-orange-legacy-300,
9308
- .h\:bg-orange-legacy-300:hover,
9309
- .f\:bg-orange-legacy-300:focus,
9310
- .f\:bg-orange-legacy-300:focus-within {
9311
- background-color: var(--orange-legacy-300) !important;
9312
- }
9313
- @media (prefers-color-scheme: dark) {
9314
- body.theme-system .d\:bg-orange-legacy-300 {
9315
- background-color: var(--orange-legacy-300) !important;
9316
- }
9317
- }
9318
- body.theme-dark .d\:bg-orange-legacy-300,
9319
- .theme-dark__forced .d\:bg-orange-legacy-300,
9320
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-300 {
9321
- background-color: var(--orange-legacy-300) !important;
9322
- }
9323
- .fc-orange-legacy-200,
9324
- .h\:fc-orange-legacy-200:hover,
9325
- .f\:fc-orange-legacy-200:focus,
9326
- .f\:fc-orange-legacy-200:focus-within {
9327
- color: var(--orange-legacy-200) !important;
9328
- }
9329
- @media (prefers-color-scheme: dark) {
9330
- body.theme-system .d\:fc-orange-legacy-200 {
9331
- color: var(--orange-legacy-200) !important;
9332
- }
9333
- }
9334
- body.theme-dark .d\:fc-orange-legacy-200,
9335
- .theme-dark__forced .d\:fc-orange-legacy-200,
9336
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-200 {
9337
- color: var(--orange-legacy-200) !important;
9338
- }
9339
- .bg-orange-legacy-200,
9340
- .h\:bg-orange-legacy-200:hover,
9341
- .f\:bg-orange-legacy-200:focus,
9342
- .f\:bg-orange-legacy-200:focus-within {
9343
- background-color: var(--orange-legacy-200) !important;
9344
- }
9345
- @media (prefers-color-scheme: dark) {
9346
- body.theme-system .d\:bg-orange-legacy-200 {
9347
- background-color: var(--orange-legacy-200) !important;
9348
- }
9349
- }
9350
- body.theme-dark .d\:bg-orange-legacy-200,
9351
- .theme-dark__forced .d\:bg-orange-legacy-200,
9352
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-200 {
9353
- background-color: var(--orange-legacy-200) !important;
9354
- }
9355
- .fc-orange-legacy-100,
9356
- .h\:fc-orange-legacy-100:hover,
9357
- .f\:fc-orange-legacy-100:focus,
9358
- .f\:fc-orange-legacy-100:focus-within {
9359
- color: var(--orange-legacy-100) !important;
9360
- }
9361
- @media (prefers-color-scheme: dark) {
9362
- body.theme-system .d\:fc-orange-legacy-100 {
9363
- color: var(--orange-legacy-100) !important;
9364
- }
9365
- }
9366
- body.theme-dark .d\:fc-orange-legacy-100,
9367
- .theme-dark__forced .d\:fc-orange-legacy-100,
9368
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-100 {
9369
- color: var(--orange-legacy-100) !important;
9370
- }
9371
- .bg-orange-legacy-100,
9372
- .h\:bg-orange-legacy-100:hover,
9373
- .f\:bg-orange-legacy-100:focus,
9374
- .f\:bg-orange-legacy-100:focus-within {
9375
- background-color: var(--orange-legacy-100) !important;
9376
- }
9377
- @media (prefers-color-scheme: dark) {
9378
- body.theme-system .d\:bg-orange-legacy-100 {
9379
- background-color: var(--orange-legacy-100) !important;
9380
- }
9381
- }
9382
- body.theme-dark .d\:bg-orange-legacy-100,
9383
- .theme-dark__forced .d\:bg-orange-legacy-100,
9384
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-100 {
9385
- background-color: var(--orange-legacy-100) !important;
9386
- }
9387
- .fc-orange-legacy-050,
9388
- .h\:fc-orange-legacy-050:hover,
9389
- .f\:fc-orange-legacy-050:focus,
9390
- .f\:fc-orange-legacy-050:focus-within {
9391
- color: var(--orange-legacy-050) !important;
9392
- }
9393
- @media (prefers-color-scheme: dark) {
9394
- body.theme-system .d\:fc-orange-legacy-050 {
9395
- color: var(--orange-legacy-050) !important;
9396
- }
9397
- }
9398
- body.theme-dark .d\:fc-orange-legacy-050,
9399
- .theme-dark__forced .d\:fc-orange-legacy-050,
9400
- body.theme-system .theme-dark__forced .d\:fc-orange-legacy-050 {
9401
- color: var(--orange-legacy-050) !important;
9402
- }
9403
- .bg-orange-legacy-050,
9404
- .h\:bg-orange-legacy-050:hover,
9405
- .f\:bg-orange-legacy-050:focus,
9406
- .f\:bg-orange-legacy-050:focus-within {
9407
- background-color: var(--orange-legacy-050) !important;
9408
- }
9409
- @media (prefers-color-scheme: dark) {
9410
- body.theme-system .d\:bg-orange-legacy-050 {
9411
- background-color: var(--orange-legacy-050) !important;
9412
- }
9413
- }
9414
- body.theme-dark .d\:bg-orange-legacy-050,
9415
- .theme-dark__forced .d\:bg-orange-legacy-050,
9416
- body.theme-system .theme-dark__forced .d\:bg-orange-legacy-050 {
9417
- background-color: var(--orange-legacy-050) !important;
9418
- }
9419
- .fc-blue-legacy-900,
9420
- .h\:fc-blue-legacy-900:hover,
9421
- .f\:fc-blue-legacy-900:focus,
9422
- .f\:fc-blue-legacy-900:focus-within {
9423
- color: var(--blue-legacy-900) !important;
9424
- }
9425
- @media (prefers-color-scheme: dark) {
9426
- body.theme-system .d\:fc-blue-legacy-900 {
9427
- color: var(--blue-legacy-900) !important;
9428
- }
9429
- }
9430
- body.theme-dark .d\:fc-blue-legacy-900,
9431
- .theme-dark__forced .d\:fc-blue-legacy-900,
9432
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-900 {
9433
- color: var(--blue-legacy-900) !important;
9434
- }
9435
- .bg-blue-legacy-900,
9436
- .h\:bg-blue-legacy-900:hover,
9437
- .f\:bg-blue-legacy-900:focus,
9438
- .f\:bg-blue-legacy-900:focus-within {
9439
- background-color: var(--blue-legacy-900) !important;
9440
- }
9441
- @media (prefers-color-scheme: dark) {
9442
- body.theme-system .d\:bg-blue-legacy-900 {
9443
- background-color: var(--blue-legacy-900) !important;
9444
- }
9445
- }
9446
- body.theme-dark .d\:bg-blue-legacy-900,
9447
- .theme-dark__forced .d\:bg-blue-legacy-900,
9448
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-900 {
9449
- background-color: var(--blue-legacy-900) !important;
9450
- }
9451
- .fc-blue-legacy-800,
9452
- .h\:fc-blue-legacy-800:hover,
9453
- .f\:fc-blue-legacy-800:focus,
9454
- .f\:fc-blue-legacy-800:focus-within {
9455
- color: var(--blue-legacy-800) !important;
9456
- }
9457
- @media (prefers-color-scheme: dark) {
9458
- body.theme-system .d\:fc-blue-legacy-800 {
9459
- color: var(--blue-legacy-800) !important;
9460
- }
9461
- }
9462
- body.theme-dark .d\:fc-blue-legacy-800,
9463
- .theme-dark__forced .d\:fc-blue-legacy-800,
9464
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-800 {
9465
- color: var(--blue-legacy-800) !important;
9466
- }
9467
- .bg-blue-legacy-800,
9468
- .h\:bg-blue-legacy-800:hover,
9469
- .f\:bg-blue-legacy-800:focus,
9470
- .f\:bg-blue-legacy-800:focus-within {
9471
- background-color: var(--blue-legacy-800) !important;
9472
- }
9473
- @media (prefers-color-scheme: dark) {
9474
- body.theme-system .d\:bg-blue-legacy-800 {
9475
- background-color: var(--blue-legacy-800) !important;
9476
- }
9477
- }
9478
- body.theme-dark .d\:bg-blue-legacy-800,
9479
- .theme-dark__forced .d\:bg-blue-legacy-800,
9480
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-800 {
9481
- background-color: var(--blue-legacy-800) !important;
9482
- }
9483
- .fc-blue-legacy-700,
9484
- .h\:fc-blue-legacy-700:hover,
9485
- .f\:fc-blue-legacy-700:focus,
9486
- .f\:fc-blue-legacy-700:focus-within {
9487
- color: var(--blue-legacy-700) !important;
9488
- }
9489
- @media (prefers-color-scheme: dark) {
9490
- body.theme-system .d\:fc-blue-legacy-700 {
9491
- color: var(--blue-legacy-700) !important;
9492
- }
9493
- }
9494
- body.theme-dark .d\:fc-blue-legacy-700,
9495
- .theme-dark__forced .d\:fc-blue-legacy-700,
9496
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-700 {
9497
- color: var(--blue-legacy-700) !important;
9498
- }
9499
- .bg-blue-legacy-700,
9500
- .h\:bg-blue-legacy-700:hover,
9501
- .f\:bg-blue-legacy-700:focus,
9502
- .f\:bg-blue-legacy-700:focus-within {
9503
- background-color: var(--blue-legacy-700) !important;
9504
- }
9505
- @media (prefers-color-scheme: dark) {
9506
- body.theme-system .d\:bg-blue-legacy-700 {
9507
- background-color: var(--blue-legacy-700) !important;
9508
- }
9509
- }
9510
- body.theme-dark .d\:bg-blue-legacy-700,
9511
- .theme-dark__forced .d\:bg-blue-legacy-700,
9512
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-700 {
9513
- background-color: var(--blue-legacy-700) !important;
9514
- }
9515
- .fc-blue-legacy-600,
9516
- .h\:fc-blue-legacy-600:hover,
9517
- .f\:fc-blue-legacy-600:focus,
9518
- .f\:fc-blue-legacy-600:focus-within {
9519
- color: var(--blue-legacy-600) !important;
9520
- }
9521
- @media (prefers-color-scheme: dark) {
9522
- body.theme-system .d\:fc-blue-legacy-600 {
9523
- color: var(--blue-legacy-600) !important;
9524
- }
9525
- }
9526
- body.theme-dark .d\:fc-blue-legacy-600,
9527
- .theme-dark__forced .d\:fc-blue-legacy-600,
9528
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-600 {
9529
- color: var(--blue-legacy-600) !important;
9530
- }
9531
- .bg-blue-legacy-600,
9532
- .h\:bg-blue-legacy-600:hover,
9533
- .f\:bg-blue-legacy-600:focus,
9534
- .f\:bg-blue-legacy-600:focus-within {
9535
- background-color: var(--blue-legacy-600) !important;
9536
- }
9537
- @media (prefers-color-scheme: dark) {
9538
- body.theme-system .d\:bg-blue-legacy-600 {
9539
- background-color: var(--blue-legacy-600) !important;
9540
- }
9541
- }
9542
- body.theme-dark .d\:bg-blue-legacy-600,
9543
- .theme-dark__forced .d\:bg-blue-legacy-600,
9544
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-600 {
9545
- background-color: var(--blue-legacy-600) !important;
9546
- }
9547
- .fc-blue-legacy-500,
9548
- .h\:fc-blue-legacy-500:hover,
9549
- .f\:fc-blue-legacy-500:focus,
9550
- .f\:fc-blue-legacy-500:focus-within {
9551
- color: var(--blue-legacy-500) !important;
9552
- }
9553
- @media (prefers-color-scheme: dark) {
9554
- body.theme-system .d\:fc-blue-legacy-500 {
9555
- color: var(--blue-legacy-500) !important;
9556
- }
9557
- }
9558
- body.theme-dark .d\:fc-blue-legacy-500,
9559
- .theme-dark__forced .d\:fc-blue-legacy-500,
9560
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-500 {
9561
- color: var(--blue-legacy-500) !important;
9562
- }
9563
- .bg-blue-legacy-500,
9564
- .h\:bg-blue-legacy-500:hover,
9565
- .f\:bg-blue-legacy-500:focus,
9566
- .f\:bg-blue-legacy-500:focus-within {
9567
- background-color: var(--blue-legacy-500) !important;
9568
- }
9569
- @media (prefers-color-scheme: dark) {
9570
- body.theme-system .d\:bg-blue-legacy-500 {
9571
- background-color: var(--blue-legacy-500) !important;
9572
- }
9573
- }
9574
- body.theme-dark .d\:bg-blue-legacy-500,
9575
- .theme-dark__forced .d\:bg-blue-legacy-500,
9576
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-500 {
9577
- background-color: var(--blue-legacy-500) !important;
9578
- }
9579
- .fc-blue-legacy-400,
9580
- .h\:fc-blue-legacy-400:hover,
9581
- .f\:fc-blue-legacy-400:focus,
9582
- .f\:fc-blue-legacy-400:focus-within {
9583
- color: var(--blue-legacy-400) !important;
9584
- }
9585
- @media (prefers-color-scheme: dark) {
9586
- body.theme-system .d\:fc-blue-legacy-400 {
9587
- color: var(--blue-legacy-400) !important;
9588
- }
9589
- }
9590
- body.theme-dark .d\:fc-blue-legacy-400,
9591
- .theme-dark__forced .d\:fc-blue-legacy-400,
9592
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-400 {
9593
- color: var(--blue-legacy-400) !important;
9594
- }
9595
- .bg-blue-legacy-400,
9596
- .h\:bg-blue-legacy-400:hover,
9597
- .f\:bg-blue-legacy-400:focus,
9598
- .f\:bg-blue-legacy-400:focus-within {
9599
- background-color: var(--blue-legacy-400) !important;
9600
- }
9601
- @media (prefers-color-scheme: dark) {
9602
- body.theme-system .d\:bg-blue-legacy-400 {
9603
- background-color: var(--blue-legacy-400) !important;
9604
- }
9605
- }
9606
- body.theme-dark .d\:bg-blue-legacy-400,
9607
- .theme-dark__forced .d\:bg-blue-legacy-400,
9608
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-400 {
9609
- background-color: var(--blue-legacy-400) !important;
9610
- }
9611
- .fc-blue-legacy-300,
9612
- .h\:fc-blue-legacy-300:hover,
9613
- .f\:fc-blue-legacy-300:focus,
9614
- .f\:fc-blue-legacy-300:focus-within {
9615
- color: var(--blue-legacy-300) !important;
9616
- }
9617
- @media (prefers-color-scheme: dark) {
9618
- body.theme-system .d\:fc-blue-legacy-300 {
9619
- color: var(--blue-legacy-300) !important;
9620
- }
9621
- }
9622
- body.theme-dark .d\:fc-blue-legacy-300,
9623
- .theme-dark__forced .d\:fc-blue-legacy-300,
9624
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-300 {
9625
- color: var(--blue-legacy-300) !important;
9626
- }
9627
- .bg-blue-legacy-300,
9628
- .h\:bg-blue-legacy-300:hover,
9629
- .f\:bg-blue-legacy-300:focus,
9630
- .f\:bg-blue-legacy-300:focus-within {
9631
- background-color: var(--blue-legacy-300) !important;
9632
- }
9633
- @media (prefers-color-scheme: dark) {
9634
- body.theme-system .d\:bg-blue-legacy-300 {
9635
- background-color: var(--blue-legacy-300) !important;
9636
- }
9637
- }
9638
- body.theme-dark .d\:bg-blue-legacy-300,
9639
- .theme-dark__forced .d\:bg-blue-legacy-300,
9640
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-300 {
9641
- background-color: var(--blue-legacy-300) !important;
9642
- }
9643
- .fc-blue-legacy-200,
9644
- .h\:fc-blue-legacy-200:hover,
9645
- .f\:fc-blue-legacy-200:focus,
9646
- .f\:fc-blue-legacy-200:focus-within {
9647
- color: var(--blue-legacy-200) !important;
9648
- }
9649
- @media (prefers-color-scheme: dark) {
9650
- body.theme-system .d\:fc-blue-legacy-200 {
9651
- color: var(--blue-legacy-200) !important;
9652
- }
9653
- }
9654
- body.theme-dark .d\:fc-blue-legacy-200,
9655
- .theme-dark__forced .d\:fc-blue-legacy-200,
9656
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-200 {
9657
- color: var(--blue-legacy-200) !important;
9658
- }
9659
- .bg-blue-legacy-200,
9660
- .h\:bg-blue-legacy-200:hover,
9661
- .f\:bg-blue-legacy-200:focus,
9662
- .f\:bg-blue-legacy-200:focus-within {
9663
- background-color: var(--blue-legacy-200) !important;
9664
- }
9665
- @media (prefers-color-scheme: dark) {
9666
- body.theme-system .d\:bg-blue-legacy-200 {
9667
- background-color: var(--blue-legacy-200) !important;
9668
- }
9669
- }
9670
- body.theme-dark .d\:bg-blue-legacy-200,
9671
- .theme-dark__forced .d\:bg-blue-legacy-200,
9672
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-200 {
9673
- background-color: var(--blue-legacy-200) !important;
9674
- }
9675
- .fc-blue-legacy-100,
9676
- .h\:fc-blue-legacy-100:hover,
9677
- .f\:fc-blue-legacy-100:focus,
9678
- .f\:fc-blue-legacy-100:focus-within {
9679
- color: var(--blue-legacy-100) !important;
9680
- }
9681
- @media (prefers-color-scheme: dark) {
9682
- body.theme-system .d\:fc-blue-legacy-100 {
9683
- color: var(--blue-legacy-100) !important;
9684
- }
9685
- }
9686
- body.theme-dark .d\:fc-blue-legacy-100,
9687
- .theme-dark__forced .d\:fc-blue-legacy-100,
9688
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-100 {
9689
- color: var(--blue-legacy-100) !important;
9690
- }
9691
- .bg-blue-legacy-100,
9692
- .h\:bg-blue-legacy-100:hover,
9693
- .f\:bg-blue-legacy-100:focus,
9694
- .f\:bg-blue-legacy-100:focus-within {
9695
- background-color: var(--blue-legacy-100) !important;
9696
- }
9697
- @media (prefers-color-scheme: dark) {
9698
- body.theme-system .d\:bg-blue-legacy-100 {
9699
- background-color: var(--blue-legacy-100) !important;
9700
- }
9701
- }
9702
- body.theme-dark .d\:bg-blue-legacy-100,
9703
- .theme-dark__forced .d\:bg-blue-legacy-100,
9704
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-100 {
9705
- background-color: var(--blue-legacy-100) !important;
9706
- }
9707
- .fc-blue-legacy-050,
9708
- .h\:fc-blue-legacy-050:hover,
9709
- .f\:fc-blue-legacy-050:focus,
9710
- .f\:fc-blue-legacy-050:focus-within {
9711
- color: var(--blue-legacy-050) !important;
9712
- }
9713
- @media (prefers-color-scheme: dark) {
9714
- body.theme-system .d\:fc-blue-legacy-050 {
9715
- color: var(--blue-legacy-050) !important;
9716
- }
9717
- }
9718
- body.theme-dark .d\:fc-blue-legacy-050,
9719
- .theme-dark__forced .d\:fc-blue-legacy-050,
9720
- body.theme-system .theme-dark__forced .d\:fc-blue-legacy-050 {
9721
- color: var(--blue-legacy-050) !important;
9722
- }
9723
- .bg-blue-legacy-050,
9724
- .h\:bg-blue-legacy-050:hover,
9725
- .f\:bg-blue-legacy-050:focus,
9726
- .f\:bg-blue-legacy-050:focus-within {
9727
- background-color: var(--blue-legacy-050) !important;
9728
- }
9729
- @media (prefers-color-scheme: dark) {
9730
- body.theme-system .d\:bg-blue-legacy-050 {
9731
- background-color: var(--blue-legacy-050) !important;
9732
- }
9733
- }
9734
- body.theme-dark .d\:bg-blue-legacy-050,
9735
- .theme-dark__forced .d\:bg-blue-legacy-050,
9736
- body.theme-system .theme-dark__forced .d\:bg-blue-legacy-050 {
9737
- background-color: var(--blue-legacy-050) !important;
9738
- }
9739
- .fc-powder-legacy-900,
9740
- .h\:fc-powder-legacy-900:hover,
9741
- .f\:fc-powder-legacy-900:focus,
9742
- .f\:fc-powder-legacy-900:focus-within {
9743
- color: var(--powder-legacy-900) !important;
9744
- }
9745
- @media (prefers-color-scheme: dark) {
9746
- body.theme-system .d\:fc-powder-legacy-900 {
9747
- color: var(--powder-legacy-900) !important;
9748
- }
9749
- }
9750
- body.theme-dark .d\:fc-powder-legacy-900,
9751
- .theme-dark__forced .d\:fc-powder-legacy-900,
9752
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-900 {
9753
- color: var(--powder-legacy-900) !important;
9754
- }
9755
- .bg-powder-legacy-900,
9756
- .h\:bg-powder-legacy-900:hover,
9757
- .f\:bg-powder-legacy-900:focus,
9758
- .f\:bg-powder-legacy-900:focus-within {
9759
- background-color: var(--powder-legacy-900) !important;
9760
- }
9761
- @media (prefers-color-scheme: dark) {
9762
- body.theme-system .d\:bg-powder-legacy-900 {
9763
- background-color: var(--powder-legacy-900) !important;
9764
- }
9765
- }
9766
- body.theme-dark .d\:bg-powder-legacy-900,
9767
- .theme-dark__forced .d\:bg-powder-legacy-900,
9768
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-900 {
9769
- background-color: var(--powder-legacy-900) !important;
9770
- }
9771
- .fc-powder-legacy-800,
9772
- .h\:fc-powder-legacy-800:hover,
9773
- .f\:fc-powder-legacy-800:focus,
9774
- .f\:fc-powder-legacy-800:focus-within {
9775
- color: var(--powder-legacy-800) !important;
9776
- }
9777
- @media (prefers-color-scheme: dark) {
9778
- body.theme-system .d\:fc-powder-legacy-800 {
9779
- color: var(--powder-legacy-800) !important;
9780
- }
9781
- }
9782
- body.theme-dark .d\:fc-powder-legacy-800,
9783
- .theme-dark__forced .d\:fc-powder-legacy-800,
9784
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-800 {
9785
- color: var(--powder-legacy-800) !important;
9786
- }
9787
- .bg-powder-legacy-800,
9788
- .h\:bg-powder-legacy-800:hover,
9789
- .f\:bg-powder-legacy-800:focus,
9790
- .f\:bg-powder-legacy-800:focus-within {
9791
- background-color: var(--powder-legacy-800) !important;
9792
- }
9793
- @media (prefers-color-scheme: dark) {
9794
- body.theme-system .d\:bg-powder-legacy-800 {
9795
- background-color: var(--powder-legacy-800) !important;
9796
- }
9797
- }
9798
- body.theme-dark .d\:bg-powder-legacy-800,
9799
- .theme-dark__forced .d\:bg-powder-legacy-800,
9800
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-800 {
9801
- background-color: var(--powder-legacy-800) !important;
9802
- }
9803
- .fc-powder-legacy-700,
9804
- .h\:fc-powder-legacy-700:hover,
9805
- .f\:fc-powder-legacy-700:focus,
9806
- .f\:fc-powder-legacy-700:focus-within {
9807
- color: var(--powder-legacy-700) !important;
9808
- }
9809
- @media (prefers-color-scheme: dark) {
9810
- body.theme-system .d\:fc-powder-legacy-700 {
9811
- color: var(--powder-legacy-700) !important;
9812
- }
9813
- }
9814
- body.theme-dark .d\:fc-powder-legacy-700,
9815
- .theme-dark__forced .d\:fc-powder-legacy-700,
9816
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-700 {
9817
- color: var(--powder-legacy-700) !important;
9818
- }
9819
- .bg-powder-legacy-700,
9820
- .h\:bg-powder-legacy-700:hover,
9821
- .f\:bg-powder-legacy-700:focus,
9822
- .f\:bg-powder-legacy-700:focus-within {
9823
- background-color: var(--powder-legacy-700) !important;
9824
- }
9825
- @media (prefers-color-scheme: dark) {
9826
- body.theme-system .d\:bg-powder-legacy-700 {
9827
- background-color: var(--powder-legacy-700) !important;
9828
- }
9829
- }
9830
- body.theme-dark .d\:bg-powder-legacy-700,
9831
- .theme-dark__forced .d\:bg-powder-legacy-700,
9832
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-700 {
9833
- background-color: var(--powder-legacy-700) !important;
9834
- }
9835
- .fc-powder-legacy-600,
9836
- .h\:fc-powder-legacy-600:hover,
9837
- .f\:fc-powder-legacy-600:focus,
9838
- .f\:fc-powder-legacy-600:focus-within {
9839
- color: var(--powder-legacy-600) !important;
9840
- }
9841
- @media (prefers-color-scheme: dark) {
9842
- body.theme-system .d\:fc-powder-legacy-600 {
9843
- color: var(--powder-legacy-600) !important;
9844
- }
9845
- }
9846
- body.theme-dark .d\:fc-powder-legacy-600,
9847
- .theme-dark__forced .d\:fc-powder-legacy-600,
9848
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-600 {
9849
- color: var(--powder-legacy-600) !important;
9850
- }
9851
- .bg-powder-legacy-600,
9852
- .h\:bg-powder-legacy-600:hover,
9853
- .f\:bg-powder-legacy-600:focus,
9854
- .f\:bg-powder-legacy-600:focus-within {
9855
- background-color: var(--powder-legacy-600) !important;
9856
- }
9857
- @media (prefers-color-scheme: dark) {
9858
- body.theme-system .d\:bg-powder-legacy-600 {
9859
- background-color: var(--powder-legacy-600) !important;
9860
- }
9861
- }
9862
- body.theme-dark .d\:bg-powder-legacy-600,
9863
- .theme-dark__forced .d\:bg-powder-legacy-600,
9864
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-600 {
9865
- background-color: var(--powder-legacy-600) !important;
9866
- }
9867
- .fc-powder-legacy-500,
9868
- .h\:fc-powder-legacy-500:hover,
9869
- .f\:fc-powder-legacy-500:focus,
9870
- .f\:fc-powder-legacy-500:focus-within {
9871
- color: var(--powder-legacy-500) !important;
9872
- }
9873
- @media (prefers-color-scheme: dark) {
9874
- body.theme-system .d\:fc-powder-legacy-500 {
9875
- color: var(--powder-legacy-500) !important;
9876
- }
9877
- }
9878
- body.theme-dark .d\:fc-powder-legacy-500,
9879
- .theme-dark__forced .d\:fc-powder-legacy-500,
9880
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-500 {
9881
- color: var(--powder-legacy-500) !important;
9882
- }
9883
- .bg-powder-legacy-500,
9884
- .h\:bg-powder-legacy-500:hover,
9885
- .f\:bg-powder-legacy-500:focus,
9886
- .f\:bg-powder-legacy-500:focus-within {
9887
- background-color: var(--powder-legacy-500) !important;
9888
- }
9889
- @media (prefers-color-scheme: dark) {
9890
- body.theme-system .d\:bg-powder-legacy-500 {
9891
- background-color: var(--powder-legacy-500) !important;
9892
- }
9893
- }
9894
- body.theme-dark .d\:bg-powder-legacy-500,
9895
- .theme-dark__forced .d\:bg-powder-legacy-500,
9896
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-500 {
9897
- background-color: var(--powder-legacy-500) !important;
9898
- }
9899
- .fc-powder-legacy-400,
9900
- .h\:fc-powder-legacy-400:hover,
9901
- .f\:fc-powder-legacy-400:focus,
9902
- .f\:fc-powder-legacy-400:focus-within {
9903
- color: var(--powder-legacy-400) !important;
9904
- }
9905
- @media (prefers-color-scheme: dark) {
9906
- body.theme-system .d\:fc-powder-legacy-400 {
9907
- color: var(--powder-legacy-400) !important;
9908
- }
9909
- }
9910
- body.theme-dark .d\:fc-powder-legacy-400,
9911
- .theme-dark__forced .d\:fc-powder-legacy-400,
9912
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-400 {
9913
- color: var(--powder-legacy-400) !important;
9914
- }
9915
- .bg-powder-legacy-400,
9916
- .h\:bg-powder-legacy-400:hover,
9917
- .f\:bg-powder-legacy-400:focus,
9918
- .f\:bg-powder-legacy-400:focus-within {
9919
- background-color: var(--powder-legacy-400) !important;
9920
- }
9921
- @media (prefers-color-scheme: dark) {
9922
- body.theme-system .d\:bg-powder-legacy-400 {
9923
- background-color: var(--powder-legacy-400) !important;
9924
- }
9925
- }
9926
- body.theme-dark .d\:bg-powder-legacy-400,
9927
- .theme-dark__forced .d\:bg-powder-legacy-400,
9928
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-400 {
9929
- background-color: var(--powder-legacy-400) !important;
9930
- }
9931
- .fc-powder-legacy-300,
9932
- .h\:fc-powder-legacy-300:hover,
9933
- .f\:fc-powder-legacy-300:focus,
9934
- .f\:fc-powder-legacy-300:focus-within {
9935
- color: var(--powder-legacy-300) !important;
9936
- }
9937
- @media (prefers-color-scheme: dark) {
9938
- body.theme-system .d\:fc-powder-legacy-300 {
9939
- color: var(--powder-legacy-300) !important;
9940
- }
9941
- }
9942
- body.theme-dark .d\:fc-powder-legacy-300,
9943
- .theme-dark__forced .d\:fc-powder-legacy-300,
9944
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-300 {
9945
- color: var(--powder-legacy-300) !important;
9946
- }
9947
- .bg-powder-legacy-300,
9948
- .h\:bg-powder-legacy-300:hover,
9949
- .f\:bg-powder-legacy-300:focus,
9950
- .f\:bg-powder-legacy-300:focus-within {
9951
- background-color: var(--powder-legacy-300) !important;
9952
- }
9953
- @media (prefers-color-scheme: dark) {
9954
- body.theme-system .d\:bg-powder-legacy-300 {
9955
- background-color: var(--powder-legacy-300) !important;
9956
- }
9957
- }
9958
- body.theme-dark .d\:bg-powder-legacy-300,
9959
- .theme-dark__forced .d\:bg-powder-legacy-300,
9960
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-300 {
9961
- background-color: var(--powder-legacy-300) !important;
9962
- }
9963
- .fc-powder-legacy-200,
9964
- .h\:fc-powder-legacy-200:hover,
9965
- .f\:fc-powder-legacy-200:focus,
9966
- .f\:fc-powder-legacy-200:focus-within {
9967
- color: var(--powder-legacy-200) !important;
9968
- }
9969
- @media (prefers-color-scheme: dark) {
9970
- body.theme-system .d\:fc-powder-legacy-200 {
9971
- color: var(--powder-legacy-200) !important;
9972
- }
9973
- }
9974
- body.theme-dark .d\:fc-powder-legacy-200,
9975
- .theme-dark__forced .d\:fc-powder-legacy-200,
9976
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-200 {
9977
- color: var(--powder-legacy-200) !important;
9978
- }
9979
- .bg-powder-legacy-200,
9980
- .h\:bg-powder-legacy-200:hover,
9981
- .f\:bg-powder-legacy-200:focus,
9982
- .f\:bg-powder-legacy-200:focus-within {
9983
- background-color: var(--powder-legacy-200) !important;
9984
- }
9985
- @media (prefers-color-scheme: dark) {
9986
- body.theme-system .d\:bg-powder-legacy-200 {
9987
- background-color: var(--powder-legacy-200) !important;
9988
- }
9989
- }
9990
- body.theme-dark .d\:bg-powder-legacy-200,
9991
- .theme-dark__forced .d\:bg-powder-legacy-200,
9992
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-200 {
9993
- background-color: var(--powder-legacy-200) !important;
9994
- }
9995
- .fc-powder-legacy-100,
9996
- .h\:fc-powder-legacy-100:hover,
9997
- .f\:fc-powder-legacy-100:focus,
9998
- .f\:fc-powder-legacy-100:focus-within {
9999
- color: var(--powder-legacy-100) !important;
10000
- }
10001
- @media (prefers-color-scheme: dark) {
10002
- body.theme-system .d\:fc-powder-legacy-100 {
10003
- color: var(--powder-legacy-100) !important;
10004
- }
10005
- }
10006
- body.theme-dark .d\:fc-powder-legacy-100,
10007
- .theme-dark__forced .d\:fc-powder-legacy-100,
10008
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-100 {
10009
- color: var(--powder-legacy-100) !important;
10010
- }
10011
- .bg-powder-legacy-100,
10012
- .h\:bg-powder-legacy-100:hover,
10013
- .f\:bg-powder-legacy-100:focus,
10014
- .f\:bg-powder-legacy-100:focus-within {
10015
- background-color: var(--powder-legacy-100) !important;
10016
- }
10017
- @media (prefers-color-scheme: dark) {
10018
- body.theme-system .d\:bg-powder-legacy-100 {
10019
- background-color: var(--powder-legacy-100) !important;
10020
- }
10021
- }
10022
- body.theme-dark .d\:bg-powder-legacy-100,
10023
- .theme-dark__forced .d\:bg-powder-legacy-100,
10024
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-100 {
10025
- background-color: var(--powder-legacy-100) !important;
10026
- }
10027
- .fc-powder-legacy-050,
10028
- .h\:fc-powder-legacy-050:hover,
10029
- .f\:fc-powder-legacy-050:focus,
10030
- .f\:fc-powder-legacy-050:focus-within {
10031
- color: var(--powder-legacy-050) !important;
10032
- }
10033
- @media (prefers-color-scheme: dark) {
10034
- body.theme-system .d\:fc-powder-legacy-050 {
10035
- color: var(--powder-legacy-050) !important;
10036
- }
10037
- }
10038
- body.theme-dark .d\:fc-powder-legacy-050,
10039
- .theme-dark__forced .d\:fc-powder-legacy-050,
10040
- body.theme-system .theme-dark__forced .d\:fc-powder-legacy-050 {
10041
- color: var(--powder-legacy-050) !important;
10042
- }
10043
- .bg-powder-legacy-050,
10044
- .h\:bg-powder-legacy-050:hover,
10045
- .f\:bg-powder-legacy-050:focus,
10046
- .f\:bg-powder-legacy-050:focus-within {
10047
- background-color: var(--powder-legacy-050) !important;
10048
- }
10049
- @media (prefers-color-scheme: dark) {
10050
- body.theme-system .d\:bg-powder-legacy-050 {
10051
- background-color: var(--powder-legacy-050) !important;
10052
- }
10053
- }
10054
- body.theme-dark .d\:bg-powder-legacy-050,
10055
- .theme-dark__forced .d\:bg-powder-legacy-050,
10056
- body.theme-system .theme-dark__forced .d\:bg-powder-legacy-050 {
10057
- background-color: var(--powder-legacy-050) !important;
10058
- }
10059
- .fc-green-legacy-900,
10060
- .h\:fc-green-legacy-900:hover,
10061
- .f\:fc-green-legacy-900:focus,
10062
- .f\:fc-green-legacy-900:focus-within {
10063
- color: var(--green-legacy-900) !important;
10064
- }
10065
- @media (prefers-color-scheme: dark) {
10066
- body.theme-system .d\:fc-green-legacy-900 {
10067
- color: var(--green-legacy-900) !important;
10068
- }
10069
- }
10070
- body.theme-dark .d\:fc-green-legacy-900,
10071
- .theme-dark__forced .d\:fc-green-legacy-900,
10072
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-900 {
10073
- color: var(--green-legacy-900) !important;
10074
- }
10075
- .bg-green-legacy-900,
10076
- .h\:bg-green-legacy-900:hover,
10077
- .f\:bg-green-legacy-900:focus,
10078
- .f\:bg-green-legacy-900:focus-within {
10079
- background-color: var(--green-legacy-900) !important;
10080
- }
10081
- @media (prefers-color-scheme: dark) {
10082
- body.theme-system .d\:bg-green-legacy-900 {
10083
- background-color: var(--green-legacy-900) !important;
10084
- }
10085
- }
10086
- body.theme-dark .d\:bg-green-legacy-900,
10087
- .theme-dark__forced .d\:bg-green-legacy-900,
10088
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-900 {
10089
- background-color: var(--green-legacy-900) !important;
10090
- }
10091
- .fc-green-legacy-800,
10092
- .h\:fc-green-legacy-800:hover,
10093
- .f\:fc-green-legacy-800:focus,
10094
- .f\:fc-green-legacy-800:focus-within {
10095
- color: var(--green-legacy-800) !important;
10096
- }
10097
- @media (prefers-color-scheme: dark) {
10098
- body.theme-system .d\:fc-green-legacy-800 {
10099
- color: var(--green-legacy-800) !important;
10100
- }
10101
- }
10102
- body.theme-dark .d\:fc-green-legacy-800,
10103
- .theme-dark__forced .d\:fc-green-legacy-800,
10104
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-800 {
10105
- color: var(--green-legacy-800) !important;
10106
- }
10107
- .bg-green-legacy-800,
10108
- .h\:bg-green-legacy-800:hover,
10109
- .f\:bg-green-legacy-800:focus,
10110
- .f\:bg-green-legacy-800:focus-within {
10111
- background-color: var(--green-legacy-800) !important;
10112
- }
10113
- @media (prefers-color-scheme: dark) {
10114
- body.theme-system .d\:bg-green-legacy-800 {
10115
- background-color: var(--green-legacy-800) !important;
10116
- }
10117
- }
10118
- body.theme-dark .d\:bg-green-legacy-800,
10119
- .theme-dark__forced .d\:bg-green-legacy-800,
10120
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-800 {
10121
- background-color: var(--green-legacy-800) !important;
10122
- }
10123
- .fc-green-legacy-700,
10124
- .h\:fc-green-legacy-700:hover,
10125
- .f\:fc-green-legacy-700:focus,
10126
- .f\:fc-green-legacy-700:focus-within {
10127
- color: var(--green-legacy-700) !important;
10128
- }
10129
- @media (prefers-color-scheme: dark) {
10130
- body.theme-system .d\:fc-green-legacy-700 {
10131
- color: var(--green-legacy-700) !important;
10132
- }
10133
- }
10134
- body.theme-dark .d\:fc-green-legacy-700,
10135
- .theme-dark__forced .d\:fc-green-legacy-700,
10136
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-700 {
10137
- color: var(--green-legacy-700) !important;
10138
- }
10139
- .bg-green-legacy-700,
10140
- .h\:bg-green-legacy-700:hover,
10141
- .f\:bg-green-legacy-700:focus,
10142
- .f\:bg-green-legacy-700:focus-within {
10143
- background-color: var(--green-legacy-700) !important;
10144
- }
10145
- @media (prefers-color-scheme: dark) {
10146
- body.theme-system .d\:bg-green-legacy-700 {
10147
- background-color: var(--green-legacy-700) !important;
10148
- }
10149
- }
10150
- body.theme-dark .d\:bg-green-legacy-700,
10151
- .theme-dark__forced .d\:bg-green-legacy-700,
10152
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-700 {
10153
- background-color: var(--green-legacy-700) !important;
10154
- }
10155
- .fc-green-legacy-600,
10156
- .h\:fc-green-legacy-600:hover,
10157
- .f\:fc-green-legacy-600:focus,
10158
- .f\:fc-green-legacy-600:focus-within,
10159
- .fc-success-legacy {
10160
- color: var(--green-legacy-600) !important;
10161
- }
10162
- @media (prefers-color-scheme: dark) {
10163
- body.theme-system .d\:fc-green-legacy-600 {
10164
- color: var(--green-legacy-600) !important;
10165
- }
10166
- }
10167
- body.theme-dark .d\:fc-green-legacy-600,
10168
- .theme-dark__forced .d\:fc-green-legacy-600,
10169
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-600 {
10170
- color: var(--green-legacy-600) !important;
10171
- }
10172
- .bg-green-legacy-600,
10173
- .h\:bg-green-legacy-600:hover,
10174
- .f\:bg-green-legacy-600:focus,
10175
- .f\:bg-green-legacy-600:focus-within {
10176
- background-color: var(--green-legacy-600) !important;
10177
- }
10178
- @media (prefers-color-scheme: dark) {
10179
- body.theme-system .d\:bg-green-legacy-600 {
10180
- background-color: var(--green-legacy-600) !important;
10181
- }
10182
- }
10183
- body.theme-dark .d\:bg-green-legacy-600,
10184
- .theme-dark__forced .d\:bg-green-legacy-600,
10185
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-600 {
10186
- background-color: var(--green-legacy-600) !important;
10187
- }
10188
- .fc-green-legacy-500,
10189
- .h\:fc-green-legacy-500:hover,
10190
- .f\:fc-green-legacy-500:focus,
10191
- .f\:fc-green-legacy-500:focus-within {
10192
- color: var(--green-legacy-500) !important;
10193
- }
10194
- @media (prefers-color-scheme: dark) {
10195
- body.theme-system .d\:fc-green-legacy-500 {
10196
- color: var(--green-legacy-500) !important;
10197
- }
10198
- }
10199
- body.theme-dark .d\:fc-green-legacy-500,
10200
- .theme-dark__forced .d\:fc-green-legacy-500,
10201
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-500 {
10202
- color: var(--green-legacy-500) !important;
10203
- }
10204
- .bg-green-legacy-500,
10205
- .h\:bg-green-legacy-500:hover,
10206
- .f\:bg-green-legacy-500:focus,
10207
- .f\:bg-green-legacy-500:focus-within,
10208
- .bg-success-legacy {
10209
- background-color: var(--green-legacy-500) !important;
10210
- }
10211
- @media (prefers-color-scheme: dark) {
10212
- body.theme-system .d\:bg-green-legacy-500 {
10213
- background-color: var(--green-legacy-500) !important;
10214
- }
10215
- }
10216
- body.theme-dark .d\:bg-green-legacy-500,
10217
- .theme-dark__forced .d\:bg-green-legacy-500,
10218
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-500 {
10219
- background-color: var(--green-legacy-500) !important;
10220
- }
10221
- .fc-green-legacy-400,
10222
- .h\:fc-green-legacy-400:hover,
10223
- .f\:fc-green-legacy-400:focus,
10224
- .f\:fc-green-legacy-400:focus-within {
10225
- color: var(--green-legacy-400) !important;
10226
- }
10227
- @media (prefers-color-scheme: dark) {
10228
- body.theme-system .d\:fc-green-legacy-400 {
10229
- color: var(--green-legacy-400) !important;
10230
- }
10231
- }
10232
- body.theme-dark .d\:fc-green-legacy-400,
10233
- .theme-dark__forced .d\:fc-green-legacy-400,
10234
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-400 {
10235
- color: var(--green-legacy-400) !important;
10236
- }
10237
- .bg-green-legacy-400,
10238
- .h\:bg-green-legacy-400:hover,
10239
- .f\:bg-green-legacy-400:focus,
10240
- .f\:bg-green-legacy-400:focus-within {
10241
- background-color: var(--green-legacy-400) !important;
10242
- }
10243
- @media (prefers-color-scheme: dark) {
10244
- body.theme-system .d\:bg-green-legacy-400 {
10245
- background-color: var(--green-legacy-400) !important;
10246
- }
10247
- }
10248
- body.theme-dark .d\:bg-green-legacy-400,
10249
- .theme-dark__forced .d\:bg-green-legacy-400,
10250
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-400 {
10251
- background-color: var(--green-legacy-400) !important;
10252
- }
10253
- .fc-green-legacy-300,
10254
- .h\:fc-green-legacy-300:hover,
10255
- .f\:fc-green-legacy-300:focus,
10256
- .f\:fc-green-legacy-300:focus-within {
10257
- color: var(--green-legacy-300) !important;
10258
- }
10259
- @media (prefers-color-scheme: dark) {
10260
- body.theme-system .d\:fc-green-legacy-300 {
10261
- color: var(--green-legacy-300) !important;
10262
- }
10263
- }
10264
- body.theme-dark .d\:fc-green-legacy-300,
10265
- .theme-dark__forced .d\:fc-green-legacy-300,
10266
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-300 {
10267
- color: var(--green-legacy-300) !important;
10268
- }
10269
- .bg-green-legacy-300,
10270
- .h\:bg-green-legacy-300:hover,
10271
- .f\:bg-green-legacy-300:focus,
10272
- .f\:bg-green-legacy-300:focus-within {
10273
- background-color: var(--green-legacy-300) !important;
10274
- }
10275
- @media (prefers-color-scheme: dark) {
10276
- body.theme-system .d\:bg-green-legacy-300 {
10277
- background-color: var(--green-legacy-300) !important;
10278
- }
10279
- }
10280
- body.theme-dark .d\:bg-green-legacy-300,
10281
- .theme-dark__forced .d\:bg-green-legacy-300,
10282
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-300 {
10283
- background-color: var(--green-legacy-300) !important;
10284
- }
10285
- .fc-green-legacy-200,
10286
- .h\:fc-green-legacy-200:hover,
10287
- .f\:fc-green-legacy-200:focus,
10288
- .f\:fc-green-legacy-200:focus-within {
10289
- color: var(--green-legacy-200) !important;
10290
- }
10291
- @media (prefers-color-scheme: dark) {
10292
- body.theme-system .d\:fc-green-legacy-200 {
10293
- color: var(--green-legacy-200) !important;
10294
- }
10295
- }
10296
- body.theme-dark .d\:fc-green-legacy-200,
10297
- .theme-dark__forced .d\:fc-green-legacy-200,
10298
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-200 {
10299
- color: var(--green-legacy-200) !important;
10300
- }
10301
- .bg-green-legacy-200,
10302
- .h\:bg-green-legacy-200:hover,
10303
- .f\:bg-green-legacy-200:focus,
10304
- .f\:bg-green-legacy-200:focus-within {
10305
- background-color: var(--green-legacy-200) !important;
10306
- }
10307
- @media (prefers-color-scheme: dark) {
10308
- body.theme-system .d\:bg-green-legacy-200 {
10309
- background-color: var(--green-legacy-200) !important;
10310
- }
10311
- }
10312
- body.theme-dark .d\:bg-green-legacy-200,
10313
- .theme-dark__forced .d\:bg-green-legacy-200,
10314
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-200 {
10315
- background-color: var(--green-legacy-200) !important;
10316
- }
10317
- .fc-green-legacy-100,
10318
- .h\:fc-green-legacy-100:hover,
10319
- .f\:fc-green-legacy-100:focus,
10320
- .f\:fc-green-legacy-100:focus-within {
10321
- color: var(--green-legacy-100) !important;
10322
- }
10323
- @media (prefers-color-scheme: dark) {
10324
- body.theme-system .d\:fc-green-legacy-100 {
10325
- color: var(--green-legacy-100) !important;
10326
- }
10327
- }
10328
- body.theme-dark .d\:fc-green-legacy-100,
10329
- .theme-dark__forced .d\:fc-green-legacy-100,
10330
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-100 {
10331
- color: var(--green-legacy-100) !important;
10332
- }
10333
- .bg-green-legacy-100,
10334
- .h\:bg-green-legacy-100:hover,
10335
- .f\:bg-green-legacy-100:focus,
10336
- .f\:bg-green-legacy-100:focus-within {
10337
- background-color: var(--green-legacy-100) !important;
10338
- }
10339
- @media (prefers-color-scheme: dark) {
10340
- body.theme-system .d\:bg-green-legacy-100 {
10341
- background-color: var(--green-legacy-100) !important;
10342
- }
10343
- }
10344
- body.theme-dark .d\:bg-green-legacy-100,
10345
- .theme-dark__forced .d\:bg-green-legacy-100,
10346
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-100 {
10347
- background-color: var(--green-legacy-100) !important;
10348
- }
10349
- .fc-green-legacy-050,
10350
- .h\:fc-green-legacy-050:hover,
10351
- .f\:fc-green-legacy-050:focus,
10352
- .f\:fc-green-legacy-050:focus-within {
10353
- color: var(--green-legacy-050) !important;
10354
- }
10355
- @media (prefers-color-scheme: dark) {
10356
- body.theme-system .d\:fc-green-legacy-050 {
10357
- color: var(--green-legacy-050) !important;
10358
- }
10359
- }
10360
- body.theme-dark .d\:fc-green-legacy-050,
10361
- .theme-dark__forced .d\:fc-green-legacy-050,
10362
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-050 {
10363
- color: var(--green-legacy-050) !important;
10364
- }
10365
- .bg-green-legacy-050,
10366
- .h\:bg-green-legacy-050:hover,
10367
- .f\:bg-green-legacy-050:focus,
10368
- .f\:bg-green-legacy-050:focus-within {
10369
- background-color: var(--green-legacy-050) !important;
10370
- }
10371
- @media (prefers-color-scheme: dark) {
10372
- body.theme-system .d\:bg-green-legacy-050 {
10373
- background-color: var(--green-legacy-050) !important;
10374
- }
10375
- }
10376
- body.theme-dark .d\:bg-green-legacy-050,
10377
- .theme-dark__forced .d\:bg-green-legacy-050,
10378
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-050 {
10379
- background-color: var(--green-legacy-050) !important;
10380
- }
10381
- .fc-yellow-legacy-900,
10382
- .h\:fc-yellow-legacy-900:hover,
10383
- .f\:fc-yellow-legacy-900:focus,
10384
- .f\:fc-yellow-legacy-900:focus-within {
10385
- color: var(--yellow-legacy-900) !important;
10386
- }
10387
- @media (prefers-color-scheme: dark) {
10388
- body.theme-system .d\:fc-yellow-legacy-900 {
10389
- color: var(--yellow-legacy-900) !important;
10390
- }
10391
- }
10392
- body.theme-dark .d\:fc-yellow-legacy-900,
10393
- .theme-dark__forced .d\:fc-yellow-legacy-900,
10394
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-900 {
10395
- color: var(--yellow-legacy-900) !important;
10396
- }
10397
- .bg-yellow-legacy-900,
10398
- .h\:bg-yellow-legacy-900:hover,
10399
- .f\:bg-yellow-legacy-900:focus,
10400
- .f\:bg-yellow-legacy-900:focus-within {
10401
- background-color: var(--yellow-legacy-900) !important;
10402
- }
10403
- @media (prefers-color-scheme: dark) {
10404
- body.theme-system .d\:bg-yellow-legacy-900 {
10405
- background-color: var(--yellow-legacy-900) !important;
10406
- }
10407
- }
10408
- body.theme-dark .d\:bg-yellow-legacy-900,
10409
- .theme-dark__forced .d\:bg-yellow-legacy-900,
10410
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-900 {
10411
- background-color: var(--yellow-legacy-900) !important;
10412
- }
10413
- .fc-yellow-legacy-800,
10414
- .h\:fc-yellow-legacy-800:hover,
10415
- .f\:fc-yellow-legacy-800:focus,
10416
- .f\:fc-yellow-legacy-800:focus-within {
10417
- color: var(--yellow-legacy-800) !important;
10418
- }
10419
- @media (prefers-color-scheme: dark) {
10420
- body.theme-system .d\:fc-yellow-legacy-800 {
10421
- color: var(--yellow-legacy-800) !important;
10422
- }
10423
- }
10424
- body.theme-dark .d\:fc-yellow-legacy-800,
10425
- .theme-dark__forced .d\:fc-yellow-legacy-800,
10426
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-800 {
10427
- color: var(--yellow-legacy-800) !important;
10428
- }
10429
- .bg-yellow-legacy-800,
10430
- .h\:bg-yellow-legacy-800:hover,
10431
- .f\:bg-yellow-legacy-800:focus,
10432
- .f\:bg-yellow-legacy-800:focus-within {
10433
- background-color: var(--yellow-legacy-800) !important;
10434
- }
10435
- @media (prefers-color-scheme: dark) {
10436
- body.theme-system .d\:bg-yellow-legacy-800 {
10437
- background-color: var(--yellow-legacy-800) !important;
10438
- }
10439
- }
10440
- body.theme-dark .d\:bg-yellow-legacy-800,
10441
- .theme-dark__forced .d\:bg-yellow-legacy-800,
10442
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-800 {
10443
- background-color: var(--yellow-legacy-800) !important;
10444
- }
10445
- .fc-yellow-legacy-700,
10446
- .h\:fc-yellow-legacy-700:hover,
10447
- .f\:fc-yellow-legacy-700:focus,
10448
- .f\:fc-yellow-legacy-700:focus-within {
10449
- color: var(--yellow-legacy-700) !important;
10450
- }
10451
- @media (prefers-color-scheme: dark) {
10452
- body.theme-system .d\:fc-yellow-legacy-700 {
10453
- color: var(--yellow-legacy-700) !important;
10454
- }
10455
- }
10456
- body.theme-dark .d\:fc-yellow-legacy-700,
10457
- .theme-dark__forced .d\:fc-yellow-legacy-700,
10458
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-700 {
10459
- color: var(--yellow-legacy-700) !important;
10460
- }
10461
- .bg-yellow-legacy-700,
10462
- .h\:bg-yellow-legacy-700:hover,
10463
- .f\:bg-yellow-legacy-700:focus,
10464
- .f\:bg-yellow-legacy-700:focus-within {
10465
- background-color: var(--yellow-legacy-700) !important;
10466
- }
10467
- @media (prefers-color-scheme: dark) {
10468
- body.theme-system .d\:bg-yellow-legacy-700 {
10469
- background-color: var(--yellow-legacy-700) !important;
10470
- }
10471
- }
10472
- body.theme-dark .d\:bg-yellow-legacy-700,
10473
- .theme-dark__forced .d\:bg-yellow-legacy-700,
10474
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-700 {
10475
- background-color: var(--yellow-legacy-700) !important;
10476
- }
10477
- .fc-yellow-legacy-600,
10478
- .h\:fc-yellow-legacy-600:hover,
10479
- .f\:fc-yellow-legacy-600:focus,
10480
- .f\:fc-yellow-legacy-600:focus-within,
10481
- .fc-warning-legacy {
10482
- color: var(--yellow-legacy-600) !important;
10483
- }
10484
- @media (prefers-color-scheme: dark) {
10485
- body.theme-system .d\:fc-yellow-legacy-600 {
10486
- color: var(--yellow-legacy-600) !important;
10487
- }
10488
- }
10489
- body.theme-dark .d\:fc-yellow-legacy-600,
10490
- .theme-dark__forced .d\:fc-yellow-legacy-600,
10491
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-600 {
10492
- color: var(--yellow-legacy-600) !important;
10493
- }
10494
- .bg-yellow-legacy-600,
10495
- .h\:bg-yellow-legacy-600:hover,
10496
- .f\:bg-yellow-legacy-600:focus,
10497
- .f\:bg-yellow-legacy-600:focus-within,
10498
- .bg-warning-legacy {
10499
- background-color: var(--yellow-legacy-600) !important;
10500
- }
10501
- @media (prefers-color-scheme: dark) {
10502
- body.theme-system .d\:bg-yellow-legacy-600 {
10503
- background-color: var(--yellow-legacy-600) !important;
10504
- }
10505
- }
10506
- body.theme-dark .d\:bg-yellow-legacy-600,
10507
- .theme-dark__forced .d\:bg-yellow-legacy-600,
10508
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-600 {
10509
- background-color: var(--yellow-legacy-600) !important;
10510
- }
10511
- .fc-yellow-legacy-500,
10512
- .h\:fc-yellow-legacy-500:hover,
10513
- .f\:fc-yellow-legacy-500:focus,
10514
- .f\:fc-yellow-legacy-500:focus-within {
10515
- color: var(--yellow-legacy-500) !important;
10516
- }
10517
- @media (prefers-color-scheme: dark) {
10518
- body.theme-system .d\:fc-yellow-legacy-500 {
10519
- color: var(--yellow-legacy-500) !important;
10520
- }
10521
- }
10522
- body.theme-dark .d\:fc-yellow-legacy-500,
10523
- .theme-dark__forced .d\:fc-yellow-legacy-500,
10524
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-500 {
10525
- color: var(--yellow-legacy-500) !important;
10526
- }
10527
- .bg-yellow-legacy-500,
10528
- .h\:bg-yellow-legacy-500:hover,
10529
- .f\:bg-yellow-legacy-500:focus,
10530
- .f\:bg-yellow-legacy-500:focus-within {
10531
- background-color: var(--yellow-legacy-500) !important;
10532
- }
10533
- @media (prefers-color-scheme: dark) {
10534
- body.theme-system .d\:bg-yellow-legacy-500 {
10535
- background-color: var(--yellow-legacy-500) !important;
10536
- }
10537
- }
10538
- body.theme-dark .d\:bg-yellow-legacy-500,
10539
- .theme-dark__forced .d\:bg-yellow-legacy-500,
10540
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-500 {
10541
- background-color: var(--yellow-legacy-500) !important;
10542
- }
10543
- .fc-yellow-legacy-400,
10544
- .h\:fc-yellow-legacy-400:hover,
10545
- .f\:fc-yellow-legacy-400:focus,
10546
- .f\:fc-yellow-legacy-400:focus-within {
10547
- color: var(--yellow-legacy-400) !important;
10548
- }
10549
- @media (prefers-color-scheme: dark) {
10550
- body.theme-system .d\:fc-yellow-legacy-400 {
10551
- color: var(--yellow-legacy-400) !important;
10552
- }
10553
- }
10554
- body.theme-dark .d\:fc-yellow-legacy-400,
10555
- .theme-dark__forced .d\:fc-yellow-legacy-400,
10556
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-400 {
10557
- color: var(--yellow-legacy-400) !important;
10558
- }
10559
- .bg-yellow-legacy-400,
10560
- .h\:bg-yellow-legacy-400:hover,
10561
- .f\:bg-yellow-legacy-400:focus,
10562
- .f\:bg-yellow-legacy-400:focus-within {
10563
- background-color: var(--yellow-legacy-400) !important;
10564
- }
10565
- @media (prefers-color-scheme: dark) {
10566
- body.theme-system .d\:bg-yellow-legacy-400 {
10567
- background-color: var(--yellow-legacy-400) !important;
10568
- }
10569
- }
10570
- body.theme-dark .d\:bg-yellow-legacy-400,
10571
- .theme-dark__forced .d\:bg-yellow-legacy-400,
10572
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-400 {
10573
- background-color: var(--yellow-legacy-400) !important;
10574
- }
10575
- .fc-yellow-legacy-300,
10576
- .h\:fc-yellow-legacy-300:hover,
10577
- .f\:fc-yellow-legacy-300:focus,
10578
- .f\:fc-yellow-legacy-300:focus-within {
10579
- color: var(--yellow-legacy-300) !important;
10580
- }
10581
- @media (prefers-color-scheme: dark) {
10582
- body.theme-system .d\:fc-yellow-legacy-300 {
10583
- color: var(--yellow-legacy-300) !important;
10584
- }
10585
- }
10586
- body.theme-dark .d\:fc-yellow-legacy-300,
10587
- .theme-dark__forced .d\:fc-yellow-legacy-300,
10588
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-300 {
10589
- color: var(--yellow-legacy-300) !important;
10590
- }
10591
- .bg-yellow-legacy-300,
10592
- .h\:bg-yellow-legacy-300:hover,
10593
- .f\:bg-yellow-legacy-300:focus,
10594
- .f\:bg-yellow-legacy-300:focus-within {
10595
- background-color: var(--yellow-legacy-300) !important;
10596
- }
10597
- @media (prefers-color-scheme: dark) {
10598
- body.theme-system .d\:bg-yellow-legacy-300 {
10599
- background-color: var(--yellow-legacy-300) !important;
10600
- }
10601
- }
10602
- body.theme-dark .d\:bg-yellow-legacy-300,
10603
- .theme-dark__forced .d\:bg-yellow-legacy-300,
10604
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-300 {
10605
- background-color: var(--yellow-legacy-300) !important;
10606
- }
10607
- .fc-yellow-legacy-200,
10608
- .h\:fc-yellow-legacy-200:hover,
10609
- .f\:fc-yellow-legacy-200:focus,
10610
- .f\:fc-yellow-legacy-200:focus-within {
10611
- color: var(--yellow-legacy-200) !important;
10612
- }
10613
- @media (prefers-color-scheme: dark) {
10614
- body.theme-system .d\:fc-yellow-legacy-200 {
10615
- color: var(--yellow-legacy-200) !important;
10616
- }
10617
- }
10618
- body.theme-dark .d\:fc-yellow-legacy-200,
10619
- .theme-dark__forced .d\:fc-yellow-legacy-200,
10620
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-200 {
10621
- color: var(--yellow-legacy-200) !important;
10622
- }
10623
- .bg-yellow-legacy-200,
10624
- .h\:bg-yellow-legacy-200:hover,
10625
- .f\:bg-yellow-legacy-200:focus,
10626
- .f\:bg-yellow-legacy-200:focus-within {
10627
- background-color: var(--yellow-legacy-200) !important;
10628
- }
10629
- @media (prefers-color-scheme: dark) {
10630
- body.theme-system .d\:bg-yellow-legacy-200 {
10631
- background-color: var(--yellow-legacy-200) !important;
10632
- }
10633
- }
10634
- body.theme-dark .d\:bg-yellow-legacy-200,
10635
- .theme-dark__forced .d\:bg-yellow-legacy-200,
10636
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-200 {
10637
- background-color: var(--yellow-legacy-200) !important;
10638
- }
10639
- .fc-yellow-legacy-100,
10640
- .h\:fc-yellow-legacy-100:hover,
10641
- .f\:fc-yellow-legacy-100:focus,
10642
- .f\:fc-yellow-legacy-100:focus-within {
10643
- color: var(--yellow-legacy-100) !important;
10644
- }
10645
- @media (prefers-color-scheme: dark) {
10646
- body.theme-system .d\:fc-yellow-legacy-100 {
10647
- color: var(--yellow-legacy-100) !important;
10648
- }
10649
- }
10650
- body.theme-dark .d\:fc-yellow-legacy-100,
10651
- .theme-dark__forced .d\:fc-yellow-legacy-100,
10652
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-100 {
10653
- color: var(--yellow-legacy-100) !important;
10654
- }
10655
- .bg-yellow-legacy-100,
10656
- .h\:bg-yellow-legacy-100:hover,
10657
- .f\:bg-yellow-legacy-100:focus,
10658
- .f\:bg-yellow-legacy-100:focus-within {
10659
- background-color: var(--yellow-legacy-100) !important;
10660
- }
10661
- @media (prefers-color-scheme: dark) {
10662
- body.theme-system .d\:bg-yellow-legacy-100 {
10663
- background-color: var(--yellow-legacy-100) !important;
10664
- }
10665
- }
10666
- body.theme-dark .d\:bg-yellow-legacy-100,
10667
- .theme-dark__forced .d\:bg-yellow-legacy-100,
10668
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-100 {
10669
- background-color: var(--yellow-legacy-100) !important;
10670
- }
10671
- .fc-yellow-legacy-050,
10672
- .h\:fc-yellow-legacy-050:hover,
10673
- .f\:fc-yellow-legacy-050:focus,
10674
- .f\:fc-yellow-legacy-050:focus-within {
10675
- color: var(--yellow-legacy-050) !important;
10676
- }
10677
- @media (prefers-color-scheme: dark) {
10678
- body.theme-system .d\:fc-yellow-legacy-050 {
10679
- color: var(--yellow-legacy-050) !important;
10680
- }
10681
- }
10682
- body.theme-dark .d\:fc-yellow-legacy-050,
10683
- .theme-dark__forced .d\:fc-yellow-legacy-050,
10684
- body.theme-system .theme-dark__forced .d\:fc-yellow-legacy-050 {
10685
- color: var(--yellow-legacy-050) !important;
10686
- }
10687
- .bg-yellow-legacy-050,
10688
- .h\:bg-yellow-legacy-050:hover,
10689
- .f\:bg-yellow-legacy-050:focus,
10690
- .f\:bg-yellow-legacy-050:focus-within {
10691
- background-color: var(--yellow-legacy-050) !important;
10692
- }
10693
- @media (prefers-color-scheme: dark) {
10694
- body.theme-system .d\:bg-yellow-legacy-050 {
10695
- background-color: var(--yellow-legacy-050) !important;
10696
- }
10697
- }
10698
- body.theme-dark .d\:bg-yellow-legacy-050,
10699
- .theme-dark__forced .d\:bg-yellow-legacy-050,
10700
- body.theme-system .theme-dark__forced .d\:bg-yellow-legacy-050 {
10701
- background-color: var(--yellow-legacy-050) !important;
10702
- }
10703
- .fc-red-legacy-900,
10704
- .h\:fc-red-legacy-900:hover,
10705
- .f\:fc-red-legacy-900:focus,
10706
- .f\:fc-red-legacy-900:focus-within {
10707
- color: var(--red-legacy-900) !important;
10708
- }
10709
- @media (prefers-color-scheme: dark) {
10710
- body.theme-system .d\:fc-red-legacy-900 {
10711
- color: var(--red-legacy-900) !important;
10712
- }
10713
- }
10714
- body.theme-dark .d\:fc-red-legacy-900,
10715
- .theme-dark__forced .d\:fc-red-legacy-900,
10716
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-900 {
10717
- color: var(--red-legacy-900) !important;
10718
- }
10719
- .bg-red-legacy-900,
10720
- .h\:bg-red-legacy-900:hover,
10721
- .f\:bg-red-legacy-900:focus,
10722
- .f\:bg-red-legacy-900:focus-within {
10723
- background-color: var(--red-legacy-900) !important;
10724
- }
10725
- @media (prefers-color-scheme: dark) {
10726
- body.theme-system .d\:bg-red-legacy-900 {
10727
- background-color: var(--red-legacy-900) !important;
10728
- }
10729
- }
10730
- body.theme-dark .d\:bg-red-legacy-900,
10731
- .theme-dark__forced .d\:bg-red-legacy-900,
10732
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-900 {
10733
- background-color: var(--red-legacy-900) !important;
10734
- }
10735
- .fc-red-legacy-800,
10736
- .h\:fc-red-legacy-800:hover,
10737
- .f\:fc-red-legacy-800:focus,
10738
- .f\:fc-red-legacy-800:focus-within {
10739
- color: var(--red-legacy-800) !important;
10740
- }
10741
- @media (prefers-color-scheme: dark) {
10742
- body.theme-system .d\:fc-red-legacy-800 {
10743
- color: var(--red-legacy-800) !important;
10744
- }
10745
- }
10746
- body.theme-dark .d\:fc-red-legacy-800,
10747
- .theme-dark__forced .d\:fc-red-legacy-800,
10748
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-800 {
10749
- color: var(--red-legacy-800) !important;
10750
- }
10751
- .bg-red-legacy-800,
10752
- .h\:bg-red-legacy-800:hover,
10753
- .f\:bg-red-legacy-800:focus,
10754
- .f\:bg-red-legacy-800:focus-within {
10755
- background-color: var(--red-legacy-800) !important;
10756
- }
10757
- @media (prefers-color-scheme: dark) {
10758
- body.theme-system .d\:bg-red-legacy-800 {
10759
- background-color: var(--red-legacy-800) !important;
10760
- }
10761
- }
10762
- body.theme-dark .d\:bg-red-legacy-800,
10763
- .theme-dark__forced .d\:bg-red-legacy-800,
10764
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-800 {
10765
- background-color: var(--red-legacy-800) !important;
10766
- }
10767
- .fc-red-legacy-700,
10768
- .h\:fc-red-legacy-700:hover,
10769
- .f\:fc-red-legacy-700:focus,
10770
- .f\:fc-red-legacy-700:focus-within {
10771
- color: var(--red-legacy-700) !important;
10772
- }
10773
- @media (prefers-color-scheme: dark) {
10774
- body.theme-system .d\:fc-red-legacy-700 {
10775
- color: var(--red-legacy-700) !important;
10776
- }
10777
- }
10778
- body.theme-dark .d\:fc-red-legacy-700,
10779
- .theme-dark__forced .d\:fc-red-legacy-700,
10780
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-700 {
10781
- color: var(--red-legacy-700) !important;
10782
- }
10783
- .bg-red-legacy-700,
10784
- .h\:bg-red-legacy-700:hover,
10785
- .f\:bg-red-legacy-700:focus,
10786
- .f\:bg-red-legacy-700:focus-within {
10787
- background-color: var(--red-legacy-700) !important;
10788
- }
10789
- @media (prefers-color-scheme: dark) {
10790
- body.theme-system .d\:bg-red-legacy-700 {
10791
- background-color: var(--red-legacy-700) !important;
10792
- }
10793
- }
10794
- body.theme-dark .d\:bg-red-legacy-700,
10795
- .theme-dark__forced .d\:bg-red-legacy-700,
10796
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-700 {
10797
- background-color: var(--red-legacy-700) !important;
10798
- }
10799
- .fc-red-legacy-600,
10800
- .h\:fc-red-legacy-600:hover,
10801
- .f\:fc-red-legacy-600:focus,
10802
- .f\:fc-red-legacy-600:focus-within {
10803
- color: var(--red-legacy-600) !important;
10804
- }
10805
- @media (prefers-color-scheme: dark) {
10806
- body.theme-system .d\:fc-red-legacy-600 {
10807
- color: var(--red-legacy-600) !important;
10808
- }
10809
- }
10810
- body.theme-dark .d\:fc-red-legacy-600,
10811
- .theme-dark__forced .d\:fc-red-legacy-600,
10812
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-600 {
10813
- color: var(--red-legacy-600) !important;
10814
- }
10815
- .bg-red-legacy-600,
10816
- .h\:bg-red-legacy-600:hover,
10817
- .f\:bg-red-legacy-600:focus,
10818
- .f\:bg-red-legacy-600:focus-within {
10819
- background-color: var(--red-legacy-600) !important;
10820
- }
10821
- @media (prefers-color-scheme: dark) {
10822
- body.theme-system .d\:bg-red-legacy-600 {
10823
- background-color: var(--red-legacy-600) !important;
10824
- }
10825
- }
10826
- body.theme-dark .d\:bg-red-legacy-600,
10827
- .theme-dark__forced .d\:bg-red-legacy-600,
10828
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-600 {
10829
- background-color: var(--red-legacy-600) !important;
10830
- }
10831
- .fc-red-legacy-500,
10832
- .h\:fc-red-legacy-500:hover,
10833
- .f\:fc-red-legacy-500:focus,
10834
- .f\:fc-red-legacy-500:focus-within,
10835
- .fc-error-legacy,
10836
- .fc-danger-legacy {
10837
- color: var(--red-legacy-500) !important;
10838
- }
10839
- @media (prefers-color-scheme: dark) {
10840
- body.theme-system .d\:fc-red-legacy-500 {
10841
- color: var(--red-legacy-500) !important;
10842
- }
10843
- }
10844
- body.theme-dark .d\:fc-red-legacy-500,
10845
- .theme-dark__forced .d\:fc-red-legacy-500,
10846
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-500 {
10847
- color: var(--red-legacy-500) !important;
10848
- }
10849
- .bg-red-legacy-500,
10850
- .h\:bg-red-legacy-500:hover,
10851
- .f\:bg-red-legacy-500:focus,
10852
- .f\:bg-red-legacy-500:focus-within,
10853
- .bg-error-legacy,
10854
- .bg-danger-legacy {
10855
- background-color: var(--red-legacy-500) !important;
10856
- }
10857
- @media (prefers-color-scheme: dark) {
10858
- body.theme-system .d\:bg-red-legacy-500 {
10859
- background-color: var(--red-legacy-500) !important;
10860
- }
10861
- }
10862
- body.theme-dark .d\:bg-red-legacy-500,
10863
- .theme-dark__forced .d\:bg-red-legacy-500,
10864
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-500 {
10865
- background-color: var(--red-legacy-500) !important;
10866
- }
10867
- .fc-red-legacy-400,
10868
- .h\:fc-red-legacy-400:hover,
10869
- .f\:fc-red-legacy-400:focus,
10870
- .f\:fc-red-legacy-400:focus-within {
10871
- color: var(--red-legacy-400) !important;
10872
- }
10873
- @media (prefers-color-scheme: dark) {
10874
- body.theme-system .d\:fc-red-legacy-400 {
10875
- color: var(--red-legacy-400) !important;
10876
- }
10877
- }
10878
- body.theme-dark .d\:fc-red-legacy-400,
10879
- .theme-dark__forced .d\:fc-red-legacy-400,
10880
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-400 {
10881
- color: var(--red-legacy-400) !important;
10882
- }
10883
- .bg-red-legacy-400,
10884
- .h\:bg-red-legacy-400:hover,
10885
- .f\:bg-red-legacy-400:focus,
10886
- .f\:bg-red-legacy-400:focus-within {
10887
- background-color: var(--red-legacy-400) !important;
10888
- }
10889
- @media (prefers-color-scheme: dark) {
10890
- body.theme-system .d\:bg-red-legacy-400 {
10891
- background-color: var(--red-legacy-400) !important;
10892
- }
10893
- }
10894
- body.theme-dark .d\:bg-red-legacy-400,
10895
- .theme-dark__forced .d\:bg-red-legacy-400,
10896
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-400 {
10897
- background-color: var(--red-legacy-400) !important;
10898
- }
10899
- .fc-red-legacy-300,
10900
- .h\:fc-red-legacy-300:hover,
10901
- .f\:fc-red-legacy-300:focus,
10902
- .f\:fc-red-legacy-300:focus-within {
10903
- color: var(--red-legacy-300) !important;
10904
- }
10905
- @media (prefers-color-scheme: dark) {
10906
- body.theme-system .d\:fc-red-legacy-300 {
10907
- color: var(--red-legacy-300) !important;
10908
- }
10909
- }
10910
- body.theme-dark .d\:fc-red-legacy-300,
10911
- .theme-dark__forced .d\:fc-red-legacy-300,
10912
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-300 {
10913
- color: var(--red-legacy-300) !important;
10914
- }
10915
- .bg-red-legacy-300,
10916
- .h\:bg-red-legacy-300:hover,
10917
- .f\:bg-red-legacy-300:focus,
10918
- .f\:bg-red-legacy-300:focus-within {
10919
- background-color: var(--red-legacy-300) !important;
10920
- }
10921
- @media (prefers-color-scheme: dark) {
10922
- body.theme-system .d\:bg-red-legacy-300 {
10923
- background-color: var(--red-legacy-300) !important;
10924
- }
10925
- }
10926
- body.theme-dark .d\:bg-red-legacy-300,
10927
- .theme-dark__forced .d\:bg-red-legacy-300,
10928
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-300 {
10929
- background-color: var(--red-legacy-300) !important;
10930
- }
10931
- .fc-red-legacy-200,
10932
- .h\:fc-red-legacy-200:hover,
10933
- .f\:fc-red-legacy-200:focus,
10934
- .f\:fc-red-legacy-200:focus-within {
10935
- color: var(--red-legacy-200) !important;
10936
- }
10937
- @media (prefers-color-scheme: dark) {
10938
- body.theme-system .d\:fc-red-legacy-200 {
10939
- color: var(--red-legacy-200) !important;
10940
- }
10941
- }
10942
- body.theme-dark .d\:fc-red-legacy-200,
10943
- .theme-dark__forced .d\:fc-red-legacy-200,
10944
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-200 {
10945
- color: var(--red-legacy-200) !important;
10946
- }
10947
- .bg-red-legacy-200,
10948
- .h\:bg-red-legacy-200:hover,
10949
- .f\:bg-red-legacy-200:focus,
10950
- .f\:bg-red-legacy-200:focus-within {
10951
- background-color: var(--red-legacy-200) !important;
10952
- }
10953
- @media (prefers-color-scheme: dark) {
10954
- body.theme-system .d\:bg-red-legacy-200 {
10955
- background-color: var(--red-legacy-200) !important;
10956
- }
10957
- }
10958
- body.theme-dark .d\:bg-red-legacy-200,
10959
- .theme-dark__forced .d\:bg-red-legacy-200,
10960
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-200 {
10961
- background-color: var(--red-legacy-200) !important;
10962
- }
10963
- .fc-red-legacy-100,
10964
- .h\:fc-red-legacy-100:hover,
10965
- .f\:fc-red-legacy-100:focus,
10966
- .f\:fc-red-legacy-100:focus-within {
10967
- color: var(--red-legacy-100) !important;
10968
- }
10969
- @media (prefers-color-scheme: dark) {
10970
- body.theme-system .d\:fc-red-legacy-100 {
10971
- color: var(--red-legacy-100) !important;
10972
- }
10973
- }
10974
- body.theme-dark .d\:fc-red-legacy-100,
10975
- .theme-dark__forced .d\:fc-red-legacy-100,
10976
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-100 {
10977
- color: var(--red-legacy-100) !important;
10978
- }
10979
- .bg-red-legacy-100,
10980
- .h\:bg-red-legacy-100:hover,
10981
- .f\:bg-red-legacy-100:focus,
10982
- .f\:bg-red-legacy-100:focus-within {
10983
- background-color: var(--red-legacy-100) !important;
10984
- }
10985
- @media (prefers-color-scheme: dark) {
10986
- body.theme-system .d\:bg-red-legacy-100 {
10987
- background-color: var(--red-legacy-100) !important;
10988
- }
10989
- }
10990
- body.theme-dark .d\:bg-red-legacy-100,
10991
- .theme-dark__forced .d\:bg-red-legacy-100,
10992
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-100 {
10993
- background-color: var(--red-legacy-100) !important;
10994
- }
10995
- .fc-red-legacy-050,
10996
- .h\:fc-red-legacy-050:hover,
10997
- .f\:fc-red-legacy-050:focus,
10998
- .f\:fc-red-legacy-050:focus-within {
10999
- color: var(--red-legacy-050) !important;
11000
- }
11001
- @media (prefers-color-scheme: dark) {
11002
- body.theme-system .d\:fc-red-legacy-050 {
11003
- color: var(--red-legacy-050) !important;
11004
- }
11005
- }
11006
- body.theme-dark .d\:fc-red-legacy-050,
11007
- .theme-dark__forced .d\:fc-red-legacy-050,
11008
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-050 {
11009
- color: var(--red-legacy-050) !important;
11010
- }
11011
- .bg-red-legacy-050,
11012
- .h\:bg-red-legacy-050:hover,
11013
- .f\:bg-red-legacy-050:focus,
11014
- .f\:bg-red-legacy-050:focus-within {
11015
- background-color: var(--red-legacy-050) !important;
11016
- }
11017
- @media (prefers-color-scheme: dark) {
11018
- body.theme-system .d\:bg-red-legacy-050 {
11019
- background-color: var(--red-legacy-050) !important;
11020
- }
11021
- }
11022
- body.theme-dark .d\:bg-red-legacy-050,
11023
- .theme-dark__forced .d\:bg-red-legacy-050,
11024
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-050 {
11025
- background-color: var(--red-legacy-050) !important;
11026
- }
11027
- .fc-theme-primary-legacy-900,
11028
- .h\:fc-theme-primary-legacy-900:hover,
11029
- .f\:fc-theme-primary-legacy-900:focus,
11030
- .f\:fc-theme-primary-legacy-900:focus-within {
11031
- color: var(--theme-primary-legacy-900) !important;
11032
- }
11033
- @media (prefers-color-scheme: dark) {
11034
- body.theme-system .d\:fc-theme-primary-legacy-900 {
11035
- color: var(--theme-primary-legacy-900) !important;
11036
- }
11037
- }
11038
- body.theme-dark .d\:fc-theme-primary-legacy-900,
11039
- .theme-dark__forced .d\:fc-theme-primary-legacy-900,
11040
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-900 {
11041
- color: var(--theme-primary-legacy-900) !important;
11042
- }
11043
- .bg-theme-primary-legacy-900,
11044
- .h\:bg-theme-primary-legacy-900:hover,
11045
- .f\:bg-theme-primary-legacy-900:focus,
11046
- .f\:bg-theme-primary-legacy-900:focus-within {
11047
- background-color: var(--theme-primary-legacy-900) !important;
11048
- }
11049
- @media (prefers-color-scheme: dark) {
11050
- body.theme-system .d\:bg-theme-primary-legacy-900 {
11051
- background-color: var(--theme-primary-legacy-900) !important;
11052
- }
11053
- }
11054
- body.theme-dark .d\:bg-theme-primary-legacy-900,
11055
- .theme-dark__forced .d\:bg-theme-primary-legacy-900,
11056
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-900 {
11057
- background-color: var(--theme-primary-legacy-900) !important;
11058
- }
11059
- .fc-theme-primary-legacy-800,
11060
- .h\:fc-theme-primary-legacy-800:hover,
11061
- .f\:fc-theme-primary-legacy-800:focus,
11062
- .f\:fc-theme-primary-legacy-800:focus-within {
11063
- color: var(--theme-primary-legacy-800) !important;
11064
- }
11065
- @media (prefers-color-scheme: dark) {
11066
- body.theme-system .d\:fc-theme-primary-legacy-800 {
11067
- color: var(--theme-primary-legacy-800) !important;
11068
- }
11069
- }
11070
- body.theme-dark .d\:fc-theme-primary-legacy-800,
11071
- .theme-dark__forced .d\:fc-theme-primary-legacy-800,
11072
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-800 {
11073
- color: var(--theme-primary-legacy-800) !important;
11074
- }
11075
- .bg-theme-primary-legacy-800,
11076
- .h\:bg-theme-primary-legacy-800:hover,
11077
- .f\:bg-theme-primary-legacy-800:focus,
11078
- .f\:bg-theme-primary-legacy-800:focus-within {
11079
- background-color: var(--theme-primary-legacy-800) !important;
11080
- }
11081
- @media (prefers-color-scheme: dark) {
11082
- body.theme-system .d\:bg-theme-primary-legacy-800 {
11083
- background-color: var(--theme-primary-legacy-800) !important;
11084
- }
11085
- }
11086
- body.theme-dark .d\:bg-theme-primary-legacy-800,
11087
- .theme-dark__forced .d\:bg-theme-primary-legacy-800,
11088
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-800 {
11089
- background-color: var(--theme-primary-legacy-800) !important;
11090
- }
11091
- .fc-theme-primary-legacy-700,
11092
- .h\:fc-theme-primary-legacy-700:hover,
11093
- .f\:fc-theme-primary-legacy-700:focus,
11094
- .f\:fc-theme-primary-legacy-700:focus-within {
11095
- color: var(--theme-primary-legacy-700) !important;
11096
- }
11097
- @media (prefers-color-scheme: dark) {
11098
- body.theme-system .d\:fc-theme-primary-legacy-700 {
11099
- color: var(--theme-primary-legacy-700) !important;
11100
- }
11101
- }
11102
- body.theme-dark .d\:fc-theme-primary-legacy-700,
11103
- .theme-dark__forced .d\:fc-theme-primary-legacy-700,
11104
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-700 {
11105
- color: var(--theme-primary-legacy-700) !important;
11106
- }
11107
- .bg-theme-primary-legacy-700,
11108
- .h\:bg-theme-primary-legacy-700:hover,
11109
- .f\:bg-theme-primary-legacy-700:focus,
11110
- .f\:bg-theme-primary-legacy-700:focus-within {
11111
- background-color: var(--theme-primary-legacy-700) !important;
11112
- }
11113
- @media (prefers-color-scheme: dark) {
11114
- body.theme-system .d\:bg-theme-primary-legacy-700 {
11115
- background-color: var(--theme-primary-legacy-700) !important;
11116
- }
11117
- }
11118
- body.theme-dark .d\:bg-theme-primary-legacy-700,
11119
- .theme-dark__forced .d\:bg-theme-primary-legacy-700,
11120
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-700 {
11121
- background-color: var(--theme-primary-legacy-700) !important;
11122
- }
11123
- .fc-theme-primary-legacy-600,
11124
- .h\:fc-theme-primary-legacy-600:hover,
11125
- .f\:fc-theme-primary-legacy-600:focus,
11126
- .f\:fc-theme-primary-legacy-600:focus-within {
11127
- color: var(--theme-primary-legacy-600) !important;
11128
- }
11129
- @media (prefers-color-scheme: dark) {
11130
- body.theme-system .d\:fc-theme-primary-legacy-600 {
11131
- color: var(--theme-primary-legacy-600) !important;
11132
- }
11133
- }
11134
- body.theme-dark .d\:fc-theme-primary-legacy-600,
11135
- .theme-dark__forced .d\:fc-theme-primary-legacy-600,
11136
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-600 {
11137
- color: var(--theme-primary-legacy-600) !important;
11138
- }
11139
- .bg-theme-primary-legacy-600,
11140
- .h\:bg-theme-primary-legacy-600:hover,
11141
- .f\:bg-theme-primary-legacy-600:focus,
11142
- .f\:bg-theme-primary-legacy-600:focus-within {
11143
- background-color: var(--theme-primary-legacy-600) !important;
11144
- }
11145
- @media (prefers-color-scheme: dark) {
11146
- body.theme-system .d\:bg-theme-primary-legacy-600 {
11147
- background-color: var(--theme-primary-legacy-600) !important;
11148
- }
11149
- }
11150
- body.theme-dark .d\:bg-theme-primary-legacy-600,
11151
- .theme-dark__forced .d\:bg-theme-primary-legacy-600,
11152
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-600 {
11153
- background-color: var(--theme-primary-legacy-600) !important;
11154
- }
11155
- .fc-theme-primary-legacy-500,
11156
- .h\:fc-theme-primary-legacy-500:hover,
11157
- .f\:fc-theme-primary-legacy-500:focus,
11158
- .f\:fc-theme-primary-legacy-500:focus-within {
11159
- color: var(--theme-primary-legacy-500) !important;
11160
- }
11161
- @media (prefers-color-scheme: dark) {
11162
- body.theme-system .d\:fc-theme-primary-legacy-500 {
11163
- color: var(--theme-primary-legacy-500) !important;
11164
- }
11165
- }
11166
- body.theme-dark .d\:fc-theme-primary-legacy-500,
11167
- .theme-dark__forced .d\:fc-theme-primary-legacy-500,
11168
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-500 {
11169
- color: var(--theme-primary-legacy-500) !important;
11170
- }
11171
- .bg-theme-primary-legacy-500,
11172
- .h\:bg-theme-primary-legacy-500:hover,
11173
- .f\:bg-theme-primary-legacy-500:focus,
11174
- .f\:bg-theme-primary-legacy-500:focus-within {
11175
- background-color: var(--theme-primary-legacy-500) !important;
11176
- }
11177
- @media (prefers-color-scheme: dark) {
11178
- body.theme-system .d\:bg-theme-primary-legacy-500 {
11179
- background-color: var(--theme-primary-legacy-500) !important;
11180
- }
11181
- }
11182
- body.theme-dark .d\:bg-theme-primary-legacy-500,
11183
- .theme-dark__forced .d\:bg-theme-primary-legacy-500,
11184
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-500 {
11185
- background-color: var(--theme-primary-legacy-500) !important;
11186
- }
11187
- .fc-theme-primary-legacy-400,
11188
- .h\:fc-theme-primary-legacy-400:hover,
11189
- .f\:fc-theme-primary-legacy-400:focus,
11190
- .f\:fc-theme-primary-legacy-400:focus-within {
11191
- color: var(--theme-primary-legacy-400) !important;
11192
- }
11193
- @media (prefers-color-scheme: dark) {
11194
- body.theme-system .d\:fc-theme-primary-legacy-400 {
11195
- color: var(--theme-primary-legacy-400) !important;
11196
- }
11197
- }
11198
- body.theme-dark .d\:fc-theme-primary-legacy-400,
11199
- .theme-dark__forced .d\:fc-theme-primary-legacy-400,
11200
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-400 {
11201
- color: var(--theme-primary-legacy-400) !important;
11202
- }
11203
- .bg-theme-primary-legacy-400,
11204
- .h\:bg-theme-primary-legacy-400:hover,
11205
- .f\:bg-theme-primary-legacy-400:focus,
11206
- .f\:bg-theme-primary-legacy-400:focus-within {
11207
- background-color: var(--theme-primary-legacy-400) !important;
11208
- }
11209
- @media (prefers-color-scheme: dark) {
11210
- body.theme-system .d\:bg-theme-primary-legacy-400 {
11211
- background-color: var(--theme-primary-legacy-400) !important;
11212
- }
11213
- }
11214
- body.theme-dark .d\:bg-theme-primary-legacy-400,
11215
- .theme-dark__forced .d\:bg-theme-primary-legacy-400,
11216
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-400 {
11217
- background-color: var(--theme-primary-legacy-400) !important;
11218
- }
11219
- .fc-theme-primary-legacy-300,
11220
- .h\:fc-theme-primary-legacy-300:hover,
11221
- .f\:fc-theme-primary-legacy-300:focus,
11222
- .f\:fc-theme-primary-legacy-300:focus-within {
11223
- color: var(--theme-primary-legacy-300) !important;
11224
- }
11225
- @media (prefers-color-scheme: dark) {
11226
- body.theme-system .d\:fc-theme-primary-legacy-300 {
11227
- color: var(--theme-primary-legacy-300) !important;
11228
- }
11229
- }
11230
- body.theme-dark .d\:fc-theme-primary-legacy-300,
11231
- .theme-dark__forced .d\:fc-theme-primary-legacy-300,
11232
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-300 {
11233
- color: var(--theme-primary-legacy-300) !important;
11234
- }
11235
- .bg-theme-primary-legacy-300,
11236
- .h\:bg-theme-primary-legacy-300:hover,
11237
- .f\:bg-theme-primary-legacy-300:focus,
11238
- .f\:bg-theme-primary-legacy-300:focus-within {
11239
- background-color: var(--theme-primary-legacy-300) !important;
11240
- }
11241
- @media (prefers-color-scheme: dark) {
11242
- body.theme-system .d\:bg-theme-primary-legacy-300 {
11243
- background-color: var(--theme-primary-legacy-300) !important;
11244
- }
11245
- }
11246
- body.theme-dark .d\:bg-theme-primary-legacy-300,
11247
- .theme-dark__forced .d\:bg-theme-primary-legacy-300,
11248
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-300 {
11249
- background-color: var(--theme-primary-legacy-300) !important;
11250
- }
11251
- .fc-theme-primary-legacy-200,
11252
- .h\:fc-theme-primary-legacy-200:hover,
11253
- .f\:fc-theme-primary-legacy-200:focus,
11254
- .f\:fc-theme-primary-legacy-200:focus-within {
11255
- color: var(--theme-primary-legacy-200) !important;
11256
- }
11257
- @media (prefers-color-scheme: dark) {
11258
- body.theme-system .d\:fc-theme-primary-legacy-200 {
11259
- color: var(--theme-primary-legacy-200) !important;
11260
- }
11261
- }
11262
- body.theme-dark .d\:fc-theme-primary-legacy-200,
11263
- .theme-dark__forced .d\:fc-theme-primary-legacy-200,
11264
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-200 {
11265
- color: var(--theme-primary-legacy-200) !important;
11266
- }
11267
- .bg-theme-primary-legacy-200,
11268
- .h\:bg-theme-primary-legacy-200:hover,
11269
- .f\:bg-theme-primary-legacy-200:focus,
11270
- .f\:bg-theme-primary-legacy-200:focus-within {
11271
- background-color: var(--theme-primary-legacy-200) !important;
11272
- }
11273
- @media (prefers-color-scheme: dark) {
11274
- body.theme-system .d\:bg-theme-primary-legacy-200 {
11275
- background-color: var(--theme-primary-legacy-200) !important;
11276
- }
11277
- }
11278
- body.theme-dark .d\:bg-theme-primary-legacy-200,
11279
- .theme-dark__forced .d\:bg-theme-primary-legacy-200,
11280
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-200 {
11281
- background-color: var(--theme-primary-legacy-200) !important;
11282
- }
11283
- .fc-theme-primary-legacy-100,
11284
- .h\:fc-theme-primary-legacy-100:hover,
11285
- .f\:fc-theme-primary-legacy-100:focus,
11286
- .f\:fc-theme-primary-legacy-100:focus-within {
11287
- color: var(--theme-primary-legacy-100) !important;
11288
- }
11289
- @media (prefers-color-scheme: dark) {
11290
- body.theme-system .d\:fc-theme-primary-legacy-100 {
11291
- color: var(--theme-primary-legacy-100) !important;
11292
- }
11293
- }
11294
- body.theme-dark .d\:fc-theme-primary-legacy-100,
11295
- .theme-dark__forced .d\:fc-theme-primary-legacy-100,
11296
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-100 {
11297
- color: var(--theme-primary-legacy-100) !important;
11298
- }
11299
- .bg-theme-primary-legacy-100,
11300
- .h\:bg-theme-primary-legacy-100:hover,
11301
- .f\:bg-theme-primary-legacy-100:focus,
11302
- .f\:bg-theme-primary-legacy-100:focus-within {
11303
- background-color: var(--theme-primary-legacy-100) !important;
11304
- }
11305
- @media (prefers-color-scheme: dark) {
11306
- body.theme-system .d\:bg-theme-primary-legacy-100 {
11307
- background-color: var(--theme-primary-legacy-100) !important;
11308
- }
11309
- }
11310
- body.theme-dark .d\:bg-theme-primary-legacy-100,
11311
- .theme-dark__forced .d\:bg-theme-primary-legacy-100,
11312
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-100 {
11313
- background-color: var(--theme-primary-legacy-100) !important;
11314
- }
11315
- .fc-theme-primary-legacy-050,
11316
- .h\:fc-theme-primary-legacy-050:hover,
11317
- .f\:fc-theme-primary-legacy-050:focus,
11318
- .f\:fc-theme-primary-legacy-050:focus-within {
11319
- color: var(--theme-primary-legacy-050) !important;
11320
- }
11321
- @media (prefers-color-scheme: dark) {
11322
- body.theme-system .d\:fc-theme-primary-legacy-050 {
11323
- color: var(--theme-primary-legacy-050) !important;
11324
- }
11325
- }
11326
- body.theme-dark .d\:fc-theme-primary-legacy-050,
11327
- .theme-dark__forced .d\:fc-theme-primary-legacy-050,
11328
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-050 {
11329
- color: var(--theme-primary-legacy-050) !important;
11330
- }
11331
- .bg-theme-primary-legacy-050,
11332
- .h\:bg-theme-primary-legacy-050:hover,
11333
- .f\:bg-theme-primary-legacy-050:focus,
11334
- .f\:bg-theme-primary-legacy-050:focus-within {
11335
- background-color: var(--theme-primary-legacy-050) !important;
11336
- }
11337
- @media (prefers-color-scheme: dark) {
11338
- body.theme-system .d\:bg-theme-primary-legacy-050 {
11339
- background-color: var(--theme-primary-legacy-050) !important;
11340
- }
11341
- }
11342
- body.theme-dark .d\:bg-theme-primary-legacy-050,
11343
- .theme-dark__forced .d\:bg-theme-primary-legacy-050,
11344
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-050 {
11345
- background-color: var(--theme-primary-legacy-050) !important;
11346
- }
11347
- .fc-theme-secondary-legacy-900,
11348
- .h\:fc-theme-secondary-legacy-900:hover,
11349
- .f\:fc-theme-secondary-legacy-900:focus,
11350
- .f\:fc-theme-secondary-legacy-900:focus-within {
11351
- color: var(--theme-secondary-legacy-900) !important;
11352
- }
11353
- @media (prefers-color-scheme: dark) {
11354
- body.theme-system .d\:fc-theme-secondary-legacy-900 {
11355
- color: var(--theme-secondary-legacy-900) !important;
11356
- }
11357
- }
11358
- body.theme-dark .d\:fc-theme-secondary-legacy-900,
11359
- .theme-dark__forced .d\:fc-theme-secondary-legacy-900,
11360
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-900 {
11361
- color: var(--theme-secondary-legacy-900) !important;
11362
- }
11363
- .bg-theme-secondary-legacy-900,
11364
- .h\:bg-theme-secondary-legacy-900:hover,
11365
- .f\:bg-theme-secondary-legacy-900:focus,
11366
- .f\:bg-theme-secondary-legacy-900:focus-within {
11367
- background-color: var(--theme-secondary-legacy-900) !important;
11368
- }
11369
- @media (prefers-color-scheme: dark) {
11370
- body.theme-system .d\:bg-theme-secondary-legacy-900 {
11371
- background-color: var(--theme-secondary-legacy-900) !important;
11372
- }
11373
- }
11374
- body.theme-dark .d\:bg-theme-secondary-legacy-900,
11375
- .theme-dark__forced .d\:bg-theme-secondary-legacy-900,
11376
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-900 {
11377
- background-color: var(--theme-secondary-legacy-900) !important;
11378
- }
11379
- .fc-theme-secondary-legacy-800,
11380
- .h\:fc-theme-secondary-legacy-800:hover,
11381
- .f\:fc-theme-secondary-legacy-800:focus,
11382
- .f\:fc-theme-secondary-legacy-800:focus-within {
11383
- color: var(--theme-secondary-legacy-800) !important;
11384
- }
11385
- @media (prefers-color-scheme: dark) {
11386
- body.theme-system .d\:fc-theme-secondary-legacy-800 {
11387
- color: var(--theme-secondary-legacy-800) !important;
11388
- }
11389
- }
11390
- body.theme-dark .d\:fc-theme-secondary-legacy-800,
11391
- .theme-dark__forced .d\:fc-theme-secondary-legacy-800,
11392
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-800 {
11393
- color: var(--theme-secondary-legacy-800) !important;
11394
- }
11395
- .bg-theme-secondary-legacy-800,
11396
- .h\:bg-theme-secondary-legacy-800:hover,
11397
- .f\:bg-theme-secondary-legacy-800:focus,
11398
- .f\:bg-theme-secondary-legacy-800:focus-within {
11399
- background-color: var(--theme-secondary-legacy-800) !important;
11400
- }
11401
- @media (prefers-color-scheme: dark) {
11402
- body.theme-system .d\:bg-theme-secondary-legacy-800 {
11403
- background-color: var(--theme-secondary-legacy-800) !important;
11404
- }
11405
- }
11406
- body.theme-dark .d\:bg-theme-secondary-legacy-800,
11407
- .theme-dark__forced .d\:bg-theme-secondary-legacy-800,
11408
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-800 {
11409
- background-color: var(--theme-secondary-legacy-800) !important;
11410
- }
11411
- .fc-theme-secondary-legacy-700,
11412
- .h\:fc-theme-secondary-legacy-700:hover,
11413
- .f\:fc-theme-secondary-legacy-700:focus,
11414
- .f\:fc-theme-secondary-legacy-700:focus-within {
11415
- color: var(--theme-secondary-legacy-700) !important;
11416
- }
11417
- @media (prefers-color-scheme: dark) {
11418
- body.theme-system .d\:fc-theme-secondary-legacy-700 {
11419
- color: var(--theme-secondary-legacy-700) !important;
11420
- }
11421
- }
11422
- body.theme-dark .d\:fc-theme-secondary-legacy-700,
11423
- .theme-dark__forced .d\:fc-theme-secondary-legacy-700,
11424
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-700 {
11425
- color: var(--theme-secondary-legacy-700) !important;
11426
- }
11427
- .bg-theme-secondary-legacy-700,
11428
- .h\:bg-theme-secondary-legacy-700:hover,
11429
- .f\:bg-theme-secondary-legacy-700:focus,
11430
- .f\:bg-theme-secondary-legacy-700:focus-within {
11431
- background-color: var(--theme-secondary-legacy-700) !important;
11432
- }
11433
- @media (prefers-color-scheme: dark) {
11434
- body.theme-system .d\:bg-theme-secondary-legacy-700 {
11435
- background-color: var(--theme-secondary-legacy-700) !important;
11436
- }
11437
- }
11438
- body.theme-dark .d\:bg-theme-secondary-legacy-700,
11439
- .theme-dark__forced .d\:bg-theme-secondary-legacy-700,
11440
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-700 {
11441
- background-color: var(--theme-secondary-legacy-700) !important;
11442
- }
11443
- .fc-theme-secondary-legacy-600,
11444
- .h\:fc-theme-secondary-legacy-600:hover,
11445
- .f\:fc-theme-secondary-legacy-600:focus,
11446
- .f\:fc-theme-secondary-legacy-600:focus-within {
11447
- color: var(--theme-secondary-legacy-600) !important;
11448
- }
11449
- @media (prefers-color-scheme: dark) {
11450
- body.theme-system .d\:fc-theme-secondary-legacy-600 {
11451
- color: var(--theme-secondary-legacy-600) !important;
11452
- }
11453
- }
11454
- body.theme-dark .d\:fc-theme-secondary-legacy-600,
11455
- .theme-dark__forced .d\:fc-theme-secondary-legacy-600,
11456
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-600 {
11457
- color: var(--theme-secondary-legacy-600) !important;
11458
- }
11459
- .bg-theme-secondary-legacy-600,
11460
- .h\:bg-theme-secondary-legacy-600:hover,
11461
- .f\:bg-theme-secondary-legacy-600:focus,
11462
- .f\:bg-theme-secondary-legacy-600:focus-within {
11463
- background-color: var(--theme-secondary-legacy-600) !important;
11464
- }
11465
- @media (prefers-color-scheme: dark) {
11466
- body.theme-system .d\:bg-theme-secondary-legacy-600 {
11467
- background-color: var(--theme-secondary-legacy-600) !important;
11468
- }
11469
- }
11470
- body.theme-dark .d\:bg-theme-secondary-legacy-600,
11471
- .theme-dark__forced .d\:bg-theme-secondary-legacy-600,
11472
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-600 {
11473
- background-color: var(--theme-secondary-legacy-600) !important;
11474
- }
11475
- .fc-theme-secondary-legacy-500,
11476
- .h\:fc-theme-secondary-legacy-500:hover,
11477
- .f\:fc-theme-secondary-legacy-500:focus,
11478
- .f\:fc-theme-secondary-legacy-500:focus-within {
11479
- color: var(--theme-secondary-legacy-500) !important;
11480
- }
11481
- @media (prefers-color-scheme: dark) {
11482
- body.theme-system .d\:fc-theme-secondary-legacy-500 {
11483
- color: var(--theme-secondary-legacy-500) !important;
11484
- }
11485
- }
11486
- body.theme-dark .d\:fc-theme-secondary-legacy-500,
11487
- .theme-dark__forced .d\:fc-theme-secondary-legacy-500,
11488
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-500 {
11489
- color: var(--theme-secondary-legacy-500) !important;
11490
- }
11491
- .bg-theme-secondary-legacy-500,
11492
- .h\:bg-theme-secondary-legacy-500:hover,
11493
- .f\:bg-theme-secondary-legacy-500:focus,
11494
- .f\:bg-theme-secondary-legacy-500:focus-within {
11495
- background-color: var(--theme-secondary-legacy-500) !important;
11496
- }
11497
- @media (prefers-color-scheme: dark) {
11498
- body.theme-system .d\:bg-theme-secondary-legacy-500 {
11499
- background-color: var(--theme-secondary-legacy-500) !important;
11500
- }
11501
- }
11502
- body.theme-dark .d\:bg-theme-secondary-legacy-500,
11503
- .theme-dark__forced .d\:bg-theme-secondary-legacy-500,
11504
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-500 {
11505
- background-color: var(--theme-secondary-legacy-500) !important;
11506
- }
11507
- .fc-theme-secondary-legacy-400,
11508
- .h\:fc-theme-secondary-legacy-400:hover,
11509
- .f\:fc-theme-secondary-legacy-400:focus,
11510
- .f\:fc-theme-secondary-legacy-400:focus-within {
11511
- color: var(--theme-secondary-legacy-400) !important;
11512
- }
11513
- @media (prefers-color-scheme: dark) {
11514
- body.theme-system .d\:fc-theme-secondary-legacy-400 {
11515
- color: var(--theme-secondary-legacy-400) !important;
11516
- }
11517
- }
11518
- body.theme-dark .d\:fc-theme-secondary-legacy-400,
11519
- .theme-dark__forced .d\:fc-theme-secondary-legacy-400,
11520
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-400 {
11521
- color: var(--theme-secondary-legacy-400) !important;
11522
- }
11523
- .bg-theme-secondary-legacy-400,
11524
- .h\:bg-theme-secondary-legacy-400:hover,
11525
- .f\:bg-theme-secondary-legacy-400:focus,
11526
- .f\:bg-theme-secondary-legacy-400:focus-within {
11527
- background-color: var(--theme-secondary-legacy-400) !important;
11528
- }
11529
- @media (prefers-color-scheme: dark) {
11530
- body.theme-system .d\:bg-theme-secondary-legacy-400 {
11531
- background-color: var(--theme-secondary-legacy-400) !important;
11532
- }
11533
- }
11534
- body.theme-dark .d\:bg-theme-secondary-legacy-400,
11535
- .theme-dark__forced .d\:bg-theme-secondary-legacy-400,
11536
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-400 {
11537
- background-color: var(--theme-secondary-legacy-400) !important;
11538
- }
11539
- .fc-theme-secondary-legacy-300,
11540
- .h\:fc-theme-secondary-legacy-300:hover,
11541
- .f\:fc-theme-secondary-legacy-300:focus,
11542
- .f\:fc-theme-secondary-legacy-300:focus-within {
11543
- color: var(--theme-secondary-legacy-300) !important;
11544
- }
11545
- @media (prefers-color-scheme: dark) {
11546
- body.theme-system .d\:fc-theme-secondary-legacy-300 {
11547
- color: var(--theme-secondary-legacy-300) !important;
11548
- }
11549
- }
11550
- body.theme-dark .d\:fc-theme-secondary-legacy-300,
11551
- .theme-dark__forced .d\:fc-theme-secondary-legacy-300,
11552
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-300 {
11553
- color: var(--theme-secondary-legacy-300) !important;
11554
- }
11555
- .bg-theme-secondary-legacy-300,
11556
- .h\:bg-theme-secondary-legacy-300:hover,
11557
- .f\:bg-theme-secondary-legacy-300:focus,
11558
- .f\:bg-theme-secondary-legacy-300:focus-within {
11559
- background-color: var(--theme-secondary-legacy-300) !important;
11560
- }
11561
- @media (prefers-color-scheme: dark) {
11562
- body.theme-system .d\:bg-theme-secondary-legacy-300 {
11563
- background-color: var(--theme-secondary-legacy-300) !important;
11564
- }
11565
- }
11566
- body.theme-dark .d\:bg-theme-secondary-legacy-300,
11567
- .theme-dark__forced .d\:bg-theme-secondary-legacy-300,
11568
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-300 {
11569
- background-color: var(--theme-secondary-legacy-300) !important;
11570
- }
11571
- .fc-theme-secondary-legacy-200,
11572
- .h\:fc-theme-secondary-legacy-200:hover,
11573
- .f\:fc-theme-secondary-legacy-200:focus,
11574
- .f\:fc-theme-secondary-legacy-200:focus-within {
11575
- color: var(--theme-secondary-legacy-200) !important;
11576
- }
11577
- @media (prefers-color-scheme: dark) {
11578
- body.theme-system .d\:fc-theme-secondary-legacy-200 {
11579
- color: var(--theme-secondary-legacy-200) !important;
11580
- }
11581
- }
11582
- body.theme-dark .d\:fc-theme-secondary-legacy-200,
11583
- .theme-dark__forced .d\:fc-theme-secondary-legacy-200,
11584
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-200 {
11585
- color: var(--theme-secondary-legacy-200) !important;
11586
- }
11587
- .bg-theme-secondary-legacy-200,
11588
- .h\:bg-theme-secondary-legacy-200:hover,
11589
- .f\:bg-theme-secondary-legacy-200:focus,
11590
- .f\:bg-theme-secondary-legacy-200:focus-within {
11591
- background-color: var(--theme-secondary-legacy-200) !important;
11592
- }
11593
- @media (prefers-color-scheme: dark) {
11594
- body.theme-system .d\:bg-theme-secondary-legacy-200 {
11595
- background-color: var(--theme-secondary-legacy-200) !important;
11596
- }
11597
- }
11598
- body.theme-dark .d\:bg-theme-secondary-legacy-200,
11599
- .theme-dark__forced .d\:bg-theme-secondary-legacy-200,
11600
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-200 {
11601
- background-color: var(--theme-secondary-legacy-200) !important;
11602
- }
11603
- .fc-theme-secondary-legacy-100,
11604
- .h\:fc-theme-secondary-legacy-100:hover,
11605
- .f\:fc-theme-secondary-legacy-100:focus,
11606
- .f\:fc-theme-secondary-legacy-100:focus-within {
11607
- color: var(--theme-secondary-legacy-100) !important;
11608
- }
11609
- @media (prefers-color-scheme: dark) {
11610
- body.theme-system .d\:fc-theme-secondary-legacy-100 {
11611
- color: var(--theme-secondary-legacy-100) !important;
11612
- }
11613
- }
11614
- body.theme-dark .d\:fc-theme-secondary-legacy-100,
11615
- .theme-dark__forced .d\:fc-theme-secondary-legacy-100,
11616
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-100 {
11617
- color: var(--theme-secondary-legacy-100) !important;
11618
- }
11619
- .bg-theme-secondary-legacy-100,
11620
- .h\:bg-theme-secondary-legacy-100:hover,
11621
- .f\:bg-theme-secondary-legacy-100:focus,
11622
- .f\:bg-theme-secondary-legacy-100:focus-within {
11623
- background-color: var(--theme-secondary-legacy-100) !important;
11624
- }
11625
- @media (prefers-color-scheme: dark) {
11626
- body.theme-system .d\:bg-theme-secondary-legacy-100 {
11627
- background-color: var(--theme-secondary-legacy-100) !important;
11628
- }
11629
- }
11630
- body.theme-dark .d\:bg-theme-secondary-legacy-100,
11631
- .theme-dark__forced .d\:bg-theme-secondary-legacy-100,
11632
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-100 {
11633
- background-color: var(--theme-secondary-legacy-100) !important;
11634
- }
11635
- .fc-theme-secondary-legacy-050,
11636
- .h\:fc-theme-secondary-legacy-050:hover,
11637
- .f\:fc-theme-secondary-legacy-050:focus,
11638
- .f\:fc-theme-secondary-legacy-050:focus-within {
11639
- color: var(--theme-secondary-legacy-050) !important;
11640
- }
11641
- @media (prefers-color-scheme: dark) {
11642
- body.theme-system .d\:fc-theme-secondary-legacy-050 {
11643
- color: var(--theme-secondary-legacy-050) !important;
11644
- }
11645
- }
11646
- body.theme-dark .d\:fc-theme-secondary-legacy-050,
11647
- .theme-dark__forced .d\:fc-theme-secondary-legacy-050,
11648
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-050 {
11649
- color: var(--theme-secondary-legacy-050) !important;
11650
- }
11651
- .bg-theme-secondary-legacy-050,
11652
- .h\:bg-theme-secondary-legacy-050:hover,
11653
- .f\:bg-theme-secondary-legacy-050:focus,
11654
- .f\:bg-theme-secondary-legacy-050:focus-within {
11655
- background-color: var(--theme-secondary-legacy-050) !important;
11656
- }
11657
- @media (prefers-color-scheme: dark) {
11658
- body.theme-system .d\:bg-theme-secondary-legacy-050 {
11659
- background-color: var(--theme-secondary-legacy-050) !important;
11660
- }
11661
- }
11662
- body.theme-dark .d\:bg-theme-secondary-legacy-050,
11663
- .theme-dark__forced .d\:bg-theme-secondary-legacy-050,
11664
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-050 {
11665
- background-color: var(--theme-secondary-legacy-050) !important;
11666
- }
11667
- .fc-white-legacy,
11668
- .h\:fc-white-legacy:hover,
11669
- .f\:fc-white-legacy:focus,
11670
- .f\:fc-white-legacy:focus-within {
11671
- color: var(--white-legacy) !important;
11672
- }
11673
- @media (prefers-color-scheme: dark) {
11674
- body.theme-system .d\:fc-white-legacy {
11675
- color: var(--white-legacy) !important;
11676
- }
11677
- }
11678
- body.theme-dark .d\:fc-white-legacy,
11679
- .theme-dark__forced .d\:fc-white-legacy,
11680
- body.theme-system .theme-dark__forced .d\:fc-white-legacy {
11681
- color: var(--white-legacy) !important;
11682
- }
11683
- .bg-white-legacy,
11684
- .h\:bg-white-legacy:hover,
11685
- .f\:bg-white-legacy:focus,
11686
- .f\:bg-white-legacy:focus-within {
11687
- background-color: var(--white-legacy) !important;
11688
- }
11689
- @media (prefers-color-scheme: dark) {
11690
- body.theme-system .d\:bg-white-legacy {
11691
- background-color: var(--white-legacy) !important;
11692
- }
11693
- }
11694
- body.theme-dark .d\:bg-white-legacy,
11695
- .theme-dark__forced .d\:bg-white-legacy,
11696
- body.theme-system .theme-dark__forced .d\:bg-white-legacy {
11697
- background-color: var(--white-legacy) !important;
11698
- }
11699
- .fc-black-legacy,
11700
- .h\:fc-black-legacy:hover,
11701
- .f\:fc-black-legacy:focus,
11702
- .f\:fc-black-legacy:focus-within {
11703
- color: var(--black-legacy) !important;
11704
- }
11705
- @media (prefers-color-scheme: dark) {
11706
- body.theme-system .d\:fc-black-legacy {
11707
- color: var(--black-legacy) !important;
11708
- }
11709
- }
11710
- body.theme-dark .d\:fc-black-legacy,
11711
- .theme-dark__forced .d\:fc-black-legacy,
11712
- body.theme-system .theme-dark__forced .d\:fc-black-legacy {
11713
- color: var(--black-legacy) !important;
11714
- }
11715
- .bg-black-legacy,
11716
- .h\:bg-black-legacy:hover,
11717
- .f\:bg-black-legacy:focus,
11718
- .f\:bg-black-legacy:focus-within {
11719
- background-color: var(--black-legacy) !important;
11720
- }
11721
- @media (prefers-color-scheme: dark) {
11722
- body.theme-system .d\:bg-black-legacy {
11723
- background-color: var(--black-legacy) !important;
11724
- }
11725
- }
11726
- body.theme-dark .d\:bg-black-legacy,
11727
- .theme-dark__forced .d\:bg-black-legacy,
11728
- body.theme-system .theme-dark__forced .d\:bg-black-legacy {
11729
- background-color: var(--black-legacy) !important;
11730
- }
11731
- .fc-black-legacy-750,
11732
- .h\:fc-black-legacy-750:hover,
11733
- .f\:fc-black-legacy-750:focus,
11734
- .f\:fc-black-legacy-750:focus-within {
11735
- color: var(--black-legacy-750) !important;
11736
- }
11737
- @media (prefers-color-scheme: dark) {
11738
- body.theme-system .d\:fc-black-legacy-750 {
11739
- color: var(--black-legacy-750) !important;
11740
- }
11741
- }
11742
- body.theme-dark .d\:fc-black-legacy-750,
11743
- .theme-dark__forced .d\:fc-black-legacy-750,
11744
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-750 {
11745
- color: var(--black-legacy-750) !important;
11746
- }
11747
- .bg-black-legacy-750,
11748
- .h\:bg-black-legacy-750:hover,
11749
- .f\:bg-black-legacy-750:focus,
11750
- .f\:bg-black-legacy-750:focus-within {
11751
- background-color: var(--black-legacy-750) !important;
11752
- }
11753
- @media (prefers-color-scheme: dark) {
11754
- body.theme-system .d\:bg-black-legacy-750 {
11755
- background-color: var(--black-legacy-750) !important;
11756
- }
11757
- }
11758
- body.theme-dark .d\:bg-black-legacy-750,
11759
- .theme-dark__forced .d\:bg-black-legacy-750,
11760
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-750 {
11761
- background-color: var(--black-legacy-750) !important;
11762
- }
11763
- .fc-black-legacy-350,
11764
- .h\:fc-black-legacy-350:hover,
11765
- .f\:fc-black-legacy-350:focus,
11766
- .f\:fc-black-legacy-350:focus-within {
11767
- color: var(--black-legacy-350) !important;
11768
- }
11769
- @media (prefers-color-scheme: dark) {
11770
- body.theme-system .d\:fc-black-legacy-350 {
11771
- color: var(--black-legacy-350) !important;
11772
- }
11773
- }
11774
- body.theme-dark .d\:fc-black-legacy-350,
11775
- .theme-dark__forced .d\:fc-black-legacy-350,
11776
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-350 {
11777
- color: var(--black-legacy-350) !important;
11778
- }
11779
- .bg-black-legacy-350,
11780
- .h\:bg-black-legacy-350:hover,
11781
- .f\:bg-black-legacy-350:focus,
11782
- .f\:bg-black-legacy-350:focus-within {
11783
- background-color: var(--black-legacy-350) !important;
11784
- }
11785
- @media (prefers-color-scheme: dark) {
11786
- body.theme-system .d\:bg-black-legacy-350 {
11787
- background-color: var(--black-legacy-350) !important;
11788
- }
11789
- }
11790
- body.theme-dark .d\:bg-black-legacy-350,
11791
- .theme-dark__forced .d\:bg-black-legacy-350,
11792
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-350 {
11793
- background-color: var(--black-legacy-350) !important;
11794
- }
11795
- .fc-black-legacy-150,
11796
- .h\:fc-black-legacy-150:hover,
11797
- .f\:fc-black-legacy-150:focus,
11798
- .f\:fc-black-legacy-150:focus-within {
11799
- color: var(--black-legacy-150) !important;
11800
- }
11801
- @media (prefers-color-scheme: dark) {
11802
- body.theme-system .d\:fc-black-legacy-150 {
11803
- color: var(--black-legacy-150) !important;
11804
- }
11805
- }
11806
- body.theme-dark .d\:fc-black-legacy-150,
11807
- .theme-dark__forced .d\:fc-black-legacy-150,
11808
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-150 {
11809
- color: var(--black-legacy-150) !important;
11810
- }
11811
- .bg-black-legacy-150,
11812
- .h\:bg-black-legacy-150:hover,
11813
- .f\:bg-black-legacy-150:focus,
11814
- .f\:bg-black-legacy-150:focus-within {
11815
- background-color: var(--black-legacy-150) !important;
11816
- }
11817
- @media (prefers-color-scheme: dark) {
11818
- body.theme-system .d\:bg-black-legacy-150 {
11819
- background-color: var(--black-legacy-150) !important;
11820
- }
11821
- }
11822
- body.theme-dark .d\:bg-black-legacy-150,
11823
- .theme-dark__forced .d\:bg-black-legacy-150,
11824
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-150 {
11825
- background-color: var(--black-legacy-150) !important;
11826
- }
11827
- .fc-black-legacy-075,
11828
- .h\:fc-black-legacy-075:hover,
11829
- .f\:fc-black-legacy-075:focus,
11830
- .f\:fc-black-legacy-075:focus-within {
11831
- color: var(--black-legacy-075) !important;
11832
- }
11833
- @media (prefers-color-scheme: dark) {
11834
- body.theme-system .d\:fc-black-legacy-075 {
11835
- color: var(--black-legacy-075) !important;
11836
- }
11837
- }
11838
- body.theme-dark .d\:fc-black-legacy-075,
11839
- .theme-dark__forced .d\:fc-black-legacy-075,
11840
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-075 {
11841
- color: var(--black-legacy-075) !important;
11842
- }
11843
- .bg-black-legacy-075,
11844
- .h\:bg-black-legacy-075:hover,
11845
- .f\:bg-black-legacy-075:focus,
11846
- .f\:bg-black-legacy-075:focus-within {
11847
- background-color: var(--black-legacy-075) !important;
11848
- }
11849
- @media (prefers-color-scheme: dark) {
11850
- body.theme-system .d\:bg-black-legacy-075 {
11851
- background-color: var(--black-legacy-075) !important;
11852
- }
11853
- }
11854
- body.theme-dark .d\:bg-black-legacy-075,
11855
- .theme-dark__forced .d\:bg-black-legacy-075,
11856
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-075 {
11857
- background-color: var(--black-legacy-075) !important;
11858
- }
11859
- .fc-black-legacy-025,
11860
- .h\:fc-black-legacy-025:hover,
11861
- .f\:fc-black-legacy-025:focus,
11862
- .f\:fc-black-legacy-025:focus-within {
11863
- color: var(--black-legacy-025) !important;
11864
- }
11865
- @media (prefers-color-scheme: dark) {
11866
- body.theme-system .d\:fc-black-legacy-025 {
11867
- color: var(--black-legacy-025) !important;
11868
- }
11869
- }
11870
- body.theme-dark .d\:fc-black-legacy-025,
11871
- .theme-dark__forced .d\:fc-black-legacy-025,
11872
- body.theme-system .theme-dark__forced .d\:fc-black-legacy-025 {
11873
- color: var(--black-legacy-025) !important;
11874
- }
11875
- .bg-black-legacy-025,
11876
- .h\:bg-black-legacy-025:hover,
11877
- .f\:bg-black-legacy-025:focus,
11878
- .f\:bg-black-legacy-025:focus-within {
11879
- background-color: var(--black-legacy-025) !important;
11880
- }
11881
- @media (prefers-color-scheme: dark) {
11882
- body.theme-system .d\:bg-black-legacy-025 {
11883
- background-color: var(--black-legacy-025) !important;
11884
- }
11885
- }
11886
- body.theme-dark .d\:bg-black-legacy-025,
11887
- .theme-dark__forced .d\:bg-black-legacy-025,
11888
- body.theme-system .theme-dark__forced .d\:bg-black-legacy-025 {
11889
- background-color: var(--black-legacy-025) !important;
11890
- }
11891
- .fc-green-legacy-025,
11892
- .h\:fc-green-legacy-025:hover,
11893
- .f\:fc-green-legacy-025:focus,
11894
- .f\:fc-green-legacy-025:focus-within {
11895
- color: var(--green-legacy-025) !important;
11896
- }
11897
- @media (prefers-color-scheme: dark) {
11898
- body.theme-system .d\:fc-green-legacy-025 {
11899
- color: var(--green-legacy-025) !important;
11900
- }
11901
- }
11902
- body.theme-dark .d\:fc-green-legacy-025,
11903
- .theme-dark__forced .d\:fc-green-legacy-025,
11904
- body.theme-system .theme-dark__forced .d\:fc-green-legacy-025 {
11905
- color: var(--green-legacy-025) !important;
11906
- }
11907
- .bg-green-legacy-025,
11908
- .h\:bg-green-legacy-025:hover,
11909
- .f\:bg-green-legacy-025:focus,
11910
- .f\:bg-green-legacy-025:focus-within {
11911
- background-color: var(--green-legacy-025) !important;
11912
- }
11913
- @media (prefers-color-scheme: dark) {
11914
- body.theme-system .d\:bg-green-legacy-025 {
11915
- background-color: var(--green-legacy-025) !important;
11916
- }
11917
- }
11918
- body.theme-dark .d\:bg-green-legacy-025,
11919
- .theme-dark__forced .d\:bg-green-legacy-025,
11920
- body.theme-system .theme-dark__forced .d\:bg-green-legacy-025 {
11921
- background-color: var(--green-legacy-025) !important;
11922
- }
11923
- .fc-red-legacy-025,
11924
- .h\:fc-red-legacy-025:hover,
11925
- .f\:fc-red-legacy-025:focus,
11926
- .f\:fc-red-legacy-025:focus-within {
11927
- color: var(--red-legacy-025) !important;
11928
- }
11929
- @media (prefers-color-scheme: dark) {
11930
- body.theme-system .d\:fc-red-legacy-025 {
11931
- color: var(--red-legacy-025) !important;
11932
- }
11933
- }
11934
- body.theme-dark .d\:fc-red-legacy-025,
11935
- .theme-dark__forced .d\:fc-red-legacy-025,
11936
- body.theme-system .theme-dark__forced .d\:fc-red-legacy-025 {
11937
- color: var(--red-legacy-025) !important;
11938
- }
11939
- .bg-red-legacy-025,
11940
- .h\:bg-red-legacy-025:hover,
11941
- .f\:bg-red-legacy-025:focus,
11942
- .f\:bg-red-legacy-025:focus-within {
11943
- background-color: var(--red-legacy-025) !important;
11944
- }
11945
- @media (prefers-color-scheme: dark) {
11946
- body.theme-system .d\:bg-red-legacy-025 {
11947
- background-color: var(--red-legacy-025) !important;
11948
- }
11949
- }
11950
- body.theme-dark .d\:bg-red-legacy-025,
11951
- .theme-dark__forced .d\:bg-red-legacy-025,
11952
- body.theme-system .theme-dark__forced .d\:bg-red-legacy-025 {
11953
- background-color: var(--red-legacy-025) !important;
11954
- }
11955
- .fc-theme-primary-legacy-350,
11956
- .h\:fc-theme-primary-legacy-350:hover,
11957
- .f\:fc-theme-primary-legacy-350:focus,
11958
- .f\:fc-theme-primary-legacy-350:focus-within {
11959
- color: var(--theme-primary-legacy-350) !important;
11960
- }
11961
- @media (prefers-color-scheme: dark) {
11962
- body.theme-system .d\:fc-theme-primary-legacy-350 {
11963
- color: var(--theme-primary-legacy-350) !important;
11964
- }
11965
- }
11966
- body.theme-dark .d\:fc-theme-primary-legacy-350,
11967
- .theme-dark__forced .d\:fc-theme-primary-legacy-350,
11968
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-350 {
11969
- color: var(--theme-primary-legacy-350) !important;
11970
- }
11971
- .bg-theme-primary-legacy-350,
11972
- .h\:bg-theme-primary-legacy-350:hover,
11973
- .f\:bg-theme-primary-legacy-350:focus,
11974
- .f\:bg-theme-primary-legacy-350:focus-within {
11975
- background-color: var(--theme-primary-legacy-350) !important;
11976
- }
11977
- @media (prefers-color-scheme: dark) {
11978
- body.theme-system .d\:bg-theme-primary-legacy-350 {
11979
- background-color: var(--theme-primary-legacy-350) !important;
11980
- }
11981
- }
11982
- body.theme-dark .d\:bg-theme-primary-legacy-350,
11983
- .theme-dark__forced .d\:bg-theme-primary-legacy-350,
11984
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-350 {
11985
- background-color: var(--theme-primary-legacy-350) !important;
11986
- }
11987
- .fc-theme-primary-legacy-150,
11988
- .h\:fc-theme-primary-legacy-150:hover,
11989
- .f\:fc-theme-primary-legacy-150:focus,
11990
- .f\:fc-theme-primary-legacy-150:focus-within {
11991
- color: var(--theme-primary-legacy-150) !important;
11992
- }
11993
- @media (prefers-color-scheme: dark) {
11994
- body.theme-system .d\:fc-theme-primary-legacy-150 {
11995
- color: var(--theme-primary-legacy-150) !important;
11996
- }
11997
- }
11998
- body.theme-dark .d\:fc-theme-primary-legacy-150,
11999
- .theme-dark__forced .d\:fc-theme-primary-legacy-150,
12000
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-150 {
12001
- color: var(--theme-primary-legacy-150) !important;
12002
- }
12003
- .bg-theme-primary-legacy-150,
12004
- .h\:bg-theme-primary-legacy-150:hover,
12005
- .f\:bg-theme-primary-legacy-150:focus,
12006
- .f\:bg-theme-primary-legacy-150:focus-within {
12007
- background-color: var(--theme-primary-legacy-150) !important;
12008
- }
12009
- @media (prefers-color-scheme: dark) {
12010
- body.theme-system .d\:bg-theme-primary-legacy-150 {
12011
- background-color: var(--theme-primary-legacy-150) !important;
12012
- }
12013
- }
12014
- body.theme-dark .d\:bg-theme-primary-legacy-150,
12015
- .theme-dark__forced .d\:bg-theme-primary-legacy-150,
12016
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-150 {
12017
- background-color: var(--theme-primary-legacy-150) !important;
12018
- }
12019
- .fc-theme-primary-legacy-075,
12020
- .h\:fc-theme-primary-legacy-075:hover,
12021
- .f\:fc-theme-primary-legacy-075:focus,
12022
- .f\:fc-theme-primary-legacy-075:focus-within {
12023
- color: var(--theme-primary-legacy-075) !important;
12024
- }
12025
- @media (prefers-color-scheme: dark) {
12026
- body.theme-system .d\:fc-theme-primary-legacy-075 {
12027
- color: var(--theme-primary-legacy-075) !important;
12028
- }
12029
- }
12030
- body.theme-dark .d\:fc-theme-primary-legacy-075,
12031
- .theme-dark__forced .d\:fc-theme-primary-legacy-075,
12032
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-075 {
12033
- color: var(--theme-primary-legacy-075) !important;
12034
- }
12035
- .bg-theme-primary-legacy-075,
12036
- .h\:bg-theme-primary-legacy-075:hover,
12037
- .f\:bg-theme-primary-legacy-075:focus,
12038
- .f\:bg-theme-primary-legacy-075:focus-within {
12039
- background-color: var(--theme-primary-legacy-075) !important;
12040
- }
12041
- @media (prefers-color-scheme: dark) {
12042
- body.theme-system .d\:bg-theme-primary-legacy-075 {
12043
- background-color: var(--theme-primary-legacy-075) !important;
12044
- }
12045
- }
12046
- body.theme-dark .d\:bg-theme-primary-legacy-075,
12047
- .theme-dark__forced .d\:bg-theme-primary-legacy-075,
12048
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-075 {
12049
- background-color: var(--theme-primary-legacy-075) !important;
12050
- }
12051
- .fc-theme-primary-legacy-025,
12052
- .h\:fc-theme-primary-legacy-025:hover,
12053
- .f\:fc-theme-primary-legacy-025:focus,
12054
- .f\:fc-theme-primary-legacy-025:focus-within {
12055
- color: var(--theme-primary-legacy-025) !important;
12056
- }
12057
- @media (prefers-color-scheme: dark) {
12058
- body.theme-system .d\:fc-theme-primary-legacy-025 {
12059
- color: var(--theme-primary-legacy-025) !important;
12060
- }
12061
- }
12062
- body.theme-dark .d\:fc-theme-primary-legacy-025,
12063
- .theme-dark__forced .d\:fc-theme-primary-legacy-025,
12064
- body.theme-system .theme-dark__forced .d\:fc-theme-primary-legacy-025 {
12065
- color: var(--theme-primary-legacy-025) !important;
12066
- }
12067
- .bg-theme-primary-legacy-025,
12068
- .h\:bg-theme-primary-legacy-025:hover,
12069
- .f\:bg-theme-primary-legacy-025:focus,
12070
- .f\:bg-theme-primary-legacy-025:focus-within {
12071
- background-color: var(--theme-primary-legacy-025) !important;
12072
- }
12073
- @media (prefers-color-scheme: dark) {
12074
- body.theme-system .d\:bg-theme-primary-legacy-025 {
12075
- background-color: var(--theme-primary-legacy-025) !important;
12076
- }
12077
- }
12078
- body.theme-dark .d\:bg-theme-primary-legacy-025,
12079
- .theme-dark__forced .d\:bg-theme-primary-legacy-025,
12080
- body.theme-system .theme-dark__forced .d\:bg-theme-primary-legacy-025 {
12081
- background-color: var(--theme-primary-legacy-025) !important;
12082
- }
12083
- .fc-theme-secondary-legacy-350,
12084
- .h\:fc-theme-secondary-legacy-350:hover,
12085
- .f\:fc-theme-secondary-legacy-350:focus,
12086
- .f\:fc-theme-secondary-legacy-350:focus-within {
12087
- color: var(--theme-secondary-legacy-350) !important;
12088
- }
12089
- @media (prefers-color-scheme: dark) {
12090
- body.theme-system .d\:fc-theme-secondary-legacy-350 {
12091
- color: var(--theme-secondary-legacy-350) !important;
12092
- }
12093
- }
12094
- body.theme-dark .d\:fc-theme-secondary-legacy-350,
12095
- .theme-dark__forced .d\:fc-theme-secondary-legacy-350,
12096
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-350 {
12097
- color: var(--theme-secondary-legacy-350) !important;
12098
- }
12099
- .bg-theme-secondary-legacy-350,
12100
- .h\:bg-theme-secondary-legacy-350:hover,
12101
- .f\:bg-theme-secondary-legacy-350:focus,
12102
- .f\:bg-theme-secondary-legacy-350:focus-within {
12103
- background-color: var(--theme-secondary-legacy-350) !important;
12104
- }
12105
- @media (prefers-color-scheme: dark) {
12106
- body.theme-system .d\:bg-theme-secondary-legacy-350 {
12107
- background-color: var(--theme-secondary-legacy-350) !important;
12108
- }
12109
- }
12110
- body.theme-dark .d\:bg-theme-secondary-legacy-350,
12111
- .theme-dark__forced .d\:bg-theme-secondary-legacy-350,
12112
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-350 {
12113
- background-color: var(--theme-secondary-legacy-350) !important;
12114
- }
12115
- .fc-theme-secondary-legacy-150,
12116
- .h\:fc-theme-secondary-legacy-150:hover,
12117
- .f\:fc-theme-secondary-legacy-150:focus,
12118
- .f\:fc-theme-secondary-legacy-150:focus-within {
12119
- color: var(--theme-secondary-legacy-150) !important;
12120
- }
12121
- @media (prefers-color-scheme: dark) {
12122
- body.theme-system .d\:fc-theme-secondary-legacy-150 {
12123
- color: var(--theme-secondary-legacy-150) !important;
12124
- }
12125
- }
12126
- body.theme-dark .d\:fc-theme-secondary-legacy-150,
12127
- .theme-dark__forced .d\:fc-theme-secondary-legacy-150,
12128
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-150 {
12129
- color: var(--theme-secondary-legacy-150) !important;
12130
- }
12131
- .bg-theme-secondary-legacy-150,
12132
- .h\:bg-theme-secondary-legacy-150:hover,
12133
- .f\:bg-theme-secondary-legacy-150:focus,
12134
- .f\:bg-theme-secondary-legacy-150:focus-within {
12135
- background-color: var(--theme-secondary-legacy-150) !important;
12136
- }
12137
- @media (prefers-color-scheme: dark) {
12138
- body.theme-system .d\:bg-theme-secondary-legacy-150 {
12139
- background-color: var(--theme-secondary-legacy-150) !important;
12140
- }
12141
- }
12142
- body.theme-dark .d\:bg-theme-secondary-legacy-150,
12143
- .theme-dark__forced .d\:bg-theme-secondary-legacy-150,
12144
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-150 {
12145
- background-color: var(--theme-secondary-legacy-150) !important;
12146
- }
12147
- .fc-theme-secondary-legacy-075,
12148
- .h\:fc-theme-secondary-legacy-075:hover,
12149
- .f\:fc-theme-secondary-legacy-075:focus,
12150
- .f\:fc-theme-secondary-legacy-075:focus-within {
12151
- color: var(--theme-secondary-legacy-075) !important;
12152
- }
12153
- @media (prefers-color-scheme: dark) {
12154
- body.theme-system .d\:fc-theme-secondary-legacy-075 {
12155
- color: var(--theme-secondary-legacy-075) !important;
12156
- }
12157
- }
12158
- body.theme-dark .d\:fc-theme-secondary-legacy-075,
12159
- .theme-dark__forced .d\:fc-theme-secondary-legacy-075,
12160
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-075 {
12161
- color: var(--theme-secondary-legacy-075) !important;
12162
- }
12163
- .bg-theme-secondary-legacy-075,
12164
- .h\:bg-theme-secondary-legacy-075:hover,
12165
- .f\:bg-theme-secondary-legacy-075:focus,
12166
- .f\:bg-theme-secondary-legacy-075:focus-within {
12167
- background-color: var(--theme-secondary-legacy-075) !important;
12168
- }
12169
- @media (prefers-color-scheme: dark) {
12170
- body.theme-system .d\:bg-theme-secondary-legacy-075 {
12171
- background-color: var(--theme-secondary-legacy-075) !important;
12172
- }
12173
- }
12174
- body.theme-dark .d\:bg-theme-secondary-legacy-075,
12175
- .theme-dark__forced .d\:bg-theme-secondary-legacy-075,
12176
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-075 {
12177
- background-color: var(--theme-secondary-legacy-075) !important;
12178
- }
12179
- .fc-theme-secondary-legacy-025,
12180
- .h\:fc-theme-secondary-legacy-025:hover,
12181
- .f\:fc-theme-secondary-legacy-025:focus,
12182
- .f\:fc-theme-secondary-legacy-025:focus-within {
12183
- color: var(--theme-secondary-legacy-025) !important;
12184
- }
12185
- @media (prefers-color-scheme: dark) {
12186
- body.theme-system .d\:fc-theme-secondary-legacy-025 {
12187
- color: var(--theme-secondary-legacy-025) !important;
12188
- }
12189
- }
12190
- body.theme-dark .d\:fc-theme-secondary-legacy-025,
12191
- .theme-dark__forced .d\:fc-theme-secondary-legacy-025,
12192
- body.theme-system .theme-dark__forced .d\:fc-theme-secondary-legacy-025 {
12193
- color: var(--theme-secondary-legacy-025) !important;
12194
- }
12195
- .bg-theme-secondary-legacy-025,
12196
- .h\:bg-theme-secondary-legacy-025:hover,
12197
- .f\:bg-theme-secondary-legacy-025:focus,
12198
- .f\:bg-theme-secondary-legacy-025:focus-within {
12199
- background-color: var(--theme-secondary-legacy-025) !important;
12200
- }
12201
- @media (prefers-color-scheme: dark) {
12202
- body.theme-system .d\:bg-theme-secondary-legacy-025 {
12203
- background-color: var(--theme-secondary-legacy-025) !important;
12204
- }
12205
- }
12206
- body.theme-dark .d\:bg-theme-secondary-legacy-025,
12207
- .theme-dark__forced .d\:bg-theme-secondary-legacy-025,
12208
- body.theme-system .theme-dark__forced .d\:bg-theme-secondary-legacy-025 {
12209
- background-color: var(--theme-secondary-legacy-025) !important;
12210
- }
12211
- .fc-theme-primary-legacy {
12212
- color: var(--theme-primary-color-legacy) !important;
12213
- }
12214
- .bg-theme-primary-legacy {
12215
- background-color: var(--theme-primary-color-legacy) !important;
12216
- }
12217
- .bc-theme-primary-legacy {
12218
- border-color: var(--theme-primary-color-legacy) !important;
12219
- }
12220
- .fc-theme-secondary-legacy {
12221
- color: var(--theme-secondary-color-legacy) !important;
12222
- }
12223
- .bg-theme-secondary-legacy {
12224
- background-color: var(--theme-secondary-color-legacy) !important;
12225
- }
12226
- .bc-theme-secondary-legacy {
12227
- border-color: var(--theme-secondary-color-legacy) !important;
12228
- }
12229
- .fc-white-legacy__forced {
12230
- color: hsl(0, 0%, 100%) !important;
12231
- }
12232
- .fc-black-legacy__forced {
12233
- color: hsl(210, 8%, 5%) !important;
12234
- }
12235
- .fc-gold-legacy {
12236
- color: var(--gold-legacy) !important;
12237
- }
12238
- .fc-gold-legacy-darker {
12239
- color: var(--gold-legacy-darker) !important;
12240
- }
12241
- .fc-gold-legacy-lighter {
12242
- color: var(--gold-legacy-lighter) !important;
12243
- }
12244
- .bg-gold-legacy {
12245
- background-color: var(--gold-legacy) !important;
12246
- }
12247
- .bg-gold-legacy-darker {
12248
- background-color: var(--gold-legacy-darker) !important;
12249
- }
12250
- .bg-gold-legacy-lighter {
12251
- background-color: var(--gold-legacy-lighter) !important;
12252
- }
12253
- .fc-silver-legacy {
12254
- color: var(--silver-legacy) !important;
12255
- }
12256
- .fc-silver-legacy-darker {
12257
- color: var(--silver-legacy-darker) !important;
12258
- }
12259
- .fc-silver-legacy-lighter {
12260
- color: var(--silver-legacy-lighter) !important;
12261
- }
12262
- .bg-silver-legacy {
12263
- background-color: var(--silver-legacy) !important;
12264
- }
12265
- .bg-silver-legacy-darker {
12266
- background-color: var(--silver-legacy-darker) !important;
12267
- }
12268
- .bg-silver-legacy-lighter {
12269
- background-color: var(--silver-legacy-lighter) !important;
12270
- }
12271
- .fc-bronze-legacy {
12272
- color: var(--bronze-legacy) !important;
12273
- }
12274
- .fc-bronze-legacy-darker {
12275
- color: var(--bronze-legacy-darker) !important;
12276
- }
12277
- .fc-bronze-legacy-lighter {
12278
- color: var(--bronze-legacy-lighter) !important;
12279
- }
12280
- .bg-bronze-legacy {
12281
- background-color: var(--bronze-legacy) !important;
12282
- }
12283
- .bg-bronze-legacy-darker {
12284
- background-color: var(--bronze-legacy-darker) !important;
12285
- }
12286
- .bg-bronze-legacy-lighter {
12287
- background-color: var(--bronze-legacy-lighter) !important;
12288
- }
12289
- .fc-dark-legacy {
12290
- color: var(--fc-dark-legacy) !important;
12291
- }
12292
- .fc-medium-legacy {
12293
- color: var(--fc-medium-legacy) !important;
12294
- }
12295
- .fc-light-legacy {
12296
- color: var(--fc-light-legacy) !important;
12297
- }
12298
7502
  .ba {
12299
7503
  border-style: solid !important;
12300
7504
  border-width: var(--su-static1) !important;
@@ -20591,7 +15795,8 @@ ol {
20591
15795
  .v-hidden {
20592
15796
  visibility: hidden !important;
20593
15797
  }
20594
- .v-visible-sr {
15798
+ .v-visible-sr,
15799
+ .s-topbar .s-topbar--skip-link:not(:focus) {
20595
15800
  border: 0;
20596
15801
  clip: rect(var(--su-static1), var(--su-static1), var(--su-static1), var(--su-static1));
20597
15802
  clip-path: inset(50%);