@salutejs/plasma-themes 0.25.0-dev.0 → 0.26.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/css/plasma_b2c.module.css +18 -0
  2. package/css/plasma_b2c__dark.css +18 -0
  3. package/css/plasma_b2c__light.css +18 -0
  4. package/css/plasma_giga.module.css +18 -0
  5. package/css/plasma_giga__dark.css +18 -0
  6. package/css/plasma_giga__light.css +18 -0
  7. package/css/plasma_web.module.css +18 -0
  8. package/css/plasma_web__dark.css +18 -0
  9. package/css/plasma_web__light.css +18 -0
  10. package/css/stylesSalute.module.css +18 -0
  11. package/css/stylesSalute__dark.css +18 -0
  12. package/css/stylesSalute__light.css +18 -0
  13. package/es/themes/plasma_b2c__dark.js +1 -1
  14. package/es/themes/plasma_b2c__dark.js.map +1 -1
  15. package/es/themes/plasma_b2c__light.js +1 -1
  16. package/es/themes/plasma_b2c__light.js.map +1 -1
  17. package/es/themes/plasma_giga__dark.js +1 -1
  18. package/es/themes/plasma_giga__dark.js.map +1 -1
  19. package/es/themes/plasma_giga__light.js +1 -1
  20. package/es/themes/plasma_giga__light.js.map +1 -1
  21. package/es/themes/plasma_web__dark.js +1 -1
  22. package/es/themes/plasma_web__dark.js.map +1 -1
  23. package/es/themes/plasma_web__light.js +1 -1
  24. package/es/themes/plasma_web__light.js.map +1 -1
  25. package/es/themes/stylesSalute__dark.js +1 -1
  26. package/es/themes/stylesSalute__dark.js.map +1 -1
  27. package/es/themes/stylesSalute__light.js +1 -1
  28. package/es/themes/stylesSalute__light.js.map +1 -1
  29. package/es/tokens/index.js +30 -0
  30. package/es/tokens/index.js.map +1 -1
  31. package/es/tokens/plasma_b2c/index.js +30 -0
  32. package/es/tokens/plasma_b2c/index.js.map +1 -1
  33. package/es/tokens/plasma_giga/index.js +30 -0
  34. package/es/tokens/plasma_giga/index.js.map +1 -1
  35. package/es/tokens/plasma_web/index.js +30 -0
  36. package/es/tokens/plasma_web/index.js.map +1 -1
  37. package/es/tokens/stylesSalute/index.js +30 -0
  38. package/es/tokens/stylesSalute/index.js.map +1 -1
  39. package/package.json +3 -3
  40. package/themes/plasma_b2c__dark.js +1 -1
  41. package/themes/plasma_b2c__dark.js.map +1 -1
  42. package/themes/plasma_b2c__light.js +1 -1
  43. package/themes/plasma_b2c__light.js.map +1 -1
  44. package/themes/plasma_giga__dark.js +1 -1
  45. package/themes/plasma_giga__dark.js.map +1 -1
  46. package/themes/plasma_giga__light.js +1 -1
  47. package/themes/plasma_giga__light.js.map +1 -1
  48. package/themes/plasma_web__dark.js +1 -1
  49. package/themes/plasma_web__dark.js.map +1 -1
  50. package/themes/plasma_web__light.js +1 -1
  51. package/themes/plasma_web__light.js.map +1 -1
  52. package/themes/stylesSalute__dark.js +1 -1
  53. package/themes/stylesSalute__dark.js.map +1 -1
  54. package/themes/stylesSalute__light.js +1 -1
  55. package/themes/stylesSalute__light.js.map +1 -1
  56. package/tokens/index.d.ts +30 -0
  57. package/tokens/index.js +32 -2
  58. package/tokens/index.js.map +1 -1
  59. package/tokens/plasma_b2c/index.d.ts +30 -0
  60. package/tokens/plasma_b2c/index.js +32 -1
  61. package/tokens/plasma_b2c/index.js.map +1 -1
  62. package/tokens/plasma_giga/index.d.ts +30 -0
  63. package/tokens/plasma_giga/index.js +32 -2
  64. package/tokens/plasma_giga/index.js.map +1 -1
  65. package/tokens/plasma_web/index.d.ts +30 -0
  66. package/tokens/plasma_web/index.js +32 -2
  67. package/tokens/plasma_web/index.js.map +1 -1
  68. package/tokens/stylesSalute/index.d.ts +30 -0
  69. package/tokens/stylesSalute/index.js +32 -1
  70. package/tokens/stylesSalute/index.js.map +1 -1
@@ -1821,6 +1821,24 @@
1821
1821
  --border-radius-xxl: 32px;
1822
1822
  }
1823
1823
 
1824
+ .dark, .light {
1825
+ --spacing-0x: 0px;
1826
+ --spacing-1x: 2px;
1827
+ --spacing-2x: 4px;
1828
+ --spacing-3x: 6px;
1829
+ --spacing-4x: 8px;
1830
+ --spacing-6x: 12px;
1831
+ --spacing-8x: 16px;
1832
+ --spacing-10x: 20px;
1833
+ --spacing-12x: 24px;
1834
+ --spacing-16x: 32px;
1835
+ --spacing-20x: 40px;
1836
+ --spacing-24x: 48px;
1837
+ --spacing-32x: 64px;
1838
+ --spacing-40x: 80px;
1839
+ --spacing-60x: 120px;
1840
+ }
1841
+
1824
1842
  .dark, .light {
1825
1843
  font-size: 16px;
1826
1844
  --plasma-typo-overflow-wrap: break-word;
@@ -926,6 +926,24 @@
926
926
  --border-radius-xxl: 32px;
927
927
  }
928
928
 
929
+ :root {
930
+ --spacing-0x: 0px;
931
+ --spacing-1x: 2px;
932
+ --spacing-2x: 4px;
933
+ --spacing-3x: 6px;
934
+ --spacing-4x: 8px;
935
+ --spacing-6x: 12px;
936
+ --spacing-8x: 16px;
937
+ --spacing-10x: 20px;
938
+ --spacing-12x: 24px;
939
+ --spacing-16x: 32px;
940
+ --spacing-20x: 40px;
941
+ --spacing-24x: 48px;
942
+ --spacing-32x: 64px;
943
+ --spacing-40x: 80px;
944
+ --spacing-60x: 120px;
945
+ }
946
+
929
947
  :root {
930
948
  font-size: 16px;
931
949
  --plasma-typo-overflow-wrap: break-word;
@@ -920,6 +920,24 @@
920
920
  --border-radius-xxl: 32px;
921
921
  }
922
922
 
923
+ :root {
924
+ --spacing-0x: 0px;
925
+ --spacing-1x: 2px;
926
+ --spacing-2x: 4px;
927
+ --spacing-3x: 6px;
928
+ --spacing-4x: 8px;
929
+ --spacing-6x: 12px;
930
+ --spacing-8x: 16px;
931
+ --spacing-10x: 20px;
932
+ --spacing-12x: 24px;
933
+ --spacing-16x: 32px;
934
+ --spacing-20x: 40px;
935
+ --spacing-24x: 48px;
936
+ --spacing-32x: 64px;
937
+ --spacing-40x: 80px;
938
+ --spacing-60x: 120px;
939
+ }
940
+
923
941
  :root {
924
942
  font-size: 16px;
925
943
  --plasma-typo-overflow-wrap: break-word;
@@ -1677,6 +1677,24 @@
1677
1677
  --border-radius-xxl: 32px;
1678
1678
  }
1679
1679
 
1680
+ .dark, .light {
1681
+ --spacing-0x: 0px;
1682
+ --spacing-1x: 2px;
1683
+ --spacing-2x: 4px;
1684
+ --spacing-3x: 6px;
1685
+ --spacing-4x: 8px;
1686
+ --spacing-6x: 12px;
1687
+ --spacing-8x: 16px;
1688
+ --spacing-10x: 20px;
1689
+ --spacing-12x: 24px;
1690
+ --spacing-16x: 32px;
1691
+ --spacing-20x: 40px;
1692
+ --spacing-24x: 48px;
1693
+ --spacing-32x: 64px;
1694
+ --spacing-40x: 80px;
1695
+ --spacing-60x: 120px;
1696
+ }
1697
+
1680
1698
  .dark, .light {
1681
1699
  font-size: 16px;
1682
1700
  --plasma-typo-overflow-wrap: break-word;
@@ -851,6 +851,24 @@
851
851
  --border-radius-xxl: 32px;
852
852
  }
853
853
 
854
+ :root {
855
+ --spacing-0x: 0px;
856
+ --spacing-1x: 2px;
857
+ --spacing-2x: 4px;
858
+ --spacing-3x: 6px;
859
+ --spacing-4x: 8px;
860
+ --spacing-6x: 12px;
861
+ --spacing-8x: 16px;
862
+ --spacing-10x: 20px;
863
+ --spacing-12x: 24px;
864
+ --spacing-16x: 32px;
865
+ --spacing-20x: 40px;
866
+ --spacing-24x: 48px;
867
+ --spacing-32x: 64px;
868
+ --spacing-40x: 80px;
869
+ --spacing-60x: 120px;
870
+ }
871
+
854
872
  :root {
855
873
  font-size: 16px;
856
874
  --plasma-typo-overflow-wrap: break-word;
@@ -851,6 +851,24 @@
851
851
  --border-radius-xxl: 32px;
852
852
  }
853
853
 
854
+ :root {
855
+ --spacing-0x: 0px;
856
+ --spacing-1x: 2px;
857
+ --spacing-2x: 4px;
858
+ --spacing-3x: 6px;
859
+ --spacing-4x: 8px;
860
+ --spacing-6x: 12px;
861
+ --spacing-8x: 16px;
862
+ --spacing-10x: 20px;
863
+ --spacing-12x: 24px;
864
+ --spacing-16x: 32px;
865
+ --spacing-20x: 40px;
866
+ --spacing-24x: 48px;
867
+ --spacing-32x: 64px;
868
+ --spacing-40x: 80px;
869
+ --spacing-60x: 120px;
870
+ }
871
+
854
872
  :root {
855
873
  font-size: 16px;
856
874
  --plasma-typo-overflow-wrap: break-word;
@@ -1775,6 +1775,24 @@
1775
1775
  --border-radius-xxl: 32px;
1776
1776
  }
1777
1777
 
1778
+ .dark, .light {
1779
+ --spacing-0x: 0px;
1780
+ --spacing-1x: 2px;
1781
+ --spacing-2x: 4px;
1782
+ --spacing-3x: 6px;
1783
+ --spacing-4x: 8px;
1784
+ --spacing-6x: 12px;
1785
+ --spacing-8x: 16px;
1786
+ --spacing-10x: 20px;
1787
+ --spacing-12x: 24px;
1788
+ --spacing-16x: 32px;
1789
+ --spacing-20x: 40px;
1790
+ --spacing-24x: 48px;
1791
+ --spacing-32x: 64px;
1792
+ --spacing-40x: 80px;
1793
+ --spacing-60x: 120px;
1794
+ }
1795
+
1778
1796
  .dark, .light {
1779
1797
  font-size: 16px;
1780
1798
  --plasma-typo-overflow-wrap: break-word;
@@ -900,6 +900,24 @@
900
900
  --border-radius-xxl: 32px;
901
901
  }
902
902
 
903
+ :root {
904
+ --spacing-0x: 0px;
905
+ --spacing-1x: 2px;
906
+ --spacing-2x: 4px;
907
+ --spacing-3x: 6px;
908
+ --spacing-4x: 8px;
909
+ --spacing-6x: 12px;
910
+ --spacing-8x: 16px;
911
+ --spacing-10x: 20px;
912
+ --spacing-12x: 24px;
913
+ --spacing-16x: 32px;
914
+ --spacing-20x: 40px;
915
+ --spacing-24x: 48px;
916
+ --spacing-32x: 64px;
917
+ --spacing-40x: 80px;
918
+ --spacing-60x: 120px;
919
+ }
920
+
903
921
  :root {
904
922
  font-size: 16px;
905
923
  --plasma-typo-overflow-wrap: break-word;
@@ -900,6 +900,24 @@
900
900
  --border-radius-xxl: 32px;
901
901
  }
902
902
 
903
+ :root {
904
+ --spacing-0x: 0px;
905
+ --spacing-1x: 2px;
906
+ --spacing-2x: 4px;
907
+ --spacing-3x: 6px;
908
+ --spacing-4x: 8px;
909
+ --spacing-6x: 12px;
910
+ --spacing-8x: 16px;
911
+ --spacing-10x: 20px;
912
+ --spacing-12x: 24px;
913
+ --spacing-16x: 32px;
914
+ --spacing-20x: 40px;
915
+ --spacing-24x: 48px;
916
+ --spacing-32x: 64px;
917
+ --spacing-40x: 80px;
918
+ --spacing-60x: 120px;
919
+ }
920
+
903
921
  :root {
904
922
  font-size: 16px;
905
923
  --plasma-typo-overflow-wrap: break-word;
@@ -2535,6 +2535,24 @@
2535
2535
  --border-radius-xxl: 32px;
2536
2536
  }
2537
2537
 
2538
+ .dark, .light {
2539
+ --spacing-0x: 0px;
2540
+ --spacing-1x: 2px;
2541
+ --spacing-2x: 4px;
2542
+ --spacing-3x: 6px;
2543
+ --spacing-4x: 8px;
2544
+ --spacing-6x: 12px;
2545
+ --spacing-8x: 16px;
2546
+ --spacing-10x: 20px;
2547
+ --spacing-12x: 24px;
2548
+ --spacing-16x: 32px;
2549
+ --spacing-20x: 40px;
2550
+ --spacing-24x: 48px;
2551
+ --spacing-32x: 64px;
2552
+ --spacing-40x: 80px;
2553
+ --spacing-60x: 120px;
2554
+ }
2555
+
2538
2556
  .dark, .light {
2539
2557
  font-size: 16px;
2540
2558
  --plasma-typo-overflow-wrap: break-word;
@@ -1279,6 +1279,24 @@
1279
1279
  --border-radius-xxl: 32px;
1280
1280
  }
1281
1281
 
1282
+ :root {
1283
+ --spacing-0x: 0px;
1284
+ --spacing-1x: 2px;
1285
+ --spacing-2x: 4px;
1286
+ --spacing-3x: 6px;
1287
+ --spacing-4x: 8px;
1288
+ --spacing-6x: 12px;
1289
+ --spacing-8x: 16px;
1290
+ --spacing-10x: 20px;
1291
+ --spacing-12x: 24px;
1292
+ --spacing-16x: 32px;
1293
+ --spacing-20x: 40px;
1294
+ --spacing-24x: 48px;
1295
+ --spacing-32x: 64px;
1296
+ --spacing-40x: 80px;
1297
+ --spacing-60x: 120px;
1298
+ }
1299
+
1282
1300
  :root {
1283
1301
  font-size: 16px;
1284
1302
  --plasma-typo-overflow-wrap: break-word;
@@ -1281,6 +1281,24 @@
1281
1281
  --border-radius-xxl: 32px;
1282
1282
  }
1283
1283
 
1284
+ :root {
1285
+ --spacing-0x: 0px;
1286
+ --spacing-1x: 2px;
1287
+ --spacing-2x: 4px;
1288
+ --spacing-3x: 6px;
1289
+ --spacing-4x: 8px;
1290
+ --spacing-6x: 12px;
1291
+ --spacing-8x: 16px;
1292
+ --spacing-10x: 20px;
1293
+ --spacing-12x: 24px;
1294
+ --spacing-16x: 32px;
1295
+ --spacing-20x: 40px;
1296
+ --spacing-24x: 48px;
1297
+ --spacing-32x: 64px;
1298
+ --spacing-40x: 80px;
1299
+ --spacing-60x: 120px;
1300
+ }
1301
+
1284
1302
  :root {
1285
1303
  font-size: 16px;
1286
1304
  --plasma-typo-overflow-wrap: break-word;
@@ -1,3 +1,3 @@
1
1
  // Generated by robots, do not change this manually!
2
- export var plasma_b2c__dark = ["\n:root {\n --text-primary: #FFFFFFF5;\n --text-primary-brightness: #FFFFFFF5;\n --text-secondary: #FFFFFF8F;\n --text-tertiary: #FFFFFF47;\n --text-paragraph: #FFFFFFCC;\n --text-accent: #3F81FD;\n --text-positive: #1A9E32;\n --text-warning: #FA5F05;\n --text-negative: #FF293E;\n --text-accent-minor: #1549AB;\n --text-accent-minor-hover: #FFFFFFFF;\n --text-accent-minor-active: #1C62E3FF;\n --text-info-hover: #90B6FEFF;\n --text-info-active: #216EFDFF;\n --text-positive-minor: #095C18;\n --text-positive-minor-hover: #0F9527FF;\n --text-positive-minor-active: #0C7920FF;\n --text-warning-minor: #85380C;\n --text-warning-minor-hover: #BB4F11FF;\n --text-warning-minor-active: #9F440FFF;\n --text-negative-minor: #9C1422;\n --text-negative-minor-hover: #B91828FF;\n --text-negative-minor-active: #83111CFF;\n --text-info-minor-hover: #FFFFFFFF;\n --text-info-minor-active: #1C62E3FF;\n --text-info: #3F81FD;\n --text-info-minor: #1549AB;\n --text-primary-hover: #FFFFFF93;\n --text-primary-active: #FFFFFFC4;\n --text-secondary-hover: #FFFFFFFF;\n --text-secondary-active: #FFFFFFAB;\n --text-tertiary-hover: #FFFFFFFF;\n --text-tertiary-active: #FFFFFF56;\n --text-paragraph-hover: #FFFFFF7A;\n --text-paragraph-active: #FFFFFFA3;\n --text-accent-hover: #90B6FEFF;\n --text-accent-active: #216EFDFF;\n --text-positive-hover: #1EB83AFF;\n --text-positive-active: #15842AFF;\n --text-warning-hover: #FB7223FF;\n --text-warning-active: #DC5304FF;\n --text-negative-hover: #FF475AFF;\n --text-negative-active: #FF0A23FF;\n --on-dark-text-primary: #FFFFFFF5;\n --on-dark-text-primary-brightness: #FFFFFFF5;\n --on-dark-text-secondary: #FFFFFF8F;\n --on-dark-text-tertiary: #FFFFFF47;\n --on-dark-text-paragraph: #FFFFFFCC;\n --on-dark-text-accent: #3F81FD;\n --on-dark-text-positive: #1A9E32;\n --on-dark-text-warning: #FA5F05;\n --on-dark-text-negative: #FF293E;\n --on-dark-text-accent-minor: #1549AB;\n --on-dark-text-accent-minor-hover: #FFFFFFFF;\n --on-dark-text-accent-minor-active: #1C62E3FF;\n --on-dark-text-info-hover: #90B6FEFF;\n --on-dark-text-info-active: #216EFDFF;\n --on-dark-text-positive-minor: #095C18;\n --on-dark-text-positive-minor-hover: #0F9527FF;\n --on-dark-text-positive-minor-active: #0C7920FF;\n --on-dark-text-warning-minor: #85380C;\n --on-dark-text-warning-minor-hover: #BB4F11FF;\n --on-dark-text-warning-minor-active: #9F440FFF;\n --on-dark-text-negative-minor: #9C1422;\n --on-dark-text-negative-minor-hover: #B91828FF;\n --on-dark-text-negative-minor-active: #83111CFF;\n --on-dark-text-info-minor-hover: #FFFFFFFF;\n --on-dark-text-info-minor-active: #1C62E3FF;\n --on-dark-text-info-minor: #1549AB;\n --on-dark-text-info: #3F81FD;\n --on-dark-text-primary-hover: #FFFFFF93;\n --on-dark-text-primary-active: #FFFFFFC4;\n --on-dark-text-secondary-hover: #FFFFFFFF;\n --on-dark-text-secondary-active: #FFFFFFAB;\n --on-dark-text-tertiary-hover: #FFFFFFFF;\n --on-dark-text-tertiary-active: #FFFFFF56;\n --on-dark-text-paragraph-hover: #FFFFFF7A;\n --on-dark-text-paragraph-active: #FFFFFFA3;\n --on-dark-text-accent-hover: #90B6FEFF;\n --on-dark-text-accent-active: #216EFDFF;\n --on-dark-text-positive-hover: #1EB83AFF;\n --on-dark-text-positive-active: #15842AFF;\n --on-dark-text-warning-hover: #FB7223FF;\n --on-dark-text-warning-active: #DC5304FF;\n --on-dark-text-negative-hover: #FF475AFF;\n --on-dark-text-negative-active: #FF0A23FF;\n --on-light-text-primary: #080808F5;\n --on-light-text-primary-brightness: #080808F5;\n --on-light-text-secondary: #0808088F;\n --on-light-text-tertiary: #08080847;\n --on-light-text-paragraph: #080808CC;\n --on-light-text-accent: #2A72F8;\n --on-light-text-positive: #1A9E32;\n --on-light-text-warning: #FA5F05;\n --on-light-text-accent-minor: #8BB2FC;\n --on-light-text-accent-minor-hover: #DCE8FEFF;\n --on-light-text-accent-minor-active: #6FA0FBFF;\n --on-light-text-info-hover: #79A7FBFF;\n --on-light-text-info-active: #0D5FF8FF;\n --on-light-text-positive-minor: #28D247;\n --on-light-text-positive-minor-hover: #3EDA5BFF;\n --on-light-text-positive-minor-active: #23B83EFF;\n --on-light-text-warning-minor: #FD9C68;\n --on-light-text-warning-minor-hover: #FDB086FF;\n --on-light-text-warning-minor-active: #FC884AFF;\n --on-light-text-negative-minor: #FF8F9A;\n --on-light-text-negative-minor-hover: #FFADB6FF;\n --on-light-text-negative-minor-active: #FF707EFF;\n --on-light-text-info-minor-hover: #DCE8FEFF;\n --on-light-text-info-minor-active: #6FA0FBFF;\n --on-light-text-negative-hover: #F5384BFF;\n --on-light-text-negative-active: #E40C22FF;\n --on-light-text-negative: #F31B31;\n --on-light-text-info: #2A72F8;\n --on-light-text-info-minor: #8BB2FC;\n --on-light-text-primary-hover: #08080893;\n --on-light-text-primary-active: #080808C4;\n --on-light-text-secondary-hover: #080808FF;\n --on-light-text-secondary-active: #080808AB;\n --on-light-text-tertiary-hover: #080808FF;\n --on-light-text-tertiary-active: #08080856;\n --on-light-text-paragraph-hover: #0808087A;\n --on-light-text-paragraph-active: #080808A3;\n --on-light-text-accent-hover: #79A7FBFF;\n --on-light-text-accent-active: #0D5FF8FF;\n --on-light-text-positive-hover: #1EB83AFF;\n --on-light-text-positive-active: #15842AFF;\n --on-light-text-warning-hover: #FB7223FF;\n --on-light-text-warning-active: #DC5304FF;\n --inverse-text-primary: #080808F5;\n --inverse-text-primary-brightness: #080808F5;\n --inverse-text-secondary: #0808088F;\n --inverse-text-tertiary: #08080847;\n --inverse-text-paragraph: #080808CC;\n --inverse-text-primary-hover: #08080893;\n --inverse-text-primary-active: #080808C4;\n --inverse-text-secondary-hover: #080808FF;\n --inverse-text-secondary-active: #080808AB;\n --inverse-text-tertiary-hover: #080808FF;\n --inverse-text-tertiary-active: #08080856;\n --inverse-text-paragraph-hover: #0808087A;\n --inverse-text-paragraph-active: #080808A3;\n --inverse-text-accent-hover: #79A7FBFF;\n --inverse-text-accent-active: #0D5FF8FF;\n --inverse-text-positive-hover: #1EB83AFF;\n --inverse-text-positive-active: #15842AFF;\n --inverse-text-warning-hover: #FB7223FF;\n --inverse-text-warning-active: #DC5304FF;\n --inverse-text-negative-hover: #F5384BFF;\n --inverse-text-negative-active: #E40C22FF;\n --inverse-text-accent-minor-hover: #DCE8FEFF;\n --inverse-text-accent-minor-active: #6FA0FBFF;\n --inverse-text-accent: #2A72F8;\n --inverse-text-accent-minor: #8BB2FC;\n --inverse-text-positive: #1A9E32;\n --inverse-text-warning: #FA5F05;\n --inverse-text-negative: #F31B31;\n --inverse-text-info: #2A72F8;\n --inverse-text-info-hover: #79A7FBFF;\n --inverse-text-info-active: #0D5FF8FF;\n --inverse-text-positive-minor: #28D247;\n --inverse-text-positive-minor-hover: #3EDA5BFF;\n --inverse-text-positive-minor-active: #23B83EFF;\n --inverse-text-warning-minor: #FD9C68;\n --inverse-text-warning-minor-hover: #FDB086FF;\n --inverse-text-warning-minor-active: #FC884AFF;\n --inverse-text-negative-minor: #FF8F9A;\n --inverse-text-negative-minor-hover: #FFADB6FF;\n --inverse-text-negative-minor-active: #FF707EFF;\n --inverse-text-info-minor: #8BB2FC;\n --inverse-text-info-minor-hover: #DCE8FEFF;\n --inverse-text-info-minor-active: #6FA0FBFF;\n --surface-solid-primary: #171717;\n --surface-solid-primary-brightness: #262626FF;\n --surface-solid-secondary: #262626;\n --surface-solid-tertiary: #363636;\n --surface-solid-card: #171717;\n --surface-solid-card-brightness: #262626FF;\n --surface-transparent-primary: #FFFFFF0F;\n --surface-transparent-secondary: #FFFFFF1F;\n --surface-transparent-tertiary: #FFFFFF33;\n --surface-transparent-card: #FFFFFF1F;\n --surface-transparent-card-brightness: #FFFFFF1F;\n --surface-accent: #3F81FD;\n --surface-positive: #1A9E32;\n --surface-warning: #FA5F05;\n --surface-negative: #FF293E;\n --surface-clear: #FFFFFF00;\n --surface-transparent-deep: #FFFFFFA3;\n --surface-transparent-deep-hover: #FFFFFFC2;\n --surface-transparent-deep-active: #FFFFFF94;\n --surface-accent-minor: #082254;\n --surface-accent-minor-hover: #0A2A67FF;\n --surface-accent-minor-active: #071F4BFF;\n --surface-transparent-accent: #3F81FD33;\n --surface-transparent-accent-hover: #3F82FD52;\n --surface-transparent-accent-active: #3F82FD24;\n --surface-info-hover: #5D95FDFF;\n --surface-info-active: #357BFDFF;\n --surface-positive-minor: #0A2B10;\n --surface-positive-minor-hover: #0E3A16FF;\n --surface-positive-minor-active: #08210CFF;\n --surface-warning-minor: #3D1D0A;\n --surface-warning-minor-hover: #4F250DFF;\n --surface-warning-minor-active: #351909FF;\n --surface-negative-minor: #4A0D13;\n --surface-negative-minor-hover: #5B1018FF;\n --surface-negative-minor-active: #410B11FF;\n --surface-info-minor-hover: #0A2A67FF;\n --surface-info-minor-active: #071F4BFF;\n --surface-transparent-positive-hover: #1A9E3252;\n --surface-transparent-positive-active: #1A9E3224;\n --surface-transparent-warning-hover: #FA5F0552;\n --surface-transparent-warning-active: #FA5F0524;\n --surface-transparent-negative-hover: #FF293E52;\n --surface-transparent-negative-active: #FF293E24;\n --surface-transparent-info-hover: #3F82FD52;\n --surface-transparent-info-active: #3F82FD24;\n --surface-transparent-positive: #1A9E3233;\n --surface-transparent-warning: #FA5F0533;\n --surface-transparent-negative: #FF293E33;\n --surface-solid-default: #F9F9F9;\n --surface-solid-default-hover: #FFFFFFFF;\n --surface-solid-default-active: #F5F5F5FF;\n --surface-info: #3F81FD;\n --surface-info-minor: #082254;\n --surface-transparent-info: #3F81FD33;\n --surface-solid-primary-hover: #1C1C1CFF;\n --surface-solid-primary-active: #121212FF;\n --surface-solid-secondary-hover: #303030FF;\n --surface-solid-secondary-active: #212121FF;\n --surface-solid-tertiary-hover: #404040FF;\n --surface-solid-tertiary-active: #303030FF;\n --surface-solid-card-hover: #1C1C1CFF;\n --surface-solid-card-active: #121212FF;\n --surface-transparent-primary-hover: #FFFFFF1F;\n --surface-transparent-primary-active: #FFFFFF0A;\n --surface-transparent-secondary-hover: #FFFFFF3D;\n --surface-transparent-secondary-active: #FFFFFF0F;\n --surface-transparent-tertiary-hover: #FFFFFF52;\n --surface-transparent-tertiary-active: #FFFFFF24;\n --surface-transparent-card-hover: #FFFFFF3D;\n --surface-transparent-card-active: #FFFFFF0F;\n --surface-accent-hover: #5D95FDFF;\n --surface-accent-active: #357BFDFF;\n --surface-positive-hover: #1DAF37FF;\n --surface-positive-active: #18952FFF;\n --surface-warning-hover: #FB7223FF;\n --surface-warning-active: #F05B05FF;\n --surface-negative-hover: #FF475AFF;\n --surface-negative-active: #FF1F35FF;\n --surface-clear-hover: #FFFFFF00;\n --surface-clear-active: #FFFFFF00;\n --on-dark-surface-solid-primary: #171717;\n --on-dark-surface-solid-primary-brightness: #262626FF;\n --on-dark-surface-solid-secondary: #262626;\n --on-dark-surface-solid-tertiary: #363636;\n --on-dark-surface-solid-card: #171717;\n --on-dark-surface-solid-card-brightness: #262626FF;\n --on-dark-surface-transparent-primary: #FFFFFF0F;\n --on-dark-surface-transparent-secondary: #FFFFFF1F;\n --on-dark-surface-transparent-tertiary: #FFFFFF33;\n --on-dark-surface-transparent-card: #FFFFFF1F;\n --on-dark-surface-transparent-card-brightness: #FFFFFF1F;\n --on-dark-surface-accent: #3F81FD;\n --on-dark-surface-positive: #1A9E32;\n --on-dark-surface-warning: #FA5F05;\n --on-dark-surface-negative: #FF293E;\n --on-dark-surface-transparent-deep: #FFFFFFA3;\n --on-dark-surface-transparent-deep-hover: #FFFFFFC2;\n --on-dark-surface-transparent-deep-active: #FFFFFF94;\n --on-dark-surface-accent-minor: #1549AB;\n --on-dark-surface-accent-minor-hover: #1852BFFF;\n --on-dark-surface-accent-minor-active: #1446A3FF;\n --on-dark-surface-transparent-accent: #3F81FD33;\n --on-dark-surface-transparent-accent-hover: #3F82FD52;\n --on-dark-surface-transparent-accent-active: #3F82FD24;\n --on-dark-surface-surface-info-hover: #5D95FDFF;\n --on-dark-surface-surface-info-active: #357BFDFF;\n --on-dark-surface-positive-minor: #0A2B10;\n --on-dark-surface-positive-minor-hover: #0E3A16FF;\n --on-dark-surface-positive-minor-active: #08210CFF;\n --on-dark-surface-warning-minor: #3D1D0A;\n --on-dark-surface-warning-minor-hover: #4F250DFF;\n --on-dark-surface-warning-minor-active: #351909FF;\n --on-dark-surface-negative-minor: #4A0D13;\n --on-dark-surface-negative-minor-hover: #5B1018FF;\n --on-dark-surface-negative-minor-active: #410B11FF;\n --on-dark-surface-info-minor-hover: #0A2A67FF;\n --on-dark-surface-info-minor-active: #071F4BFF;\n --on-dark-surface-transparent-positive-hover: #1A9E3252;\n --on-dark-surface-transparent-positive-active: #1A9E3224;\n --on-dark-surface-transparent-warning-hover: #FA5F0552;\n --on-dark-surface-transparent-warning-active: #FA5F0524;\n --on-dark-surface-transparent-negative-hover: #FF293E52;\n --on-dark-surface-transparent-negative-active: #FF293E24;\n --on-dark-surface-transparent-info-hover: #3F82FD52;\n --on-dark-surface-transparent-info-active: #3F82FD24;\n --on-dark-surface-transparent-positive: #1A9E3233;\n --on-dark-surface-transparent-warning: #FA5F0533;\n --on-dark-surface-transparent-negative: #FF293E33;\n --on-dark-surface-solid-default: #F9F9F9;\n --on-dark-surface-solid-default-hover: #FFFFFFFF;\n --on-dark-surface-solid-default-active: #F5F5F5FF;\n --on-dark-surface-surface-info: #3F81FD;\n --on-dark-surface-info-minor: #082254;\n --on-dark-surface-transparent-info: #3F81FD33;\n --on-dark-surface-solid-primary-hover: #1C1C1CFF;\n --on-dark-surface-solid-primary-active: #121212FF;\n --on-dark-surface-solid-secondary-hover: #303030FF;\n --on-dark-surface-solid-secondary-active: #212121FF;\n --on-dark-surface-solid-tertiary-hover: #404040FF;\n --on-dark-surface-solid-tertiary-active: #303030FF;\n --on-dark-surface-solid-card-hover: #1C1C1CFF;\n --on-dark-surface-solid-card-active: #121212FF;\n --on-dark-surface-transparent-primary-hover: #FFFFFF1F;\n --on-dark-surface-transparent-primary-active: #FFFFFF0A;\n --on-dark-surface-transparent-secondary-hover: #FFFFFF3D;\n --on-dark-surface-transparent-secondary-active: #FFFFFF0F;\n --on-dark-surface-transparent-tertiary-hover: #FFFFFF52;\n --on-dark-surface-transparent-tertiary-active: #FFFFFF24;\n --on-dark-surface-transparent-card-hover: #FFFFFF3D;\n --on-dark-surface-transparent-card-active: #FFFFFF0F;\n --on-dark-surface-accent-hover: #5D95FDFF;\n --on-dark-surface-accent-active: #357BFDFF;\n --on-dark-surface-positive-hover: #1DAF37FF;\n --on-dark-surface-positive-active: #18952FFF;\n --on-dark-surface-warning-hover: #FB7223FF;\n --on-dark-surface-warning-active: #F05B05FF;\n --on-dark-surface-negative-hover: #FF475AFF;\n --on-dark-surface-negative-active: #FF1F35FF;\n --on-light-surface-solid-default: #080808;\n --on-light-surface-solid-primary: #F5F5F5;\n --on-light-surface-solid-primary-brightness: #FFFFFFFF;\n --on-light-surface-solid-secondary: #ECECEC;\n --on-light-surface-solid-tertiary: #DDDDDD;\n --on-light-surface-solid-card: #FFFFFFFF;\n --on-light-surface-solid-card-brightness: #FFFFFFFF;\n --on-light-surface-transparent-primary: #08080808;\n --on-light-surface-transparent-secondary: #0808080F;\n --on-light-surface-transparent-tertiary: #0808081F;\n --on-light-surface-transparent-card: #FFFFFFFF;\n --on-light-surface-transparent-card-brightness: #FFFFFFFF;\n --on-light-surface-accent: #2A72F8;\n --on-light-surface-positive: #1A9E32;\n --on-light-surface-warning: #FA5F05;\n --on-light-surface-negative: #F31B31;\n --on-light-surface-transparent-deep: #080808A3;\n --on-light-surface-accent-minor: #DEE9FF;\n --on-light-surface-accent-minor-hover: #EBF1FFFF;\n --on-light-surface-accent-minor-active: #D6E4FFFF;\n --on-light-surface-transparent-accent: #2A72F81F;\n --on-light-surface-transparent-accent-hover: #2A72F83D;\n --on-light-surface-transparent-accent-active: #2A72F80F;\n --on-light-surface-info-hover: #5D95FDFF;\n --on-light-surface-info-active: #357BFDFF;\n --on-light-surface-positive-minor: #9EFAAF;\n --on-light-surface-positive-minor-hover: #B1FBBFFF;\n --on-light-surface-positive-minor-active: #94F9A7FF;\n --on-light-surface-warning-minor: #FEE2D2;\n --on-light-surface-warning-minor-hover: #FEE9DCFF;\n --on-light-surface-warning-minor-active: #FEDCC8FF;\n --on-light-surface-negative-minor: #FFE0E3;\n --on-light-surface-negative-minor-hover: #FFEBEDFF;\n --on-light-surface-negative-minor-active: #FFD6DAFF;\n --on-light-surface-info-minor-hover: #EBF1FFFF;\n --on-light-surface-info-minor-active: #D6E4FFFF;\n --on-light-surface-transparent-positive-hover: #1A9E323D;\n --on-light-surface-transparent-positive-active: #1A9E320F;\n --on-light-surface-transparent-warning-hover: #FA5F053D;\n --on-light-surface-transparent-warning-active: #FA5F050F;\n --on-light-surface-transparent-negative-hover: #F31B313D;\n --on-light-surface-transparent-negative-active: #F31B310F;\n --on-light-surface-transparent-info-hover: #2A72F83D;\n --on-light-surface-transparent-info-active: #2A72F80F;\n --on-light-surface-transparent-positive: #1A9E321F;\n --on-light-surface-transparent-warning: #FA5F051F;\n --on-light-surface-transparent-negative: #F31B311F;\n --on-light-surface-info: #3F81FD;\n --on-light-surface-info-minor: #DEE9FF;\n --on-light-surface-transparent-info: #2A72F81F;\n --on-light-surface-solid-default-hover: #0D0D0DFF;\n --on-light-surface-solid-default-active: #030303FF;\n --on-light-surface-solid-primary-hover: #FAFAFAFF;\n --on-light-surface-solid-primary-active: #F0F0F0FF;\n --on-light-surface-solid-secondary-hover: #F7F7F7FF;\n --on-light-surface-solid-secondary-active: #E8E8E8FF;\n --on-light-surface-solid-tertiary-hover: #E8E8E8FF;\n --on-light-surface-solid-tertiary-active: #D9D9D9FF;\n --on-light-surface-solid-card-hover: #FFFFFFFF;\n --on-light-surface-solid-card-active: #FFFFFFFF;\n --on-light-surface-transparent-primary-hover: #08080812;\n --on-light-surface-transparent-primary-active: #08080803;\n --on-light-surface-transparent-secondary-hover: #0808081F;\n --on-light-surface-transparent-secondary-active: #0808080A;\n --on-light-surface-transparent-tertiary-hover: #0808083D;\n --on-light-surface-transparent-tertiary-active: #0808080F;\n --on-light-surface-transparent-card-hover: #FFFFFFFF;\n --on-light-surface-transparent-card-active: #FFFFFFFF;\n --on-light-surface-accent-hover: #4886F9FF;\n --on-light-surface-accent-active: #206CF8FF;\n --on-light-surface-positive-hover: #1DAF37FF;\n --on-light-surface-positive-active: #18952FFF;\n --on-light-surface-warning-hover: #FB7223FF;\n --on-light-surface-warning-active: #F05B05FF;\n --on-light-surface-negative-hover: #F5384BFF;\n --on-light-surface-negative-active: #F31228FF;\n --on-light-surface-transparent-deep-hover: #080808C2;\n --on-light-surface-transparent-deep-active: #08080894;\n --inverse-surface-solid-primary-brightness: #FFFFFFFF;\n --inverse-surface-solid-card-brightness: #FFFFFFFF;\n --inverse-surface-transparent-card-brightness: #FFFFFFFF;\n --inverse-surface-positive: #1A9E32;\n --inverse-surface-warning: #FA5F05;\n --inverse-surface-negative: #F31B31;\n --inverse-surface-solid-default-hover: #0D0D0DFF;\n --inverse-surface-solid-default-active: #030303FF;\n --inverse-surface-solid-primary-hover: #FAFAFAFF;\n --inverse-surface-solid-primary-active: #F0F0F0FF;\n --inverse-surface-solid-secondary-hover: #F7F7F7FF;\n --inverse-surface-solid-secondary-active: #E8E8E8FF;\n --inverse-surface-solid-tertiary-hover: #E8E8E8FF;\n --inverse-surface-solid-tertiary-active: #D9D9D9FF;\n --inverse-surface-solid-card-hover: #FFFFFFFF;\n --inverse-surface-solid-card-active: #FFFFFFFF;\n --inverse-surface-transparent-primary-hover: #08080812;\n --inverse-surface-transparent-primary-active: #08080803;\n --inverse-surface-transparent-secondary-hover: #0808081F;\n --inverse-surface-transparent-secondary-active: #0808080A;\n --inverse-surface-transparent-tertiary-hover: #0808083D;\n --inverse-surface-transparent-tertiary-active: #0808080F;\n --inverse-surface-transparent-card-hover: #FFFFFFFF;\n --inverse-surface-transparent-card-active: #FFFFFFFF;\n --inverse-surface-accent-hover: #4886F9FF;\n --inverse-surface-accent-active: #206CF8FF;\n --inverse-surface-positive-hover: #1DAF37FF;\n --inverse-surface-positive-active: #18952FFF;\n --inverse-surface-warning-hover: #FB7223FF;\n --inverse-surface-warning-active: #F05B05FF;\n --inverse-surface-negative-hover: #F5384BFF;\n --inverse-surface-negative-active: #F31228FF;\n --inverse-surface-clear-hover: #FFFFFFFF;\n --inverse-surface-clear-active: #FFFFFFFF;\n --inverse-surface-solid-card: #FFFFFFFF;\n --inverse-surface-solid-primary: #F5F5F5;\n --inverse-surface-solid-secondary: #ECECEC;\n --inverse-surface-solid-tertiary: #DDDDDD;\n --inverse-surface-solid-default: #080808;\n --inverse-surface-transparent-card: #FFFFFFFF;\n --inverse-surface-transparent-primary: #08080808;\n --inverse-surface-transparent-secondary: #0808080F;\n --inverse-surface-transparent-tertiary: #0808081F;\n --inverse-surface-transparent-deep: #080808A3;\n --inverse-surface-transparent-deep-hover: #080808C2;\n --inverse-surface-transparent-deep-active: #08080894;\n --inverse-surface-clear: #00000000;\n --inverse-surface-accent: #2A72F8;\n --inverse-surface-accent-minor: #DEE9FF;\n --inverse-surface-accent-minor-hover: #EBF1FFFF;\n --inverse-surface-accent-minor-active: #D6E4FFFF;\n --inverse-surface-transparent-accent: #2A72F81F;\n --inverse-surface-transparent-accent-hover: #2A72F83D;\n --inverse-surface-transparent-accent-active: #2A72F80F;\n --inverse-surface-info: #2A72F8;\n --inverse-surface-info-hover: #4886F9FF;\n --inverse-surface-info-active: #206CF8FF;\n --inverse-surface-positive-minor: #9EFAAF;\n --inverse-surface-positive-minor-hover: #B1FBBFFF;\n --inverse-surface-positive-minor-active: #94F9A7FF;\n --inverse-surface-warning-minor: #FEE2D2;\n --inverse-surface-warning-minor-hover: #FEE9DCFF;\n --inverse-surface-warning-minor-active: #FEDCC8FF;\n --inverse-surface-negative-minor: #FFE0E3;\n --inverse-surface-negative-minor-hover: #FFEBEDFF;\n --inverse-surface-negative-minor-active: #FFD6DAFF;\n --inverse-surface-info-minor: #DEE9FF;\n --inverse-surface-info-minor-hover: #EBF1FFFF;\n --inverse-surface-info-minor-active: #D6E4FFFF;\n --inverse-surface-transparent-positive: #1A9E321F;\n --inverse-surface-transparent-positive-hover: #1A9E323D;\n --inverse-surface-transparent-positive-active: #1A9E320F;\n --inverse-surface-transparent-warning: #FA5F051F;\n --inverse-surface-transparent-warning-hover: #FA5F053D;\n --inverse-surface-transparent-warning-active: #FA5F050F;\n --inverse-surface-transparent-negative: #F31B311F;\n --inverse-surface-transparent-negative-hover: #F31B313D;\n --inverse-surface-transparent-negative-active: #F31B310F;\n --inverse-surface-transparent-info: #2A72F81F;\n --inverse-surface-transparent-info-hover: #2A72F83D;\n --inverse-surface-transparent-info-active: #2A72F80F;\n --background-primary: #080808;\n --background-primary-brightness: #171717FF;\n --dark-background-primary: #080808;\n --light-background-primary: #F9F9F9;\n --inverse-background-primary-brightness: #FFFFFFFF;\n --inverse-background-primary: #F9F9F9;\n --overlay-soft: #0808088F;\n --overlay-hard: #080808F5;\n --overlay-blur: #08080847;\n --on-dark-overlay-soft: #0808088F;\n --on-dark-overlay-hard: #080808F5;\n --on-dark-overlay-blur: #08080847;\n --on-light-overlay-soft: #F9F9F98F;\n --on-light-overlay-hard: #F9F9F9F5;\n --on-light-overlay-blur: #F9F9F947;\n --inverse-overlay-soft: #F9F9F98F;\n --inverse-overlay-hard: #F9F9F9F5;\n --inverse-overlay-blur: #F9F9F947;\n --outline-primary-hover: #303030FF;\n --outline-primary-active: #212121FF;\n --outline-secondary-hover: #595959FF;\n --outline-secondary-active: #4A4A4AFF;\n --outline-tertiary-hover: #7A7A7AFF;\n --outline-tertiary-active: #6B6B6BFF;\n --outline-default-hover: #FFFFFFFF;\n --outline-default-active: #F5F5F5FF;\n --outline-transparent-primary: #FFFFFF1F;\n --outline-transparent-primary-hover: #FFFFFF3D;\n --outline-transparent-primary-active: #FFFFFF0F;\n --outline-transparent-secondary: #FFFFFF33;\n --outline-transparent-secondary-hover: #FFFFFF52;\n --outline-transparent-secondary-active: #FFFFFF24;\n --outline-transparent-tertiary: #FFFFFF66;\n --outline-transparent-tertiary-hover: #FFFFFF85;\n --outline-transparent-tertiary-active: #FFFFFF57;\n --outline-transparent-clear: #FFFFFF00;\n --outline-transparent-clear-hover: #FFFFFF00;\n --outline-transparent-clear-active: #FFFFFF00;\n --outline-accent: #3F81FD;\n --outline-accent-hover: #5D95FDFF;\n --outline-accent-active: #357BFDFF;\n --outline-accent-minor: #1549AB;\n --outline-accent-minor-hover: #1852BFFF;\n --outline-accent-minor-active: #1446A3FF;\n --outline-transparent-accent: #3F81FD47;\n --outline-transparent-accent-hover: #3F82FD66;\n --outline-transparent-accent-active: #3F82FD38;\n --outline-positive: #24B23E;\n --outline-positive-hover: #28C344FF;\n --outline-positive-active: #23A93BFF;\n --outline-warning: #FF7024;\n --outline-warning-hover: #FF8442FF;\n --outline-warning-active: #FF6A1AFF;\n --outline-negative: #FF3D51;\n --outline-negative-hover: #FF5C6CFF;\n --outline-negative-active: #FF3347FF;\n --outline-info-hover: #70A2FFFF;\n --outline-info-active: #4788FFFF;\n --outline-positive-minor: #095C18;\n --outline-positive-minor-hover: #0B6F1DFF;\n --outline-positive-minor-active: #085416FF;\n --outline-warning-minor: #85380C;\n --outline-warning-minor-hover: #95400EFF;\n --outline-warning-minor-active: #79340BFF;\n --outline-negative-minor: #9C1422;\n --outline-negative-minor-hover: #B01726FF;\n --outline-negative-minor-active: #951320FF;\n --outline-info-minor-hover: #1852BFFF;\n --outline-info-minor-active: #1446A3FF;\n --outline-transparent-positive-hover: #1A9E3266;\n --outline-transparent-positive-active: #1A9E3238;\n --outline-transparent-warning-hover: #FA5F0566;\n --outline-transparent-warning-active: #FA5F0538;\n --outline-negative-transparent-hover: #CCCCCCFF;\n --outline-negative-transparent-active: #E6E6E6FF;\n --outline-transparent-info-hover: #3F82FD66;\n --outline-transparent-info-active: #3F82FD38;\n --outline-transparent-positive: #1A9E3247;\n --outline-transparent-warning: #FA5F0547;\n --outline-transparent-negative: #F31B3133;\n --outline-transparent-negative-hover: #F31B3152;\n --outline-transparent-negative-active: #F31B3124;\n --outline-info-minor: #1549AB;\n --outline-transparent-info: #3F81FD47;\n --outline-info: #528EFF;\n --outline-solid-primary: #262626;\n --outline-solid-primary-hover: #FFFFFFFF;\n --outline-solid-primary-active: #ADADADFF;\n --outline-solid-secondary: #4E4E4E;\n --outline-solid-secondary-hover: #FFFFFFFF;\n --outline-solid-secondary-active: #8C8C8CFF;\n --outline-solid-tertiary: #707070;\n --outline-solid-tertiary-hover: #FFFFFFFF;\n --outline-solid-tertiary-active: #737373FF;\n --outline-solid-default: #F9F9F9;\n --outline-solid-default-hover: #C7C7C7FF;\n --outline-solid-default-active: #E0E0E0FF;\n --on-dark-outline-primary-hover: #303030FF;\n --on-dark-outline-primary-active: #212121FF;\n --on-dark-outline-secondary-hover: #595959FF;\n --on-dark-outline-secondary-active: #4A4A4AFF;\n --on-dark-outline-tertiary-hover: #7A7A7AFF;\n --on-dark-outline-tertiary-active: #6B6B6BFF;\n --on-dark-outline-default-hover: #FFFFFFFF;\n --on-dark-outline-default-active: #F5F5F5FF;\n --on-dark-outline-transparent-primary-hover: #FFFFFF3D;\n --on-dark-outline-transparent-primary-active: #FFFFFF0F;\n --on-dark-outline-transparent-secondary-hover: #FFFFFF52;\n --on-dark-outline-transparent-secondary-active: #FFFFFF24;\n --on-dark-outline-transparent-tertiary-hover: #FFFFFF85;\n --on-dark-outline-transparent-tertiary-active: #FFFFFF57;\n --on-dark-outline-accent-hover: #5D95FDFF;\n --on-dark-outline-accent-active: #357BFDFF;\n --on-dark-outline-accent-minor-hover: #1852BFFF;\n --on-dark-outline-accent-minor-active: #1446A3FF;\n --on-dark-outline-transparent-accent-hover: #3F82FD66;\n --on-dark-outline-transparent-accent-active: #3F82FD38;\n --on-dark-outline-positive-hover: #28C344FF;\n --on-dark-outline-positive-active: #23A93BFF;\n --on-dark-outline-warning-hover: #FF8442FF;\n --on-dark-outline-warning-active: #FF6A1AFF;\n --on-dark-outline-negative-hover: #FF5C6CFF;\n --on-dark-outline-negative-active: #FF3347FF;\n --on-dark-outline-info-hover: #70A2FFFF;\n --on-dark-outline-info-active: #4788FFFF;\n --on-dark-outline-positive-minor-hover: #0B6F1DFF;\n --on-dark-outline-positive-minor-active: #085416FF;\n --on-dark-outline-warning-minor-hover: #95400EFF;\n --on-dark-outline-warning-minor-active: #79340BFF;\n --on-dark-outline-negative-minor-hover: #B01726FF;\n --on-dark-outline-negative-minor-active: #951320FF;\n --on-dark-outline-info-minor-hover: #1852BFFF;\n --on-dark-outline-info-minor-active: #1446A3FF;\n --on-dark-outline-transparent-positive-hover: #1A9E3266;\n --on-dark-outline-transparent-positive-active: #1A9E3238;\n --on-dark-outline-transparent-warning-hover: #FA5F0566;\n --on-dark-outline-transparent-warning-active: #FA5F0538;\n --on-dark-outline-negative-transparent-hover: #FF293E66;\n --on-dark-outline-negative-transparent-active: #FF293E38;\n --on-dark-outline-transparent-info-hover: #3F82FD66;\n --on-dark-outline-transparent-info-active: #3F82FD38;\n --on-dark-outline-transparent-primary: #FFFFFF1F;\n --on-dark-outline-transparent-secondary: #FFFFFF33;\n --on-dark-outline-transparent-tertiary: #FFFFFF66;\n --on-dark-outline-accent: #3F81FD;\n --on-dark-outline-accent-minor: #1549AB;\n --on-dark-outline-transparent-accent: #3F81FD47;\n --on-dark-outline-positive: #24B23E;\n --on-dark-outline-warning: #FF7024;\n --on-dark-outline-negative: #FF3D51;\n --on-dark-outline-warning-minor: #85380C;\n --on-dark-outline-negative-minor: #9C1422;\n --on-dark-outline-transparent-positive: #1A9E3247;\n --on-dark-outline-transparent-warning: #FA5F0547;\n --on-dark-outline-negative-transparent: #FF293E47;\n --on-dark-outline-positive-minor: #095C18;\n --on-dark-outline-info-minor: #1549AB;\n --on-dark-outline-info: #528EFF;\n --on-dark-outline-transparent-info: #3F81FD47;\n --on-dark-outline-solid-primary: #262626;\n --on-dark-outline-solid-primary-hover: #FFFFFFFF;\n --on-dark-outline-solid-primary-active: #ADADADFF;\n --on-dark-outline-solid-secondary: #4E4E4E;\n --on-dark-outline-solid-secondary-hover: #FFFFFFFF;\n --on-dark-outline-solid-secondary-active: #8C8C8CFF;\n --on-dark-outline-solid-tertiary: #707070;\n --on-dark-outline-solid-tertiary-hover: #FFFFFFFF;\n --on-dark-outline-solid-tertiary-active: #737373FF;\n --on-dark-outline-solid-default: #F9F9F9;\n --on-dark-outline-solid-default-hover: #C7C7C7FF;\n --on-dark-outline-solid-default-active: #E0E0E0FF;\n --on-light-outline-primary-hover: #E8E8E8FF;\n --on-light-outline-primary-active: #D9D9D9FF;\n --on-light-outline-secondary-hover: #9E9E9EFF;\n --on-light-outline-secondary-active: #8F8F8FFF;\n --on-light-outline-tertiary-hover: #7A7A7AFF;\n --on-light-outline-tertiary-active: #6B6B6BFF;\n --on-light-outline-default-hover: #0D0D0DFF;\n --on-light-outline-default-active: #030303FF;\n --on-light-outline-transparent-primary: #08080833;\n --on-light-outline-transparent-primary-hover: #08080852;\n --on-light-outline-transparent-primary-active: #08080824;\n --on-light-outline-transparent-secondary: #08080866;\n --on-light-outline-transparent-secondary-hover: #08080885;\n --on-light-outline-transparent-secondary-active: #08080857;\n --on-light-outline-transparent-tertiary: #0808088F;\n --on-light-outline-transparent-tertiary-hover: #080808AD;\n --on-light-outline-transparent-tertiary-active: #08080880;\n --on-light-outline-accent: #2A72F8;\n --on-light-outline-accent-hover: #4886F9FF;\n --on-light-outline-accent-active: #206CF8FF;\n --on-light-outline-accent-minor: #8BB2FC;\n --on-light-outline-accent-minor-hover: #A1C1FDFF;\n --on-light-outline-accent-minor-active: #83ADFCFF;\n --on-light-outline-transparent-accent: #2A72F833;\n --on-light-outline-transparent-accent-hover: #2A72F852;\n --on-light-outline-transparent-accent-active: #2A72F824;\n --on-light-outline-positive: #1A9E32;\n --on-light-outline-positive-hover: #1DAF37FF;\n --on-light-outline-positive-active: #18952FFF;\n --on-light-outline-warning: #FA5F05;\n --on-light-outline-warning-hover: #FB7223FF;\n --on-light-outline-warning-active: #F05B05FF;\n --on-light-outline-negative: #F31B31;\n --on-light-outline-negative-hover: #F5384BFF;\n --on-light-outline-negative-active: #F31228FF;\n --on-light-outline-info-hover: #5D95FDFF;\n --on-light-outline-info-active: #357BFDFF;\n --on-light-outline-positive-minor: #28D247;\n --on-light-outline-positive-minor-hover: #36D954FF;\n --on-light-outline-positive-minor-active: #26C944FF;\n --on-light-outline-warning-minor: #FD9C68;\n --on-light-outline-warning-minor-hover: #FDA97CFF;\n --on-light-outline-warning-minor-active: #FD965EFF;\n --on-light-outline-negative-minor: #FF8F9A;\n --on-light-outline-negative-minor-hover: #FFA3ACFF;\n --on-light-outline-negative-minor-active: #FF8591FF;\n --on-light-outline-info-minor-hover: #A1C1FDFF;\n --on-light-outline-info-minor-active: #83ADFCFF;\n --on-light-outline-transparent-positive: #1A9E3233;\n --on-light-outline-transparent-positive-hover: #1A9E3252;\n --on-light-outline-transparent-positive-active: #1A9E3224;\n --on-light-outline-transparent-warning: #E8570233;\n --on-light-outline-transparent-warning-hover: #E8570252;\n --on-light-outline-transparent-warning-active: #E8570224;\n --on-light-outline-negative-transparent: #F31B3133;\n --on-light-outline-negative-transparent-hover: #F31B3152;\n --on-light-outline-negative-transparent-active: #F31B3124;\n --on-light-outline-transparent-info-hover: #2A72F852;\n --on-light-outline-transparent-info-active: #2A72F824;\n --on-light-outline-info: #3F81FD;\n --on-light-outline-info-minor: #8BB2FC;\n --on-light-outline-transparent-info: #2A72F833;\n --on-light-outline-solid-tertiary: #707070;\n --on-light-outline-solid-tertiary-hover: #FFFFFFFF;\n --on-light-outline-solid-tertiary-active: #737373FF;\n --on-light-outline-solid-default: #080808;\n --on-light-outline-solid-default-hover: #FFFFFFFF;\n --on-light-outline-solid-default-active: #C7C7C7FF;\n --on-light-outline-solid-primary: #DDDDDD;\n --on-light-outline-solid-primary-hover: #ABABABFF;\n --on-light-outline-solid-primary-active: #C4C4C4FF;\n --on-light-outline-solid-secondary: #949494;\n --on-light-outline-solid-secondary-hover: #FFFFFFFF;\n --on-light-outline-solid-secondary-active: #575757FF;\n --inverse-outline-primary-hover: #ABABABFF;\n --inverse-outline-primary-active: #C4C4C4FF;\n --inverse-outline-secondary-hover: #FFFFFFFF;\n --inverse-outline-secondary-active: #575757FF;\n --inverse-outline-tertiary-hover: #FFFFFFFF;\n --inverse-outline-tertiary-active: #737373FF;\n --inverse-outline-default-hover: #FFFFFFFF;\n --inverse-outline-default-active: #C7C7C7FF;\n --inverse-outline-transparent-primary: #08080833;\n --inverse-outline-transparent-primary-hover: #080808FF;\n --inverse-outline-transparent-primary-active: #0808083D;\n --inverse-outline-transparent-secondary: #08080866;\n --inverse-outline-transparent-secondary-hover: #080808FF;\n --inverse-outline-transparent-secondary-active: #0808087A;\n --inverse-outline-transparent-tertiary: #0808088F;\n --inverse-outline-transparent-tertiary-hover: #080808FF;\n --inverse-outline-transparent-tertiary-active: #080808AB;\n --inverse-outline-transparent-clear: #FFFFFF00;\n --inverse-outline-transparent-clear-hover: #FFFFFFFF;\n --inverse-outline-transparent-clear-active: #FFFFFFFF;\n --inverse-outline-accent: #2A72F8;\n --inverse-outline-accent-hover: #79A7FBFF;\n --inverse-outline-accent-active: #0D5FF8FF;\n --inverse-outline-accent-minor: #8BB2FC;\n --inverse-outline-accent-minor-hover: #DCE8FEFF;\n --inverse-outline-accent-minor-active: #6FA0FBFF;\n --inverse-outline-transparent-accent: #2A72F833;\n --inverse-outline-transparent-accent-hover: #2A72F8FF;\n --inverse-outline-transparent-accent-active: #2A72F83D;\n --inverse-outline-positive: #1A9E32;\n --inverse-outline-positive-hover: #1EB83AFF;\n --inverse-outline-positive-active: #15842AFF;\n --inverse-outline-warning: #FA5F05;\n --inverse-outline-warning-hover: #FB7223FF;\n --inverse-outline-warning-active: #DC5304FF;\n --inverse-outline-negative: #F31B31;\n --inverse-outline-negative-hover: #F5384BFF;\n --inverse-outline-negative-active: #E40C22FF;\n --inverse-outline-info: #2A72F8;\n --inverse-outline-info-hover: #79A7FBFF;\n --inverse-outline-info-active: #0D5FF8FF;\n --inverse-outline-positive-minor: #28D247;\n --inverse-outline-positive-minor-hover: #3EDA5BFF;\n --inverse-outline-positive-minor-active: #23B83EFF;\n --inverse-outline-warning-minor: #FD9C68;\n --inverse-outline-warning-minor-hover: #FDB086FF;\n --inverse-outline-warning-minor-active: #FC884AFF;\n --inverse-outline-negative-minor: #FF8F9A;\n --inverse-outline-negative-minor-hover: #FFADB6FF;\n --inverse-outline-negative-minor-active: #FF707EFF;\n --inverse-outline-info-minor: #8BB2FC;\n --inverse-outline-info-minor-hover: #DCE8FEFF;\n --inverse-outline-info-minor-active: #6FA0FBFF;\n --inverse-outline-transparent-positive: #1A9E3233;\n --inverse-outline-transparent-positive-hover: #1A9E32FF;\n --inverse-outline-transparent-positive-active: #1A9E323D;\n --inverse-outline-transparent-warning: #FA5F0533;\n --inverse-outline-transparent-warning-hover: #FA5F05FF;\n --inverse-outline-transparent-warning-active: #FA5F053D;\n --inverse-outline-transparent-negative: #F31B3133;\n --inverse-outline-transparent-negative-hover: #F31B31FF;\n --inverse-outline-transparent-negative-active: #F31B313D;\n --inverse-outline-transparent-info: #2A72F833;\n --inverse-outline-transparent-info-hover: #2A72F8FF;\n --inverse-outline-transparent-info-active: #2A72F83D;\n --inverse-outline-solid-primary: #DDDDDD;\n --inverse-outline-solid-primary-hover: #ABABABFF;\n --inverse-outline-solid-primary-active: #C4C4C4FF;\n --inverse-outline-solid-secondary: #949494;\n --inverse-outline-solid-secondary-hover: #FFFFFFFF;\n --inverse-outline-solid-secondary-active: #575757FF;\n --inverse-outline-solid-tertiary: #707070;\n --inverse-outline-solid-tertiary-hover: #FFFFFFFF;\n --inverse-outline-solid-tertiary-active: #737373FF;\n --inverse-outline-solid-default: #080808;\n --inverse-outline-solid-default-hover: #FFFFFFFF;\n --inverse-outline-solid-default-active: #C7C7C7FF;\n color: var(--text-primary);\n background-color: var(--background-primary);\n --plasma-colors-white-primary: var(--on-dark-text-primary);\n --plasma-colors-white-secondary: var(--on-dark-text-secondary);\n --plasma-colors-white-tertiary: var(--on-dark-text-tertiary);\n --plasma-colors-black-primary: var(--on-light-text-primary);\n --plasma-colors-black-secondary: var(--on-light-text-secondary);\n --plasma-colors-black-tertiary: var(--on-light-text-tertiary);\n --plasma-colors-button-black: var(--on-light-surface-solid-default);\n --plasma-colors-button-black-secondary: var(--on-light-surface-transparent-secondary);\n --plasma-colors-button-white: var(--on-dark-surface-solid-default);\n --plasma-colors-button-white-secondary: var(--on-dark-surface-transparent-secondary);\n --plasma-colors-text: var(--text-primary);\n --plasma-colors-primary: var(--text-primary);\n --plasma-colors-secondary: var(--text-secondary);\n --plasma-colors-tertiary: var(--text-tertiary);\n --plasma-colors-paragraph: var(--text-paragraph);\n --plasma-colors-background: var(--background-primary);\n --plasma-colors-accent: var(--text-accent);\n --plasma-colors-success: var(--text-positive);\n --plasma-colors-warning: var(--text-warning);\n --plasma-colors-critical: var(--text-negative);\n --plasma-colors-overlay: var(--overlay-soft);\n --plasma-colors-surface-liquid01: var(--surface-transparent-primary);\n --plasma-colors-surface-liquid02: var(--surface-transparent-secondary);\n --plasma-colors-surface-liquid03: var(--surface-transparent-tertiary);\n --plasma-colors-surface-solid01: var(--surface-solid-primary);\n --plasma-colors-surface-solid02: var(--surface-solid-secondary);\n --plasma-colors-surface-solid03: var(--surface-solid-tertiary);\n --plasma-colors-surface-card: var(--surface-transparent-card);\n --plasma-colors-button-secondary: var(--surface-transparent-secondary);\n --plasma-colors-button-accent: var(--text-accent);\n --plasma-colors-button-success: var(--surface-positive);\n --plasma-colors-button-warning: var(--surface-warning);\n --plasma-colors-button-critical: var(--surface-negative);\n}\n\n:root {\n --text-accent-gradient: linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --text-accent-gradient-hover: #CCCCCCFF;\n --text-accent-gradient-active: #E6E6E6FF;\n --on-dark-text-accent-gradient: linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --on-dark-text-accent-gradient-hover: #CCCCCCFF;\n --on-dark-text-accent-gradient-active: #E6E6E6FF;\n --on-light-text-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-light-text-accent-gradient-hover: #CCCCCCFF;\n --on-light-text-accent-gradient-active: #E6E6E6FF;\n --inverse-text-accent-gradient-hover: #CCCCCCFF;\n --inverse-text-accent-gradient-active: #E6E6E6FF;\n --inverse-text-accent-gradient: linear-gradient(94deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%),linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --surface-accent-gradient-hover: #FFFFFFFF;\n --surface-accent-gradient-active: #FFFFFFFF;\n --surface-skeleton-gradient: linear-gradient(90deg, #FFFFFF17 0%, #FFFFFF14 6.25%, #FFFFFF0D 12.5%, #FFFFFF03 25%, #FFFFFF0D 37.5%, #FFFFFF14 43.75%, #FFFFFF17 50%, #FFFFFF14 56.25%, #FFFFFF0D 62.5%, #FFFFFF03 75%, #FFFFFF0D 87.5%, #FFFFFF14 93.75%, #FFFFFF17 100%);\n --surface-skeleton-gradient-hover: #FFFFFFFF;\n --surface-skeleton-gradient-active: #FFFFFFFF;\n --surface-skeleton-deep-gradient: linear-gradient(90deg, #FFFFFF5C 0%, #FFFFFF52 6.25%, #FFFFFF33 12.5%, #FFFFFF0A 25%, #FFFFFF33 37.5%, #FFFFFF52 43.75%, #FFFFFF5C 50%, #FFFFFF14 56.25%, #FFFFFF33 62.5%, #FFFFFF0A 75%, #FFFFFF33 87.5%, #FFFFFF52 93.75%, #FFFFFF5C 100%);\n --surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --on-dark-surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-dark-surface-accent-gradient-hover: #FFFFFFFF;\n --on-dark-surface-accent-gradient-active: #FFFFFFFF;\n --on-dark-surface-skeleton-gradient: linear-gradient(90deg, #FFFFFF17 0%, #FFFFFF14 6.25%, #FFFFFF0D 12.5%, #FFFFFF03 25%, #FFFFFF0D 37.5%, #FFFFFF14 43.75%, #FFFFFF17 50%, #FFFFFF14 56.25%, #FFFFFF0D 62.5%, #FFFFFF03 75%, #FFFFFF0D 87.5%, #FFFFFF14 93.75%, #FFFFFF17 100%);\n --on-dark-surface-skeleton-gradient-hover: #FFFFFFFF;\n --on-dark-surface-skeleton-gradient-active: #FFFFFFFF;\n --on-dark-surface-skeleton-deep-gradient: linear-gradient(90deg, #FFFFFF5C 0%, #FFFFFF52 6.25%, #FFFFFF33 12.5%, #FFFFFF0A 25%, #FFFFFF33 37.5%, #FFFFFF52 43.75%, #FFFFFF5C 50%, #FFFFFF14 56.25%, #FFFFFF33 62.5%, #FFFFFF0A 75%, #FFFFFF33 87.5%, #FFFFFF52 93.75%, #FFFFFF5C 100%);\n --on-dark-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --on-dark-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --on-light-surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-light-surface-accent-gradient-hover: #FFFFFFFF;\n --on-light-surface-accent-gradient-active: #FFFFFFFF;\n --on-light-surface-skeleton-gradient: linear-gradient(90deg, #08080817 0%, #08080814 6.25%, #0808080D 12.5%, #08080803 25%, #0808080D 37.5%, #08080814 43.75%, #08080817 50%, #08080814 56.25%, #0808080D 62.5%, #08080803 75%, #0808080D 87.5%, #08080814 93.75%, #08080817 100%);\n --on-light-surface-skeleton-gradient-hover: #FFFFFFFF;\n --on-light-surface-skeleton-gradient-active: #FFFFFFFF;\n --on-light-surface-skeleton-deep-gradient: linear-gradient(90deg, #0808085C 0%, #08080852 6.25%, #08080833 12.5%, #0808080A 25%, #08080833 37.5%, #08080852 43.75%, #0808085C 50%, #08080814 56.25%, #08080833 62.5%, #0808080A 75%, #08080833 87.5%, #08080852 93.75%, #0808085C 100%);\n --on-light-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --on-light-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --inverse-surface-accent-gradient-hover: #FFFFFFFF;\n --inverse-surface-accent-gradient-active: #FFFFFFFF;\n --inverse-surface-accent-gradient: linear-gradient(94deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --inverse-surface-skeleton-gradient: linear-gradient(90deg, #08080817 0%, #08080814 6.25%, #0808080D 12.5%, #08080803 25%, #0808080D 37.5%, #08080814 43.75%, #08080817 50%, #08080814 56.25%, #0808080D 62.5%, #08080803 75%, #0808080D 87.5%, #08080814 93.75%, #08080817 100%);\n --inverse-surface-skeleton-gradient-hover: #FFFFFFFF;\n --inverse-surface-skeleton-gradient-active: #FFFFFFFF;\n --inverse-surface-skeleton-deep-gradient: linear-gradient(90deg, #0808085C 0%, #08080852 6.25%, #08080833 12.5%, #0808080A 25%, #08080833 37.5%, #08080852 43.75%, #0808085C 50%, #08080814 56.25%, #08080833 62.5%, #0808080A 75%, #08080833 87.5%, #08080852 93.75%, #0808085C 100%);\n --inverse-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --inverse-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n}\n\n:root {\n --shadow-down-soft-s: 0px 4px 14px -4px #08080814, 0px 1px 4px -1px #0000000A;\n --shadow-down-soft-m: 0px 24px 48px -8px #00000014;\n --shadow-down-soft-l: 0px 60px 112px -8px #00000014;\n --shadow-down-hard-s: 0px 4px 12px -3px #08080829, 0px 1px 4px -2px #00000014;\n --shadow-down-hard-m: 0px 16px 32px -8px #0000003D;\n --shadow-down-hard-l: 0px 60px 112px -8px #00000066;\n --shadow-up-soft-s: 0px -4px 14px -4px #08080814, 0px -1px 4px -1px #00000008;\n --shadow-up-soft-m: 0px -24px 48px -8px #00000014;\n --shadow-up-soft-l: 0px -60px 112px -8px #00000014;\n --shadow-up-hard-s: 0px -4px 12px -3px #08080833, 0px -1px 4px -1px #00000008;\n --shadow-up-hard-m: 0px -16px 32px -8px #0000003D;\n --shadow-up-hard-l: 0px -60px 112px -8px #00000066;\n}\n\n:root {\n --border-radius-xxs: 4px;\n --border-radius-xs: 6px;\n --border-radius-s: 8px;\n --border-radius-m: 12px;\n --border-radius-l: 16px;\n --border-radius-xl: 20px;\n --border-radius-xxl: 32px;\n}\n\n:root {\n font-size: 16px;\n --plasma-typo-overflow-wrap: break-word;\n --plasma-typo-hyphens: auto;\n --plasma-typo-display-font-family: 'SB Sans Display', sans-serif;\n --plasma-typo-body-font-family: 'SB Sans Text', sans-serif;\n --plasma-typo-header-font-family: 'SB Sans Display', sans-serif;\n --plasma-typo-text-font-family: 'SB Sans Text', sans-serif;\n --plasma-typo-dspl-l-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-l-letter-spacing: normal;\n --plasma-typo-dspl-l-font-style: normal;\n --plasma-typo-dspl-l-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-l-bold-letter-spacing: normal;\n --plasma-typo-dspl-l-bold-font-style: normal;\n --plasma-typo-dspl-m-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-m-letter-spacing: normal;\n --plasma-typo-dspl-m-font-style: normal;\n --plasma-typo-dspl-m-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-m-bold-letter-spacing: normal;\n --plasma-typo-dspl-m-bold-font-style: normal;\n --plasma-typo-dspl-s-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-s-letter-spacing: normal;\n --plasma-typo-dspl-s-font-style: normal;\n --plasma-typo-dspl-s-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-s-bold-letter-spacing: normal;\n --plasma-typo-dspl-s-bold-font-style: normal;\n --plasma-typo-h1-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h1-letter-spacing: normal;\n --plasma-typo-h1-font-style: normal;\n --plasma-typo-h1-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h1-bold-letter-spacing: normal;\n --plasma-typo-h1-bold-font-style: normal;\n --plasma-typo-h2-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h2-letter-spacing: normal;\n --plasma-typo-h2-font-style: normal;\n --plasma-typo-h2-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h2-bold-letter-spacing: normal;\n --plasma-typo-h2-bold-font-style: normal;\n --plasma-typo-h3-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h3-letter-spacing: normal;\n --plasma-typo-h3-font-style: normal;\n --plasma-typo-h3-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h3-bold-letter-spacing: normal;\n --plasma-typo-h3-bold-font-style: normal;\n --plasma-typo-h4-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h4-letter-spacing: normal;\n --plasma-typo-h4-font-style: normal;\n --plasma-typo-h4-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h4-bold-letter-spacing: normal;\n --plasma-typo-h4-bold-font-style: normal;\n --plasma-typo-h5-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h5-letter-spacing: normal;\n --plasma-typo-h5-font-style: normal;\n --plasma-typo-h5-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h5-bold-letter-spacing: normal;\n --plasma-typo-h5-bold-font-style: normal;\n --plasma-typo-body-l-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-l-letter-spacing: -0.02em;\n --plasma-typo-body-l-font-style: normal;\n --plasma-typo-body-l-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-l-bold-letter-spacing: -0.02em;\n --plasma-typo-body-l-bold-font-style: normal;\n --plasma-typo-body-m-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-m-letter-spacing: -0.02em;\n --plasma-typo-body-m-font-style: normal;\n --plasma-typo-body-m-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-m-bold-letter-spacing: -0.02em;\n --plasma-typo-body-m-bold-font-style: normal;\n --plasma-typo-body-s-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-s-letter-spacing: -0.02em;\n --plasma-typo-body-s-font-style: normal;\n --plasma-typo-body-s-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-s-bold-letter-spacing: -0.02em;\n --plasma-typo-body-s-bold-font-style: normal;\n --plasma-typo-body-xs-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xs-letter-spacing: -0.02em;\n --plasma-typo-body-xs-font-style: normal;\n --plasma-typo-body-xs-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xs-bold-letter-spacing: -0.02em;\n --plasma-typo-body-xs-bold-font-style: normal;\n --plasma-typo-body-xxs-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xxs-letter-spacing: -0.02em;\n --plasma-typo-body-xxs-font-style: normal;\n --plasma-typo-body-xxs-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xxs-bold-letter-spacing: -0.02em;\n --plasma-typo-body-xxs-bold-font-style: normal;\n --plasma-typo-text-l-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-l-letter-spacing: -0.02em;\n --plasma-typo-text-l-font-style: normal;\n --plasma-typo-text-l-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-l-bold-letter-spacing: -0.02em;\n --plasma-typo-text-l-bold-font-style: normal;\n --plasma-typo-text-m-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-m-letter-spacing: -0.02em;\n --plasma-typo-text-m-font-style: normal;\n --plasma-typo-text-m-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-m-bold-letter-spacing: -0.02em;\n --plasma-typo-text-m-bold-font-style: normal;\n --plasma-typo-text-s-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-s-letter-spacing: -0.02em;\n --plasma-typo-text-s-font-style: normal;\n --plasma-typo-text-s-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-s-bold-letter-spacing: -0.02em;\n --plasma-typo-text-s-bold-font-style: normal;\n --plasma-typo-text-xs-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-xs-letter-spacing: -0.02em;\n --plasma-typo-text-xs-font-style: normal;\n --plasma-typo-text-xs-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-xs-bold-letter-spacing: -0.02em;\n --plasma-typo-text-xs-bold-font-style: normal;\n}\n\n@media (max-width: 559px) {\n :root {\n --plasma-typo-dspl-l-font-size: 5.5rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 5.75rem;\n --plasma-typo-dspl-l-bold-font-size: 5.5rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 5.75rem;\n --plasma-typo-dspl-m-font-size: 3.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 3.875rem;\n --plasma-typo-dspl-m-bold-font-size: 3.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 3.875rem;\n --plasma-typo-dspl-s-font-size: 2.5rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 2.875rem;\n --plasma-typo-dspl-s-bold-font-size: 2.5rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 2.875rem;\n --plasma-typo-h1-font-size: 1.75rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 2.125rem;\n --plasma-typo-h1-bold-font-size: 1.75rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 2.125rem;\n --plasma-typo-h2-font-size: 1.5rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 1.875rem;\n --plasma-typo-h2-bold-font-size: 1.5rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 1.875rem;\n --plasma-typo-h3-font-size: 1.25rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.625rem;\n --plasma-typo-h3-bold-font-size: 1.25rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.625rem;\n --plasma-typo-h4-font-size: 1.125rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.5rem;\n --plasma-typo-h4-bold-font-size: 1.125rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.5rem;\n --plasma-typo-h5-font-size: 1rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.375rem;\n --plasma-typo-h5-bold-font-size: 1rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.375rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.125rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 1.625rem;\n --plasma-typo-text-l-bold-font-size: 1.125rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 1.625rem;\n --plasma-typo-text-m-font-size: 1rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.5rem;\n --plasma-typo-text-m-bold-font-size: 1rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.5rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}\n\n@media (min-width: 560px) and (max-width: 959px) {\n :root {\n --plasma-typo-dspl-l-font-size: 7rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 7rem;\n --plasma-typo-dspl-l-bold-font-size: 7rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 7rem;\n --plasma-typo-dspl-m-font-size: 4.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 4.75rem;\n --plasma-typo-dspl-m-bold-font-size: 4.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 4.75rem;\n --plasma-typo-dspl-s-font-size: 3rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 3.375rem;\n --plasma-typo-dspl-s-bold-font-size: 3rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 3.375rem;\n --plasma-typo-h1-font-size: 2.5rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 2.875rem;\n --plasma-typo-h1-bold-font-size: 2.5rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 2.875rem;\n --plasma-typo-h2-font-size: 1.75rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 2.125rem;\n --plasma-typo-h2-bold-font-size: 1.75rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 2.125rem;\n --plasma-typo-h3-font-size: 1.25rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.625rem;\n --plasma-typo-h3-bold-font-size: 1.25rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.625rem;\n --plasma-typo-h4-font-size: 1.125rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.5rem;\n --plasma-typo-h4-bold-font-size: 1.125rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.5rem;\n --plasma-typo-h5-font-size: 1rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.375rem;\n --plasma-typo-h5-bold-font-size: 1rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.375rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.25rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 1.75rem;\n --plasma-typo-text-l-bold-font-size: 1.25rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 1.75rem;\n --plasma-typo-text-m-font-size: 1rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.5rem;\n --plasma-typo-text-m-bold-font-size: 1rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.5rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}\n\n@media (min-width: 960px) {\n :root {\n --plasma-typo-dspl-l-font-size: 8rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 8rem;\n --plasma-typo-dspl-l-bold-font-size: 8rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 8rem;\n --plasma-typo-dspl-m-font-size: 5.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 5.75rem;\n --plasma-typo-dspl-m-bold-font-size: 5.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 5.75rem;\n --plasma-typo-dspl-s-font-size: 4rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 4.25rem;\n --plasma-typo-dspl-s-bold-font-size: 4rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 4.25rem;\n --plasma-typo-h1-font-size: 3rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 3.375rem;\n --plasma-typo-h1-bold-font-size: 3rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 3.375rem;\n --plasma-typo-h2-font-size: 2rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 2.375rem;\n --plasma-typo-h2-bold-font-size: 2rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 2.375rem;\n --plasma-typo-h3-font-size: 1.5rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.875rem;\n --plasma-typo-h3-bold-font-size: 1.5rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.875rem;\n --plasma-typo-h4-font-size: 1.25rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.625rem;\n --plasma-typo-h4-bold-font-size: 1.25rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.625rem;\n --plasma-typo-h5-font-size: 1.125rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.5rem;\n --plasma-typo-h5-bold-font-size: 1.125rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.5rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.5rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 2rem;\n --plasma-typo-text-l-bold-font-size: 1.5rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 2rem;\n --plasma-typo-text-m-font-size: 1.125rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.625rem;\n --plasma-typo-text-m-bold-font-size: 1.125rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.625rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}"];
2
+ export var plasma_b2c__dark = ["\n:root {\n --text-primary: #FFFFFFF5;\n --text-primary-brightness: #FFFFFFF5;\n --text-secondary: #FFFFFF8F;\n --text-tertiary: #FFFFFF47;\n --text-paragraph: #FFFFFFCC;\n --text-accent: #3F81FD;\n --text-positive: #1A9E32;\n --text-warning: #FA5F05;\n --text-negative: #FF293E;\n --text-accent-minor: #1549AB;\n --text-accent-minor-hover: #FFFFFFFF;\n --text-accent-minor-active: #1C62E3FF;\n --text-info-hover: #90B6FEFF;\n --text-info-active: #216EFDFF;\n --text-positive-minor: #095C18;\n --text-positive-minor-hover: #0F9527FF;\n --text-positive-minor-active: #0C7920FF;\n --text-warning-minor: #85380C;\n --text-warning-minor-hover: #BB4F11FF;\n --text-warning-minor-active: #9F440FFF;\n --text-negative-minor: #9C1422;\n --text-negative-minor-hover: #B91828FF;\n --text-negative-minor-active: #83111CFF;\n --text-info-minor-hover: #FFFFFFFF;\n --text-info-minor-active: #1C62E3FF;\n --text-info: #3F81FD;\n --text-info-minor: #1549AB;\n --text-primary-hover: #FFFFFF93;\n --text-primary-active: #FFFFFFC4;\n --text-secondary-hover: #FFFFFFFF;\n --text-secondary-active: #FFFFFFAB;\n --text-tertiary-hover: #FFFFFFFF;\n --text-tertiary-active: #FFFFFF56;\n --text-paragraph-hover: #FFFFFF7A;\n --text-paragraph-active: #FFFFFFA3;\n --text-accent-hover: #90B6FEFF;\n --text-accent-active: #216EFDFF;\n --text-positive-hover: #1EB83AFF;\n --text-positive-active: #15842AFF;\n --text-warning-hover: #FB7223FF;\n --text-warning-active: #DC5304FF;\n --text-negative-hover: #FF475AFF;\n --text-negative-active: #FF0A23FF;\n --on-dark-text-primary: #FFFFFFF5;\n --on-dark-text-primary-brightness: #FFFFFFF5;\n --on-dark-text-secondary: #FFFFFF8F;\n --on-dark-text-tertiary: #FFFFFF47;\n --on-dark-text-paragraph: #FFFFFFCC;\n --on-dark-text-accent: #3F81FD;\n --on-dark-text-positive: #1A9E32;\n --on-dark-text-warning: #FA5F05;\n --on-dark-text-negative: #FF293E;\n --on-dark-text-accent-minor: #1549AB;\n --on-dark-text-accent-minor-hover: #FFFFFFFF;\n --on-dark-text-accent-minor-active: #1C62E3FF;\n --on-dark-text-info-hover: #90B6FEFF;\n --on-dark-text-info-active: #216EFDFF;\n --on-dark-text-positive-minor: #095C18;\n --on-dark-text-positive-minor-hover: #0F9527FF;\n --on-dark-text-positive-minor-active: #0C7920FF;\n --on-dark-text-warning-minor: #85380C;\n --on-dark-text-warning-minor-hover: #BB4F11FF;\n --on-dark-text-warning-minor-active: #9F440FFF;\n --on-dark-text-negative-minor: #9C1422;\n --on-dark-text-negative-minor-hover: #B91828FF;\n --on-dark-text-negative-minor-active: #83111CFF;\n --on-dark-text-info-minor-hover: #FFFFFFFF;\n --on-dark-text-info-minor-active: #1C62E3FF;\n --on-dark-text-info-minor: #1549AB;\n --on-dark-text-info: #3F81FD;\n --on-dark-text-primary-hover: #FFFFFF93;\n --on-dark-text-primary-active: #FFFFFFC4;\n --on-dark-text-secondary-hover: #FFFFFFFF;\n --on-dark-text-secondary-active: #FFFFFFAB;\n --on-dark-text-tertiary-hover: #FFFFFFFF;\n --on-dark-text-tertiary-active: #FFFFFF56;\n --on-dark-text-paragraph-hover: #FFFFFF7A;\n --on-dark-text-paragraph-active: #FFFFFFA3;\n --on-dark-text-accent-hover: #90B6FEFF;\n --on-dark-text-accent-active: #216EFDFF;\n --on-dark-text-positive-hover: #1EB83AFF;\n --on-dark-text-positive-active: #15842AFF;\n --on-dark-text-warning-hover: #FB7223FF;\n --on-dark-text-warning-active: #DC5304FF;\n --on-dark-text-negative-hover: #FF475AFF;\n --on-dark-text-negative-active: #FF0A23FF;\n --on-light-text-primary: #080808F5;\n --on-light-text-primary-brightness: #080808F5;\n --on-light-text-secondary: #0808088F;\n --on-light-text-tertiary: #08080847;\n --on-light-text-paragraph: #080808CC;\n --on-light-text-accent: #2A72F8;\n --on-light-text-positive: #1A9E32;\n --on-light-text-warning: #FA5F05;\n --on-light-text-accent-minor: #8BB2FC;\n --on-light-text-accent-minor-hover: #DCE8FEFF;\n --on-light-text-accent-minor-active: #6FA0FBFF;\n --on-light-text-info-hover: #79A7FBFF;\n --on-light-text-info-active: #0D5FF8FF;\n --on-light-text-positive-minor: #28D247;\n --on-light-text-positive-minor-hover: #3EDA5BFF;\n --on-light-text-positive-minor-active: #23B83EFF;\n --on-light-text-warning-minor: #FD9C68;\n --on-light-text-warning-minor-hover: #FDB086FF;\n --on-light-text-warning-minor-active: #FC884AFF;\n --on-light-text-negative-minor: #FF8F9A;\n --on-light-text-negative-minor-hover: #FFADB6FF;\n --on-light-text-negative-minor-active: #FF707EFF;\n --on-light-text-info-minor-hover: #DCE8FEFF;\n --on-light-text-info-minor-active: #6FA0FBFF;\n --on-light-text-negative-hover: #F5384BFF;\n --on-light-text-negative-active: #E40C22FF;\n --on-light-text-negative: #F31B31;\n --on-light-text-info: #2A72F8;\n --on-light-text-info-minor: #8BB2FC;\n --on-light-text-primary-hover: #08080893;\n --on-light-text-primary-active: #080808C4;\n --on-light-text-secondary-hover: #080808FF;\n --on-light-text-secondary-active: #080808AB;\n --on-light-text-tertiary-hover: #080808FF;\n --on-light-text-tertiary-active: #08080856;\n --on-light-text-paragraph-hover: #0808087A;\n --on-light-text-paragraph-active: #080808A3;\n --on-light-text-accent-hover: #79A7FBFF;\n --on-light-text-accent-active: #0D5FF8FF;\n --on-light-text-positive-hover: #1EB83AFF;\n --on-light-text-positive-active: #15842AFF;\n --on-light-text-warning-hover: #FB7223FF;\n --on-light-text-warning-active: #DC5304FF;\n --inverse-text-primary: #080808F5;\n --inverse-text-primary-brightness: #080808F5;\n --inverse-text-secondary: #0808088F;\n --inverse-text-tertiary: #08080847;\n --inverse-text-paragraph: #080808CC;\n --inverse-text-primary-hover: #08080893;\n --inverse-text-primary-active: #080808C4;\n --inverse-text-secondary-hover: #080808FF;\n --inverse-text-secondary-active: #080808AB;\n --inverse-text-tertiary-hover: #080808FF;\n --inverse-text-tertiary-active: #08080856;\n --inverse-text-paragraph-hover: #0808087A;\n --inverse-text-paragraph-active: #080808A3;\n --inverse-text-accent-hover: #79A7FBFF;\n --inverse-text-accent-active: #0D5FF8FF;\n --inverse-text-positive-hover: #1EB83AFF;\n --inverse-text-positive-active: #15842AFF;\n --inverse-text-warning-hover: #FB7223FF;\n --inverse-text-warning-active: #DC5304FF;\n --inverse-text-negative-hover: #F5384BFF;\n --inverse-text-negative-active: #E40C22FF;\n --inverse-text-accent-minor-hover: #DCE8FEFF;\n --inverse-text-accent-minor-active: #6FA0FBFF;\n --inverse-text-accent: #2A72F8;\n --inverse-text-accent-minor: #8BB2FC;\n --inverse-text-positive: #1A9E32;\n --inverse-text-warning: #FA5F05;\n --inverse-text-negative: #F31B31;\n --inverse-text-info: #2A72F8;\n --inverse-text-info-hover: #79A7FBFF;\n --inverse-text-info-active: #0D5FF8FF;\n --inverse-text-positive-minor: #28D247;\n --inverse-text-positive-minor-hover: #3EDA5BFF;\n --inverse-text-positive-minor-active: #23B83EFF;\n --inverse-text-warning-minor: #FD9C68;\n --inverse-text-warning-minor-hover: #FDB086FF;\n --inverse-text-warning-minor-active: #FC884AFF;\n --inverse-text-negative-minor: #FF8F9A;\n --inverse-text-negative-minor-hover: #FFADB6FF;\n --inverse-text-negative-minor-active: #FF707EFF;\n --inverse-text-info-minor: #8BB2FC;\n --inverse-text-info-minor-hover: #DCE8FEFF;\n --inverse-text-info-minor-active: #6FA0FBFF;\n --surface-solid-primary: #171717;\n --surface-solid-primary-brightness: #262626FF;\n --surface-solid-secondary: #262626;\n --surface-solid-tertiary: #363636;\n --surface-solid-card: #171717;\n --surface-solid-card-brightness: #262626FF;\n --surface-transparent-primary: #FFFFFF0F;\n --surface-transparent-secondary: #FFFFFF1F;\n --surface-transparent-tertiary: #FFFFFF33;\n --surface-transparent-card: #FFFFFF1F;\n --surface-transparent-card-brightness: #FFFFFF1F;\n --surface-accent: #3F81FD;\n --surface-positive: #1A9E32;\n --surface-warning: #FA5F05;\n --surface-negative: #FF293E;\n --surface-clear: #FFFFFF00;\n --surface-transparent-deep: #FFFFFFA3;\n --surface-transparent-deep-hover: #FFFFFFC2;\n --surface-transparent-deep-active: #FFFFFF94;\n --surface-accent-minor: #082254;\n --surface-accent-minor-hover: #0A2A67FF;\n --surface-accent-minor-active: #071F4BFF;\n --surface-transparent-accent: #3F81FD33;\n --surface-transparent-accent-hover: #3F82FD52;\n --surface-transparent-accent-active: #3F82FD24;\n --surface-info-hover: #5D95FDFF;\n --surface-info-active: #357BFDFF;\n --surface-positive-minor: #0A2B10;\n --surface-positive-minor-hover: #0E3A16FF;\n --surface-positive-minor-active: #08210CFF;\n --surface-warning-minor: #3D1D0A;\n --surface-warning-minor-hover: #4F250DFF;\n --surface-warning-minor-active: #351909FF;\n --surface-negative-minor: #4A0D13;\n --surface-negative-minor-hover: #5B1018FF;\n --surface-negative-minor-active: #410B11FF;\n --surface-info-minor-hover: #0A2A67FF;\n --surface-info-minor-active: #071F4BFF;\n --surface-transparent-positive-hover: #1A9E3252;\n --surface-transparent-positive-active: #1A9E3224;\n --surface-transparent-warning-hover: #FA5F0552;\n --surface-transparent-warning-active: #FA5F0524;\n --surface-transparent-negative-hover: #FF293E52;\n --surface-transparent-negative-active: #FF293E24;\n --surface-transparent-info-hover: #3F82FD52;\n --surface-transparent-info-active: #3F82FD24;\n --surface-transparent-positive: #1A9E3233;\n --surface-transparent-warning: #FA5F0533;\n --surface-transparent-negative: #FF293E33;\n --surface-solid-default: #F9F9F9;\n --surface-solid-default-hover: #FFFFFFFF;\n --surface-solid-default-active: #F5F5F5FF;\n --surface-info: #3F81FD;\n --surface-info-minor: #082254;\n --surface-transparent-info: #3F81FD33;\n --surface-solid-primary-hover: #1C1C1CFF;\n --surface-solid-primary-active: #121212FF;\n --surface-solid-secondary-hover: #303030FF;\n --surface-solid-secondary-active: #212121FF;\n --surface-solid-tertiary-hover: #404040FF;\n --surface-solid-tertiary-active: #303030FF;\n --surface-solid-card-hover: #1C1C1CFF;\n --surface-solid-card-active: #121212FF;\n --surface-transparent-primary-hover: #FFFFFF1F;\n --surface-transparent-primary-active: #FFFFFF0A;\n --surface-transparent-secondary-hover: #FFFFFF3D;\n --surface-transparent-secondary-active: #FFFFFF0F;\n --surface-transparent-tertiary-hover: #FFFFFF52;\n --surface-transparent-tertiary-active: #FFFFFF24;\n --surface-transparent-card-hover: #FFFFFF3D;\n --surface-transparent-card-active: #FFFFFF0F;\n --surface-accent-hover: #5D95FDFF;\n --surface-accent-active: #357BFDFF;\n --surface-positive-hover: #1DAF37FF;\n --surface-positive-active: #18952FFF;\n --surface-warning-hover: #FB7223FF;\n --surface-warning-active: #F05B05FF;\n --surface-negative-hover: #FF475AFF;\n --surface-negative-active: #FF1F35FF;\n --surface-clear-hover: #FFFFFF00;\n --surface-clear-active: #FFFFFF00;\n --on-dark-surface-solid-primary: #171717;\n --on-dark-surface-solid-primary-brightness: #262626FF;\n --on-dark-surface-solid-secondary: #262626;\n --on-dark-surface-solid-tertiary: #363636;\n --on-dark-surface-solid-card: #171717;\n --on-dark-surface-solid-card-brightness: #262626FF;\n --on-dark-surface-transparent-primary: #FFFFFF0F;\n --on-dark-surface-transparent-secondary: #FFFFFF1F;\n --on-dark-surface-transparent-tertiary: #FFFFFF33;\n --on-dark-surface-transparent-card: #FFFFFF1F;\n --on-dark-surface-transparent-card-brightness: #FFFFFF1F;\n --on-dark-surface-accent: #3F81FD;\n --on-dark-surface-positive: #1A9E32;\n --on-dark-surface-warning: #FA5F05;\n --on-dark-surface-negative: #FF293E;\n --on-dark-surface-transparent-deep: #FFFFFFA3;\n --on-dark-surface-transparent-deep-hover: #FFFFFFC2;\n --on-dark-surface-transparent-deep-active: #FFFFFF94;\n --on-dark-surface-accent-minor: #1549AB;\n --on-dark-surface-accent-minor-hover: #1852BFFF;\n --on-dark-surface-accent-minor-active: #1446A3FF;\n --on-dark-surface-transparent-accent: #3F81FD33;\n --on-dark-surface-transparent-accent-hover: #3F82FD52;\n --on-dark-surface-transparent-accent-active: #3F82FD24;\n --on-dark-surface-surface-info-hover: #5D95FDFF;\n --on-dark-surface-surface-info-active: #357BFDFF;\n --on-dark-surface-positive-minor: #0A2B10;\n --on-dark-surface-positive-minor-hover: #0E3A16FF;\n --on-dark-surface-positive-minor-active: #08210CFF;\n --on-dark-surface-warning-minor: #3D1D0A;\n --on-dark-surface-warning-minor-hover: #4F250DFF;\n --on-dark-surface-warning-minor-active: #351909FF;\n --on-dark-surface-negative-minor: #4A0D13;\n --on-dark-surface-negative-minor-hover: #5B1018FF;\n --on-dark-surface-negative-minor-active: #410B11FF;\n --on-dark-surface-info-minor-hover: #0A2A67FF;\n --on-dark-surface-info-minor-active: #071F4BFF;\n --on-dark-surface-transparent-positive-hover: #1A9E3252;\n --on-dark-surface-transparent-positive-active: #1A9E3224;\n --on-dark-surface-transparent-warning-hover: #FA5F0552;\n --on-dark-surface-transparent-warning-active: #FA5F0524;\n --on-dark-surface-transparent-negative-hover: #FF293E52;\n --on-dark-surface-transparent-negative-active: #FF293E24;\n --on-dark-surface-transparent-info-hover: #3F82FD52;\n --on-dark-surface-transparent-info-active: #3F82FD24;\n --on-dark-surface-transparent-positive: #1A9E3233;\n --on-dark-surface-transparent-warning: #FA5F0533;\n --on-dark-surface-transparent-negative: #FF293E33;\n --on-dark-surface-solid-default: #F9F9F9;\n --on-dark-surface-solid-default-hover: #FFFFFFFF;\n --on-dark-surface-solid-default-active: #F5F5F5FF;\n --on-dark-surface-surface-info: #3F81FD;\n --on-dark-surface-info-minor: #082254;\n --on-dark-surface-transparent-info: #3F81FD33;\n --on-dark-surface-solid-primary-hover: #1C1C1CFF;\n --on-dark-surface-solid-primary-active: #121212FF;\n --on-dark-surface-solid-secondary-hover: #303030FF;\n --on-dark-surface-solid-secondary-active: #212121FF;\n --on-dark-surface-solid-tertiary-hover: #404040FF;\n --on-dark-surface-solid-tertiary-active: #303030FF;\n --on-dark-surface-solid-card-hover: #1C1C1CFF;\n --on-dark-surface-solid-card-active: #121212FF;\n --on-dark-surface-transparent-primary-hover: #FFFFFF1F;\n --on-dark-surface-transparent-primary-active: #FFFFFF0A;\n --on-dark-surface-transparent-secondary-hover: #FFFFFF3D;\n --on-dark-surface-transparent-secondary-active: #FFFFFF0F;\n --on-dark-surface-transparent-tertiary-hover: #FFFFFF52;\n --on-dark-surface-transparent-tertiary-active: #FFFFFF24;\n --on-dark-surface-transparent-card-hover: #FFFFFF3D;\n --on-dark-surface-transparent-card-active: #FFFFFF0F;\n --on-dark-surface-accent-hover: #5D95FDFF;\n --on-dark-surface-accent-active: #357BFDFF;\n --on-dark-surface-positive-hover: #1DAF37FF;\n --on-dark-surface-positive-active: #18952FFF;\n --on-dark-surface-warning-hover: #FB7223FF;\n --on-dark-surface-warning-active: #F05B05FF;\n --on-dark-surface-negative-hover: #FF475AFF;\n --on-dark-surface-negative-active: #FF1F35FF;\n --on-light-surface-solid-default: #080808;\n --on-light-surface-solid-primary: #F5F5F5;\n --on-light-surface-solid-primary-brightness: #FFFFFFFF;\n --on-light-surface-solid-secondary: #ECECEC;\n --on-light-surface-solid-tertiary: #DDDDDD;\n --on-light-surface-solid-card: #FFFFFFFF;\n --on-light-surface-solid-card-brightness: #FFFFFFFF;\n --on-light-surface-transparent-primary: #08080808;\n --on-light-surface-transparent-secondary: #0808080F;\n --on-light-surface-transparent-tertiary: #0808081F;\n --on-light-surface-transparent-card: #FFFFFFFF;\n --on-light-surface-transparent-card-brightness: #FFFFFFFF;\n --on-light-surface-accent: #2A72F8;\n --on-light-surface-positive: #1A9E32;\n --on-light-surface-warning: #FA5F05;\n --on-light-surface-negative: #F31B31;\n --on-light-surface-transparent-deep: #080808A3;\n --on-light-surface-accent-minor: #DEE9FF;\n --on-light-surface-accent-minor-hover: #EBF1FFFF;\n --on-light-surface-accent-minor-active: #D6E4FFFF;\n --on-light-surface-transparent-accent: #2A72F81F;\n --on-light-surface-transparent-accent-hover: #2A72F83D;\n --on-light-surface-transparent-accent-active: #2A72F80F;\n --on-light-surface-info-hover: #5D95FDFF;\n --on-light-surface-info-active: #357BFDFF;\n --on-light-surface-positive-minor: #9EFAAF;\n --on-light-surface-positive-minor-hover: #B1FBBFFF;\n --on-light-surface-positive-minor-active: #94F9A7FF;\n --on-light-surface-warning-minor: #FEE2D2;\n --on-light-surface-warning-minor-hover: #FEE9DCFF;\n --on-light-surface-warning-minor-active: #FEDCC8FF;\n --on-light-surface-negative-minor: #FFE0E3;\n --on-light-surface-negative-minor-hover: #FFEBEDFF;\n --on-light-surface-negative-minor-active: #FFD6DAFF;\n --on-light-surface-info-minor-hover: #EBF1FFFF;\n --on-light-surface-info-minor-active: #D6E4FFFF;\n --on-light-surface-transparent-positive-hover: #1A9E323D;\n --on-light-surface-transparent-positive-active: #1A9E320F;\n --on-light-surface-transparent-warning-hover: #FA5F053D;\n --on-light-surface-transparent-warning-active: #FA5F050F;\n --on-light-surface-transparent-negative-hover: #F31B313D;\n --on-light-surface-transparent-negative-active: #F31B310F;\n --on-light-surface-transparent-info-hover: #2A72F83D;\n --on-light-surface-transparent-info-active: #2A72F80F;\n --on-light-surface-transparent-positive: #1A9E321F;\n --on-light-surface-transparent-warning: #FA5F051F;\n --on-light-surface-transparent-negative: #F31B311F;\n --on-light-surface-info: #3F81FD;\n --on-light-surface-info-minor: #DEE9FF;\n --on-light-surface-transparent-info: #2A72F81F;\n --on-light-surface-solid-default-hover: #0D0D0DFF;\n --on-light-surface-solid-default-active: #030303FF;\n --on-light-surface-solid-primary-hover: #FAFAFAFF;\n --on-light-surface-solid-primary-active: #F0F0F0FF;\n --on-light-surface-solid-secondary-hover: #F7F7F7FF;\n --on-light-surface-solid-secondary-active: #E8E8E8FF;\n --on-light-surface-solid-tertiary-hover: #E8E8E8FF;\n --on-light-surface-solid-tertiary-active: #D9D9D9FF;\n --on-light-surface-solid-card-hover: #FFFFFFFF;\n --on-light-surface-solid-card-active: #FFFFFFFF;\n --on-light-surface-transparent-primary-hover: #08080812;\n --on-light-surface-transparent-primary-active: #08080803;\n --on-light-surface-transparent-secondary-hover: #0808081F;\n --on-light-surface-transparent-secondary-active: #0808080A;\n --on-light-surface-transparent-tertiary-hover: #0808083D;\n --on-light-surface-transparent-tertiary-active: #0808080F;\n --on-light-surface-transparent-card-hover: #FFFFFFFF;\n --on-light-surface-transparent-card-active: #FFFFFFFF;\n --on-light-surface-accent-hover: #4886F9FF;\n --on-light-surface-accent-active: #206CF8FF;\n --on-light-surface-positive-hover: #1DAF37FF;\n --on-light-surface-positive-active: #18952FFF;\n --on-light-surface-warning-hover: #FB7223FF;\n --on-light-surface-warning-active: #F05B05FF;\n --on-light-surface-negative-hover: #F5384BFF;\n --on-light-surface-negative-active: #F31228FF;\n --on-light-surface-transparent-deep-hover: #080808C2;\n --on-light-surface-transparent-deep-active: #08080894;\n --inverse-surface-solid-primary-brightness: #FFFFFFFF;\n --inverse-surface-solid-card-brightness: #FFFFFFFF;\n --inverse-surface-transparent-card-brightness: #FFFFFFFF;\n --inverse-surface-positive: #1A9E32;\n --inverse-surface-warning: #FA5F05;\n --inverse-surface-negative: #F31B31;\n --inverse-surface-solid-default-hover: #0D0D0DFF;\n --inverse-surface-solid-default-active: #030303FF;\n --inverse-surface-solid-primary-hover: #FAFAFAFF;\n --inverse-surface-solid-primary-active: #F0F0F0FF;\n --inverse-surface-solid-secondary-hover: #F7F7F7FF;\n --inverse-surface-solid-secondary-active: #E8E8E8FF;\n --inverse-surface-solid-tertiary-hover: #E8E8E8FF;\n --inverse-surface-solid-tertiary-active: #D9D9D9FF;\n --inverse-surface-solid-card-hover: #FFFFFFFF;\n --inverse-surface-solid-card-active: #FFFFFFFF;\n --inverse-surface-transparent-primary-hover: #08080812;\n --inverse-surface-transparent-primary-active: #08080803;\n --inverse-surface-transparent-secondary-hover: #0808081F;\n --inverse-surface-transparent-secondary-active: #0808080A;\n --inverse-surface-transparent-tertiary-hover: #0808083D;\n --inverse-surface-transparent-tertiary-active: #0808080F;\n --inverse-surface-transparent-card-hover: #FFFFFFFF;\n --inverse-surface-transparent-card-active: #FFFFFFFF;\n --inverse-surface-accent-hover: #4886F9FF;\n --inverse-surface-accent-active: #206CF8FF;\n --inverse-surface-positive-hover: #1DAF37FF;\n --inverse-surface-positive-active: #18952FFF;\n --inverse-surface-warning-hover: #FB7223FF;\n --inverse-surface-warning-active: #F05B05FF;\n --inverse-surface-negative-hover: #F5384BFF;\n --inverse-surface-negative-active: #F31228FF;\n --inverse-surface-clear-hover: #FFFFFFFF;\n --inverse-surface-clear-active: #FFFFFFFF;\n --inverse-surface-solid-card: #FFFFFFFF;\n --inverse-surface-solid-primary: #F5F5F5;\n --inverse-surface-solid-secondary: #ECECEC;\n --inverse-surface-solid-tertiary: #DDDDDD;\n --inverse-surface-solid-default: #080808;\n --inverse-surface-transparent-card: #FFFFFFFF;\n --inverse-surface-transparent-primary: #08080808;\n --inverse-surface-transparent-secondary: #0808080F;\n --inverse-surface-transparent-tertiary: #0808081F;\n --inverse-surface-transparent-deep: #080808A3;\n --inverse-surface-transparent-deep-hover: #080808C2;\n --inverse-surface-transparent-deep-active: #08080894;\n --inverse-surface-clear: #00000000;\n --inverse-surface-accent: #2A72F8;\n --inverse-surface-accent-minor: #DEE9FF;\n --inverse-surface-accent-minor-hover: #EBF1FFFF;\n --inverse-surface-accent-minor-active: #D6E4FFFF;\n --inverse-surface-transparent-accent: #2A72F81F;\n --inverse-surface-transparent-accent-hover: #2A72F83D;\n --inverse-surface-transparent-accent-active: #2A72F80F;\n --inverse-surface-info: #2A72F8;\n --inverse-surface-info-hover: #4886F9FF;\n --inverse-surface-info-active: #206CF8FF;\n --inverse-surface-positive-minor: #9EFAAF;\n --inverse-surface-positive-minor-hover: #B1FBBFFF;\n --inverse-surface-positive-minor-active: #94F9A7FF;\n --inverse-surface-warning-minor: #FEE2D2;\n --inverse-surface-warning-minor-hover: #FEE9DCFF;\n --inverse-surface-warning-minor-active: #FEDCC8FF;\n --inverse-surface-negative-minor: #FFE0E3;\n --inverse-surface-negative-minor-hover: #FFEBEDFF;\n --inverse-surface-negative-minor-active: #FFD6DAFF;\n --inverse-surface-info-minor: #DEE9FF;\n --inverse-surface-info-minor-hover: #EBF1FFFF;\n --inverse-surface-info-minor-active: #D6E4FFFF;\n --inverse-surface-transparent-positive: #1A9E321F;\n --inverse-surface-transparent-positive-hover: #1A9E323D;\n --inverse-surface-transparent-positive-active: #1A9E320F;\n --inverse-surface-transparent-warning: #FA5F051F;\n --inverse-surface-transparent-warning-hover: #FA5F053D;\n --inverse-surface-transparent-warning-active: #FA5F050F;\n --inverse-surface-transparent-negative: #F31B311F;\n --inverse-surface-transparent-negative-hover: #F31B313D;\n --inverse-surface-transparent-negative-active: #F31B310F;\n --inverse-surface-transparent-info: #2A72F81F;\n --inverse-surface-transparent-info-hover: #2A72F83D;\n --inverse-surface-transparent-info-active: #2A72F80F;\n --background-primary: #080808;\n --background-primary-brightness: #171717FF;\n --dark-background-primary: #080808;\n --light-background-primary: #F9F9F9;\n --inverse-background-primary-brightness: #FFFFFFFF;\n --inverse-background-primary: #F9F9F9;\n --overlay-soft: #0808088F;\n --overlay-hard: #080808F5;\n --overlay-blur: #08080847;\n --on-dark-overlay-soft: #0808088F;\n --on-dark-overlay-hard: #080808F5;\n --on-dark-overlay-blur: #08080847;\n --on-light-overlay-soft: #F9F9F98F;\n --on-light-overlay-hard: #F9F9F9F5;\n --on-light-overlay-blur: #F9F9F947;\n --inverse-overlay-soft: #F9F9F98F;\n --inverse-overlay-hard: #F9F9F9F5;\n --inverse-overlay-blur: #F9F9F947;\n --outline-primary-hover: #303030FF;\n --outline-primary-active: #212121FF;\n --outline-secondary-hover: #595959FF;\n --outline-secondary-active: #4A4A4AFF;\n --outline-tertiary-hover: #7A7A7AFF;\n --outline-tertiary-active: #6B6B6BFF;\n --outline-default-hover: #FFFFFFFF;\n --outline-default-active: #F5F5F5FF;\n --outline-transparent-primary: #FFFFFF1F;\n --outline-transparent-primary-hover: #FFFFFF3D;\n --outline-transparent-primary-active: #FFFFFF0F;\n --outline-transparent-secondary: #FFFFFF33;\n --outline-transparent-secondary-hover: #FFFFFF52;\n --outline-transparent-secondary-active: #FFFFFF24;\n --outline-transparent-tertiary: #FFFFFF66;\n --outline-transparent-tertiary-hover: #FFFFFF85;\n --outline-transparent-tertiary-active: #FFFFFF57;\n --outline-transparent-clear: #FFFFFF00;\n --outline-transparent-clear-hover: #FFFFFF00;\n --outline-transparent-clear-active: #FFFFFF00;\n --outline-accent: #3F81FD;\n --outline-accent-hover: #5D95FDFF;\n --outline-accent-active: #357BFDFF;\n --outline-accent-minor: #1549AB;\n --outline-accent-minor-hover: #1852BFFF;\n --outline-accent-minor-active: #1446A3FF;\n --outline-transparent-accent: #3F81FD47;\n --outline-transparent-accent-hover: #3F82FD66;\n --outline-transparent-accent-active: #3F82FD38;\n --outline-positive: #24B23E;\n --outline-positive-hover: #28C344FF;\n --outline-positive-active: #23A93BFF;\n --outline-warning: #FF7024;\n --outline-warning-hover: #FF8442FF;\n --outline-warning-active: #FF6A1AFF;\n --outline-negative: #FF3D51;\n --outline-negative-hover: #FF5C6CFF;\n --outline-negative-active: #FF3347FF;\n --outline-info-hover: #70A2FFFF;\n --outline-info-active: #4788FFFF;\n --outline-positive-minor: #095C18;\n --outline-positive-minor-hover: #0B6F1DFF;\n --outline-positive-minor-active: #085416FF;\n --outline-warning-minor: #85380C;\n --outline-warning-minor-hover: #95400EFF;\n --outline-warning-minor-active: #79340BFF;\n --outline-negative-minor: #9C1422;\n --outline-negative-minor-hover: #B01726FF;\n --outline-negative-minor-active: #951320FF;\n --outline-info-minor-hover: #1852BFFF;\n --outline-info-minor-active: #1446A3FF;\n --outline-transparent-positive-hover: #1A9E3266;\n --outline-transparent-positive-active: #1A9E3238;\n --outline-transparent-warning-hover: #FA5F0566;\n --outline-transparent-warning-active: #FA5F0538;\n --outline-negative-transparent-hover: #CCCCCCFF;\n --outline-negative-transparent-active: #E6E6E6FF;\n --outline-transparent-info-hover: #3F82FD66;\n --outline-transparent-info-active: #3F82FD38;\n --outline-transparent-positive: #1A9E3247;\n --outline-transparent-warning: #FA5F0547;\n --outline-transparent-negative: #F31B3133;\n --outline-transparent-negative-hover: #F31B3152;\n --outline-transparent-negative-active: #F31B3124;\n --outline-info-minor: #1549AB;\n --outline-transparent-info: #3F81FD47;\n --outline-info: #528EFF;\n --outline-solid-primary: #262626;\n --outline-solid-primary-hover: #FFFFFFFF;\n --outline-solid-primary-active: #ADADADFF;\n --outline-solid-secondary: #4E4E4E;\n --outline-solid-secondary-hover: #FFFFFFFF;\n --outline-solid-secondary-active: #8C8C8CFF;\n --outline-solid-tertiary: #707070;\n --outline-solid-tertiary-hover: #FFFFFFFF;\n --outline-solid-tertiary-active: #737373FF;\n --outline-solid-default: #F9F9F9;\n --outline-solid-default-hover: #C7C7C7FF;\n --outline-solid-default-active: #E0E0E0FF;\n --on-dark-outline-primary-hover: #303030FF;\n --on-dark-outline-primary-active: #212121FF;\n --on-dark-outline-secondary-hover: #595959FF;\n --on-dark-outline-secondary-active: #4A4A4AFF;\n --on-dark-outline-tertiary-hover: #7A7A7AFF;\n --on-dark-outline-tertiary-active: #6B6B6BFF;\n --on-dark-outline-default-hover: #FFFFFFFF;\n --on-dark-outline-default-active: #F5F5F5FF;\n --on-dark-outline-transparent-primary-hover: #FFFFFF3D;\n --on-dark-outline-transparent-primary-active: #FFFFFF0F;\n --on-dark-outline-transparent-secondary-hover: #FFFFFF52;\n --on-dark-outline-transparent-secondary-active: #FFFFFF24;\n --on-dark-outline-transparent-tertiary-hover: #FFFFFF85;\n --on-dark-outline-transparent-tertiary-active: #FFFFFF57;\n --on-dark-outline-accent-hover: #5D95FDFF;\n --on-dark-outline-accent-active: #357BFDFF;\n --on-dark-outline-accent-minor-hover: #1852BFFF;\n --on-dark-outline-accent-minor-active: #1446A3FF;\n --on-dark-outline-transparent-accent-hover: #3F82FD66;\n --on-dark-outline-transparent-accent-active: #3F82FD38;\n --on-dark-outline-positive-hover: #28C344FF;\n --on-dark-outline-positive-active: #23A93BFF;\n --on-dark-outline-warning-hover: #FF8442FF;\n --on-dark-outline-warning-active: #FF6A1AFF;\n --on-dark-outline-negative-hover: #FF5C6CFF;\n --on-dark-outline-negative-active: #FF3347FF;\n --on-dark-outline-info-hover: #70A2FFFF;\n --on-dark-outline-info-active: #4788FFFF;\n --on-dark-outline-positive-minor-hover: #0B6F1DFF;\n --on-dark-outline-positive-minor-active: #085416FF;\n --on-dark-outline-warning-minor-hover: #95400EFF;\n --on-dark-outline-warning-minor-active: #79340BFF;\n --on-dark-outline-negative-minor-hover: #B01726FF;\n --on-dark-outline-negative-minor-active: #951320FF;\n --on-dark-outline-info-minor-hover: #1852BFFF;\n --on-dark-outline-info-minor-active: #1446A3FF;\n --on-dark-outline-transparent-positive-hover: #1A9E3266;\n --on-dark-outline-transparent-positive-active: #1A9E3238;\n --on-dark-outline-transparent-warning-hover: #FA5F0566;\n --on-dark-outline-transparent-warning-active: #FA5F0538;\n --on-dark-outline-negative-transparent-hover: #FF293E66;\n --on-dark-outline-negative-transparent-active: #FF293E38;\n --on-dark-outline-transparent-info-hover: #3F82FD66;\n --on-dark-outline-transparent-info-active: #3F82FD38;\n --on-dark-outline-transparent-primary: #FFFFFF1F;\n --on-dark-outline-transparent-secondary: #FFFFFF33;\n --on-dark-outline-transparent-tertiary: #FFFFFF66;\n --on-dark-outline-accent: #3F81FD;\n --on-dark-outline-accent-minor: #1549AB;\n --on-dark-outline-transparent-accent: #3F81FD47;\n --on-dark-outline-positive: #24B23E;\n --on-dark-outline-warning: #FF7024;\n --on-dark-outline-negative: #FF3D51;\n --on-dark-outline-warning-minor: #85380C;\n --on-dark-outline-negative-minor: #9C1422;\n --on-dark-outline-transparent-positive: #1A9E3247;\n --on-dark-outline-transparent-warning: #FA5F0547;\n --on-dark-outline-negative-transparent: #FF293E47;\n --on-dark-outline-positive-minor: #095C18;\n --on-dark-outline-info-minor: #1549AB;\n --on-dark-outline-info: #528EFF;\n --on-dark-outline-transparent-info: #3F81FD47;\n --on-dark-outline-solid-primary: #262626;\n --on-dark-outline-solid-primary-hover: #FFFFFFFF;\n --on-dark-outline-solid-primary-active: #ADADADFF;\n --on-dark-outline-solid-secondary: #4E4E4E;\n --on-dark-outline-solid-secondary-hover: #FFFFFFFF;\n --on-dark-outline-solid-secondary-active: #8C8C8CFF;\n --on-dark-outline-solid-tertiary: #707070;\n --on-dark-outline-solid-tertiary-hover: #FFFFFFFF;\n --on-dark-outline-solid-tertiary-active: #737373FF;\n --on-dark-outline-solid-default: #F9F9F9;\n --on-dark-outline-solid-default-hover: #C7C7C7FF;\n --on-dark-outline-solid-default-active: #E0E0E0FF;\n --on-light-outline-primary-hover: #E8E8E8FF;\n --on-light-outline-primary-active: #D9D9D9FF;\n --on-light-outline-secondary-hover: #9E9E9EFF;\n --on-light-outline-secondary-active: #8F8F8FFF;\n --on-light-outline-tertiary-hover: #7A7A7AFF;\n --on-light-outline-tertiary-active: #6B6B6BFF;\n --on-light-outline-default-hover: #0D0D0DFF;\n --on-light-outline-default-active: #030303FF;\n --on-light-outline-transparent-primary: #08080833;\n --on-light-outline-transparent-primary-hover: #08080852;\n --on-light-outline-transparent-primary-active: #08080824;\n --on-light-outline-transparent-secondary: #08080866;\n --on-light-outline-transparent-secondary-hover: #08080885;\n --on-light-outline-transparent-secondary-active: #08080857;\n --on-light-outline-transparent-tertiary: #0808088F;\n --on-light-outline-transparent-tertiary-hover: #080808AD;\n --on-light-outline-transparent-tertiary-active: #08080880;\n --on-light-outline-accent: #2A72F8;\n --on-light-outline-accent-hover: #4886F9FF;\n --on-light-outline-accent-active: #206CF8FF;\n --on-light-outline-accent-minor: #8BB2FC;\n --on-light-outline-accent-minor-hover: #A1C1FDFF;\n --on-light-outline-accent-minor-active: #83ADFCFF;\n --on-light-outline-transparent-accent: #2A72F833;\n --on-light-outline-transparent-accent-hover: #2A72F852;\n --on-light-outline-transparent-accent-active: #2A72F824;\n --on-light-outline-positive: #1A9E32;\n --on-light-outline-positive-hover: #1DAF37FF;\n --on-light-outline-positive-active: #18952FFF;\n --on-light-outline-warning: #FA5F05;\n --on-light-outline-warning-hover: #FB7223FF;\n --on-light-outline-warning-active: #F05B05FF;\n --on-light-outline-negative: #F31B31;\n --on-light-outline-negative-hover: #F5384BFF;\n --on-light-outline-negative-active: #F31228FF;\n --on-light-outline-info-hover: #5D95FDFF;\n --on-light-outline-info-active: #357BFDFF;\n --on-light-outline-positive-minor: #28D247;\n --on-light-outline-positive-minor-hover: #36D954FF;\n --on-light-outline-positive-minor-active: #26C944FF;\n --on-light-outline-warning-minor: #FD9C68;\n --on-light-outline-warning-minor-hover: #FDA97CFF;\n --on-light-outline-warning-minor-active: #FD965EFF;\n --on-light-outline-negative-minor: #FF8F9A;\n --on-light-outline-negative-minor-hover: #FFA3ACFF;\n --on-light-outline-negative-minor-active: #FF8591FF;\n --on-light-outline-info-minor-hover: #A1C1FDFF;\n --on-light-outline-info-minor-active: #83ADFCFF;\n --on-light-outline-transparent-positive: #1A9E3233;\n --on-light-outline-transparent-positive-hover: #1A9E3252;\n --on-light-outline-transparent-positive-active: #1A9E3224;\n --on-light-outline-transparent-warning: #E8570233;\n --on-light-outline-transparent-warning-hover: #E8570252;\n --on-light-outline-transparent-warning-active: #E8570224;\n --on-light-outline-negative-transparent: #F31B3133;\n --on-light-outline-negative-transparent-hover: #F31B3152;\n --on-light-outline-negative-transparent-active: #F31B3124;\n --on-light-outline-transparent-info-hover: #2A72F852;\n --on-light-outline-transparent-info-active: #2A72F824;\n --on-light-outline-info: #3F81FD;\n --on-light-outline-info-minor: #8BB2FC;\n --on-light-outline-transparent-info: #2A72F833;\n --on-light-outline-solid-tertiary: #707070;\n --on-light-outline-solid-tertiary-hover: #FFFFFFFF;\n --on-light-outline-solid-tertiary-active: #737373FF;\n --on-light-outline-solid-default: #080808;\n --on-light-outline-solid-default-hover: #FFFFFFFF;\n --on-light-outline-solid-default-active: #C7C7C7FF;\n --on-light-outline-solid-primary: #DDDDDD;\n --on-light-outline-solid-primary-hover: #ABABABFF;\n --on-light-outline-solid-primary-active: #C4C4C4FF;\n --on-light-outline-solid-secondary: #949494;\n --on-light-outline-solid-secondary-hover: #FFFFFFFF;\n --on-light-outline-solid-secondary-active: #575757FF;\n --inverse-outline-primary-hover: #ABABABFF;\n --inverse-outline-primary-active: #C4C4C4FF;\n --inverse-outline-secondary-hover: #FFFFFFFF;\n --inverse-outline-secondary-active: #575757FF;\n --inverse-outline-tertiary-hover: #FFFFFFFF;\n --inverse-outline-tertiary-active: #737373FF;\n --inverse-outline-default-hover: #FFFFFFFF;\n --inverse-outline-default-active: #C7C7C7FF;\n --inverse-outline-transparent-primary: #08080833;\n --inverse-outline-transparent-primary-hover: #080808FF;\n --inverse-outline-transparent-primary-active: #0808083D;\n --inverse-outline-transparent-secondary: #08080866;\n --inverse-outline-transparent-secondary-hover: #080808FF;\n --inverse-outline-transparent-secondary-active: #0808087A;\n --inverse-outline-transparent-tertiary: #0808088F;\n --inverse-outline-transparent-tertiary-hover: #080808FF;\n --inverse-outline-transparent-tertiary-active: #080808AB;\n --inverse-outline-transparent-clear: #FFFFFF00;\n --inverse-outline-transparent-clear-hover: #FFFFFFFF;\n --inverse-outline-transparent-clear-active: #FFFFFFFF;\n --inverse-outline-accent: #2A72F8;\n --inverse-outline-accent-hover: #79A7FBFF;\n --inverse-outline-accent-active: #0D5FF8FF;\n --inverse-outline-accent-minor: #8BB2FC;\n --inverse-outline-accent-minor-hover: #DCE8FEFF;\n --inverse-outline-accent-minor-active: #6FA0FBFF;\n --inverse-outline-transparent-accent: #2A72F833;\n --inverse-outline-transparent-accent-hover: #2A72F8FF;\n --inverse-outline-transparent-accent-active: #2A72F83D;\n --inverse-outline-positive: #1A9E32;\n --inverse-outline-positive-hover: #1EB83AFF;\n --inverse-outline-positive-active: #15842AFF;\n --inverse-outline-warning: #FA5F05;\n --inverse-outline-warning-hover: #FB7223FF;\n --inverse-outline-warning-active: #DC5304FF;\n --inverse-outline-negative: #F31B31;\n --inverse-outline-negative-hover: #F5384BFF;\n --inverse-outline-negative-active: #E40C22FF;\n --inverse-outline-info: #2A72F8;\n --inverse-outline-info-hover: #79A7FBFF;\n --inverse-outline-info-active: #0D5FF8FF;\n --inverse-outline-positive-minor: #28D247;\n --inverse-outline-positive-minor-hover: #3EDA5BFF;\n --inverse-outline-positive-minor-active: #23B83EFF;\n --inverse-outline-warning-minor: #FD9C68;\n --inverse-outline-warning-minor-hover: #FDB086FF;\n --inverse-outline-warning-minor-active: #FC884AFF;\n --inverse-outline-negative-minor: #FF8F9A;\n --inverse-outline-negative-minor-hover: #FFADB6FF;\n --inverse-outline-negative-minor-active: #FF707EFF;\n --inverse-outline-info-minor: #8BB2FC;\n --inverse-outline-info-minor-hover: #DCE8FEFF;\n --inverse-outline-info-minor-active: #6FA0FBFF;\n --inverse-outline-transparent-positive: #1A9E3233;\n --inverse-outline-transparent-positive-hover: #1A9E32FF;\n --inverse-outline-transparent-positive-active: #1A9E323D;\n --inverse-outline-transparent-warning: #FA5F0533;\n --inverse-outline-transparent-warning-hover: #FA5F05FF;\n --inverse-outline-transparent-warning-active: #FA5F053D;\n --inverse-outline-transparent-negative: #F31B3133;\n --inverse-outline-transparent-negative-hover: #F31B31FF;\n --inverse-outline-transparent-negative-active: #F31B313D;\n --inverse-outline-transparent-info: #2A72F833;\n --inverse-outline-transparent-info-hover: #2A72F8FF;\n --inverse-outline-transparent-info-active: #2A72F83D;\n --inverse-outline-solid-primary: #DDDDDD;\n --inverse-outline-solid-primary-hover: #ABABABFF;\n --inverse-outline-solid-primary-active: #C4C4C4FF;\n --inverse-outline-solid-secondary: #949494;\n --inverse-outline-solid-secondary-hover: #FFFFFFFF;\n --inverse-outline-solid-secondary-active: #575757FF;\n --inverse-outline-solid-tertiary: #707070;\n --inverse-outline-solid-tertiary-hover: #FFFFFFFF;\n --inverse-outline-solid-tertiary-active: #737373FF;\n --inverse-outline-solid-default: #080808;\n --inverse-outline-solid-default-hover: #FFFFFFFF;\n --inverse-outline-solid-default-active: #C7C7C7FF;\n color: var(--text-primary);\n background-color: var(--background-primary);\n --plasma-colors-white-primary: var(--on-dark-text-primary);\n --plasma-colors-white-secondary: var(--on-dark-text-secondary);\n --plasma-colors-white-tertiary: var(--on-dark-text-tertiary);\n --plasma-colors-black-primary: var(--on-light-text-primary);\n --plasma-colors-black-secondary: var(--on-light-text-secondary);\n --plasma-colors-black-tertiary: var(--on-light-text-tertiary);\n --plasma-colors-button-black: var(--on-light-surface-solid-default);\n --plasma-colors-button-black-secondary: var(--on-light-surface-transparent-secondary);\n --plasma-colors-button-white: var(--on-dark-surface-solid-default);\n --plasma-colors-button-white-secondary: var(--on-dark-surface-transparent-secondary);\n --plasma-colors-text: var(--text-primary);\n --plasma-colors-primary: var(--text-primary);\n --plasma-colors-secondary: var(--text-secondary);\n --plasma-colors-tertiary: var(--text-tertiary);\n --plasma-colors-paragraph: var(--text-paragraph);\n --plasma-colors-background: var(--background-primary);\n --plasma-colors-accent: var(--text-accent);\n --plasma-colors-success: var(--text-positive);\n --plasma-colors-warning: var(--text-warning);\n --plasma-colors-critical: var(--text-negative);\n --plasma-colors-overlay: var(--overlay-soft);\n --plasma-colors-surface-liquid01: var(--surface-transparent-primary);\n --plasma-colors-surface-liquid02: var(--surface-transparent-secondary);\n --plasma-colors-surface-liquid03: var(--surface-transparent-tertiary);\n --plasma-colors-surface-solid01: var(--surface-solid-primary);\n --plasma-colors-surface-solid02: var(--surface-solid-secondary);\n --plasma-colors-surface-solid03: var(--surface-solid-tertiary);\n --plasma-colors-surface-card: var(--surface-transparent-card);\n --plasma-colors-button-secondary: var(--surface-transparent-secondary);\n --plasma-colors-button-accent: var(--text-accent);\n --plasma-colors-button-success: var(--surface-positive);\n --plasma-colors-button-warning: var(--surface-warning);\n --plasma-colors-button-critical: var(--surface-negative);\n}\n\n:root {\n --text-accent-gradient: linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --text-accent-gradient-hover: #CCCCCCFF;\n --text-accent-gradient-active: #E6E6E6FF;\n --on-dark-text-accent-gradient: linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --on-dark-text-accent-gradient-hover: #CCCCCCFF;\n --on-dark-text-accent-gradient-active: #E6E6E6FF;\n --on-light-text-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-light-text-accent-gradient-hover: #CCCCCCFF;\n --on-light-text-accent-gradient-active: #E6E6E6FF;\n --inverse-text-accent-gradient-hover: #CCCCCCFF;\n --inverse-text-accent-gradient-active: #E6E6E6FF;\n --inverse-text-accent-gradient: linear-gradient(94deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%),linear-gradient(89.83deg, #5E94FFFF 0%, #43DBFAFF 100%);\n --surface-accent-gradient-hover: #FFFFFFFF;\n --surface-accent-gradient-active: #FFFFFFFF;\n --surface-skeleton-gradient: linear-gradient(90deg, #FFFFFF17 0%, #FFFFFF14 6.25%, #FFFFFF0D 12.5%, #FFFFFF03 25%, #FFFFFF0D 37.5%, #FFFFFF14 43.75%, #FFFFFF17 50%, #FFFFFF14 56.25%, #FFFFFF0D 62.5%, #FFFFFF03 75%, #FFFFFF0D 87.5%, #FFFFFF14 93.75%, #FFFFFF17 100%);\n --surface-skeleton-gradient-hover: #FFFFFFFF;\n --surface-skeleton-gradient-active: #FFFFFFFF;\n --surface-skeleton-deep-gradient: linear-gradient(90deg, #FFFFFF5C 0%, #FFFFFF52 6.25%, #FFFFFF33 12.5%, #FFFFFF0A 25%, #FFFFFF33 37.5%, #FFFFFF52 43.75%, #FFFFFF5C 50%, #FFFFFF14 56.25%, #FFFFFF33 62.5%, #FFFFFF0A 75%, #FFFFFF33 87.5%, #FFFFFF52 93.75%, #FFFFFF5C 100%);\n --surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --on-dark-surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-dark-surface-accent-gradient-hover: #FFFFFFFF;\n --on-dark-surface-accent-gradient-active: #FFFFFFFF;\n --on-dark-surface-skeleton-gradient: linear-gradient(90deg, #FFFFFF17 0%, #FFFFFF14 6.25%, #FFFFFF0D 12.5%, #FFFFFF03 25%, #FFFFFF0D 37.5%, #FFFFFF14 43.75%, #FFFFFF17 50%, #FFFFFF14 56.25%, #FFFFFF0D 62.5%, #FFFFFF03 75%, #FFFFFF0D 87.5%, #FFFFFF14 93.75%, #FFFFFF17 100%);\n --on-dark-surface-skeleton-gradient-hover: #FFFFFFFF;\n --on-dark-surface-skeleton-gradient-active: #FFFFFFFF;\n --on-dark-surface-skeleton-deep-gradient: linear-gradient(90deg, #FFFFFF5C 0%, #FFFFFF52 6.25%, #FFFFFF33 12.5%, #FFFFFF0A 25%, #FFFFFF33 37.5%, #FFFFFF52 43.75%, #FFFFFF5C 50%, #FFFFFF14 56.25%, #FFFFFF33 62.5%, #FFFFFF0A 75%, #FFFFFF33 87.5%, #FFFFFF52 93.75%, #FFFFFF5C 100%);\n --on-dark-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --on-dark-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --on-light-surface-accent-gradient: linear-gradient(93.97deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --on-light-surface-accent-gradient-hover: #FFFFFFFF;\n --on-light-surface-accent-gradient-active: #FFFFFFFF;\n --on-light-surface-skeleton-gradient: linear-gradient(90deg, #08080817 0%, #08080814 6.25%, #0808080D 12.5%, #08080803 25%, #0808080D 37.5%, #08080814 43.75%, #08080817 50%, #08080814 56.25%, #0808080D 62.5%, #08080803 75%, #0808080D 87.5%, #08080814 93.75%, #08080817 100%);\n --on-light-surface-skeleton-gradient-hover: #FFFFFFFF;\n --on-light-surface-skeleton-gradient-active: #FFFFFFFF;\n --on-light-surface-skeleton-deep-gradient: linear-gradient(90deg, #0808085C 0%, #08080852 6.25%, #08080833 12.5%, #0808080A 25%, #08080833 37.5%, #08080852 43.75%, #0808085C 50%, #08080814 56.25%, #08080833 62.5%, #0808080A 75%, #08080833 87.5%, #08080852 93.75%, #0808085C 100%);\n --on-light-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --on-light-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n --inverse-surface-accent-gradient-hover: #FFFFFFFF;\n --inverse-surface-accent-gradient-active: #FFFFFFFF;\n --inverse-surface-accent-gradient: linear-gradient(94deg, #3E79F0FF 6.49%, #27C6E5FF 93.51%);\n --inverse-surface-skeleton-gradient: linear-gradient(90deg, #08080817 0%, #08080814 6.25%, #0808080D 12.5%, #08080803 25%, #0808080D 37.5%, #08080814 43.75%, #08080817 50%, #08080814 56.25%, #0808080D 62.5%, #08080803 75%, #0808080D 87.5%, #08080814 93.75%, #08080817 100%);\n --inverse-surface-skeleton-gradient-hover: #FFFFFFFF;\n --inverse-surface-skeleton-gradient-active: #FFFFFFFF;\n --inverse-surface-skeleton-deep-gradient: linear-gradient(90deg, #0808085C 0%, #08080852 6.25%, #08080833 12.5%, #0808080A 25%, #08080833 37.5%, #08080852 43.75%, #0808085C 50%, #08080814 56.25%, #08080833 62.5%, #0808080A 75%, #08080833 87.5%, #08080852 93.75%, #0808085C 100%);\n --inverse-surface-skeleton-deep-gradient-hover: #FFFFFFFF;\n --inverse-surface-skeleton-deep-gradient-active: #FFFFFFFF;\n}\n\n:root {\n --shadow-down-soft-s: 0px 4px 14px -4px #08080814, 0px 1px 4px -1px #0000000A;\n --shadow-down-soft-m: 0px 24px 48px -8px #00000014;\n --shadow-down-soft-l: 0px 60px 112px -8px #00000014;\n --shadow-down-hard-s: 0px 4px 12px -3px #08080829, 0px 1px 4px -2px #00000014;\n --shadow-down-hard-m: 0px 16px 32px -8px #0000003D;\n --shadow-down-hard-l: 0px 60px 112px -8px #00000066;\n --shadow-up-soft-s: 0px -4px 14px -4px #08080814, 0px -1px 4px -1px #00000008;\n --shadow-up-soft-m: 0px -24px 48px -8px #00000014;\n --shadow-up-soft-l: 0px -60px 112px -8px #00000014;\n --shadow-up-hard-s: 0px -4px 12px -3px #08080833, 0px -1px 4px -1px #00000008;\n --shadow-up-hard-m: 0px -16px 32px -8px #0000003D;\n --shadow-up-hard-l: 0px -60px 112px -8px #00000066;\n}\n\n:root {\n --border-radius-xxs: 4px;\n --border-radius-xs: 6px;\n --border-radius-s: 8px;\n --border-radius-m: 12px;\n --border-radius-l: 16px;\n --border-radius-xl: 20px;\n --border-radius-xxl: 32px;\n}\n\n:root {\n --spacing-0x: 0px;\n --spacing-1x: 2px;\n --spacing-2x: 4px;\n --spacing-3x: 6px;\n --spacing-4x: 8px;\n --spacing-6x: 12px;\n --spacing-8x: 16px;\n --spacing-10x: 20px;\n --spacing-12x: 24px;\n --spacing-16x: 32px;\n --spacing-20x: 40px;\n --spacing-24x: 48px;\n --spacing-32x: 64px;\n --spacing-40x: 80px;\n --spacing-60x: 120px;\n}\n\n:root {\n font-size: 16px;\n --plasma-typo-overflow-wrap: break-word;\n --plasma-typo-hyphens: auto;\n --plasma-typo-display-font-family: 'SB Sans Display', sans-serif;\n --plasma-typo-body-font-family: 'SB Sans Text', sans-serif;\n --plasma-typo-header-font-family: 'SB Sans Display', sans-serif;\n --plasma-typo-text-font-family: 'SB Sans Text', sans-serif;\n --plasma-typo-dspl-l-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-l-letter-spacing: normal;\n --plasma-typo-dspl-l-font-style: normal;\n --plasma-typo-dspl-l-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-l-bold-letter-spacing: normal;\n --plasma-typo-dspl-l-bold-font-style: normal;\n --plasma-typo-dspl-m-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-m-letter-spacing: normal;\n --plasma-typo-dspl-m-font-style: normal;\n --plasma-typo-dspl-m-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-m-bold-letter-spacing: normal;\n --plasma-typo-dspl-m-bold-font-style: normal;\n --plasma-typo-dspl-s-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-s-letter-spacing: normal;\n --plasma-typo-dspl-s-font-style: normal;\n --plasma-typo-dspl-s-bold-font-family: var(--plasma-typo-display-font-family);\n --plasma-typo-dspl-s-bold-letter-spacing: normal;\n --plasma-typo-dspl-s-bold-font-style: normal;\n --plasma-typo-h1-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h1-letter-spacing: normal;\n --plasma-typo-h1-font-style: normal;\n --plasma-typo-h1-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h1-bold-letter-spacing: normal;\n --plasma-typo-h1-bold-font-style: normal;\n --plasma-typo-h2-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h2-letter-spacing: normal;\n --plasma-typo-h2-font-style: normal;\n --plasma-typo-h2-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h2-bold-letter-spacing: normal;\n --plasma-typo-h2-bold-font-style: normal;\n --plasma-typo-h3-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h3-letter-spacing: normal;\n --plasma-typo-h3-font-style: normal;\n --plasma-typo-h3-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h3-bold-letter-spacing: normal;\n --plasma-typo-h3-bold-font-style: normal;\n --plasma-typo-h4-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h4-letter-spacing: normal;\n --plasma-typo-h4-font-style: normal;\n --plasma-typo-h4-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h4-bold-letter-spacing: normal;\n --plasma-typo-h4-bold-font-style: normal;\n --plasma-typo-h5-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h5-letter-spacing: normal;\n --plasma-typo-h5-font-style: normal;\n --plasma-typo-h5-bold-font-family: var(--plasma-typo-header-font-family);\n --plasma-typo-h5-bold-letter-spacing: normal;\n --plasma-typo-h5-bold-font-style: normal;\n --plasma-typo-body-l-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-l-letter-spacing: -0.02em;\n --plasma-typo-body-l-font-style: normal;\n --plasma-typo-body-l-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-l-bold-letter-spacing: -0.02em;\n --plasma-typo-body-l-bold-font-style: normal;\n --plasma-typo-body-m-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-m-letter-spacing: -0.02em;\n --plasma-typo-body-m-font-style: normal;\n --plasma-typo-body-m-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-m-bold-letter-spacing: -0.02em;\n --plasma-typo-body-m-bold-font-style: normal;\n --plasma-typo-body-s-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-s-letter-spacing: -0.02em;\n --plasma-typo-body-s-font-style: normal;\n --plasma-typo-body-s-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-s-bold-letter-spacing: -0.02em;\n --plasma-typo-body-s-bold-font-style: normal;\n --plasma-typo-body-xs-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xs-letter-spacing: -0.02em;\n --plasma-typo-body-xs-font-style: normal;\n --plasma-typo-body-xs-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xs-bold-letter-spacing: -0.02em;\n --plasma-typo-body-xs-bold-font-style: normal;\n --plasma-typo-body-xxs-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xxs-letter-spacing: -0.02em;\n --plasma-typo-body-xxs-font-style: normal;\n --plasma-typo-body-xxs-bold-font-family: var(--plasma-typo-body-font-family);\n --plasma-typo-body-xxs-bold-letter-spacing: -0.02em;\n --plasma-typo-body-xxs-bold-font-style: normal;\n --plasma-typo-text-l-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-l-letter-spacing: -0.02em;\n --plasma-typo-text-l-font-style: normal;\n --plasma-typo-text-l-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-l-bold-letter-spacing: -0.02em;\n --plasma-typo-text-l-bold-font-style: normal;\n --plasma-typo-text-m-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-m-letter-spacing: -0.02em;\n --plasma-typo-text-m-font-style: normal;\n --plasma-typo-text-m-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-m-bold-letter-spacing: -0.02em;\n --plasma-typo-text-m-bold-font-style: normal;\n --plasma-typo-text-s-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-s-letter-spacing: -0.02em;\n --plasma-typo-text-s-font-style: normal;\n --plasma-typo-text-s-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-s-bold-letter-spacing: -0.02em;\n --plasma-typo-text-s-bold-font-style: normal;\n --plasma-typo-text-xs-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-xs-letter-spacing: -0.02em;\n --plasma-typo-text-xs-font-style: normal;\n --plasma-typo-text-xs-bold-font-family: var(--plasma-typo-text-font-family);\n --plasma-typo-text-xs-bold-letter-spacing: -0.02em;\n --plasma-typo-text-xs-bold-font-style: normal;\n}\n\n@media (max-width: 559px) {\n :root {\n --plasma-typo-dspl-l-font-size: 5.5rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 5.75rem;\n --plasma-typo-dspl-l-bold-font-size: 5.5rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 5.75rem;\n --plasma-typo-dspl-m-font-size: 3.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 3.875rem;\n --plasma-typo-dspl-m-bold-font-size: 3.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 3.875rem;\n --plasma-typo-dspl-s-font-size: 2.5rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 2.875rem;\n --plasma-typo-dspl-s-bold-font-size: 2.5rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 2.875rem;\n --plasma-typo-h1-font-size: 1.75rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 2.125rem;\n --plasma-typo-h1-bold-font-size: 1.75rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 2.125rem;\n --plasma-typo-h2-font-size: 1.5rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 1.875rem;\n --plasma-typo-h2-bold-font-size: 1.5rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 1.875rem;\n --plasma-typo-h3-font-size: 1.25rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.625rem;\n --plasma-typo-h3-bold-font-size: 1.25rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.625rem;\n --plasma-typo-h4-font-size: 1.125rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.5rem;\n --plasma-typo-h4-bold-font-size: 1.125rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.5rem;\n --plasma-typo-h5-font-size: 1rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.375rem;\n --plasma-typo-h5-bold-font-size: 1rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.375rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.125rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 1.625rem;\n --plasma-typo-text-l-bold-font-size: 1.125rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 1.625rem;\n --plasma-typo-text-m-font-size: 1rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.5rem;\n --plasma-typo-text-m-bold-font-size: 1rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.5rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}\n\n@media (min-width: 560px) and (max-width: 959px) {\n :root {\n --plasma-typo-dspl-l-font-size: 7rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 7rem;\n --plasma-typo-dspl-l-bold-font-size: 7rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 7rem;\n --plasma-typo-dspl-m-font-size: 4.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 4.75rem;\n --plasma-typo-dspl-m-bold-font-size: 4.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 4.75rem;\n --plasma-typo-dspl-s-font-size: 3rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 3.375rem;\n --plasma-typo-dspl-s-bold-font-size: 3rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 3.375rem;\n --plasma-typo-h1-font-size: 2.5rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 2.875rem;\n --plasma-typo-h1-bold-font-size: 2.5rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 2.875rem;\n --plasma-typo-h2-font-size: 1.75rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 2.125rem;\n --plasma-typo-h2-bold-font-size: 1.75rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 2.125rem;\n --plasma-typo-h3-font-size: 1.25rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.625rem;\n --plasma-typo-h3-bold-font-size: 1.25rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.625rem;\n --plasma-typo-h4-font-size: 1.125rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.5rem;\n --plasma-typo-h4-bold-font-size: 1.125rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.5rem;\n --plasma-typo-h5-font-size: 1rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.375rem;\n --plasma-typo-h5-bold-font-size: 1rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.375rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.25rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 1.75rem;\n --plasma-typo-text-l-bold-font-size: 1.25rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 1.75rem;\n --plasma-typo-text-m-font-size: 1rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.5rem;\n --plasma-typo-text-m-bold-font-size: 1rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.5rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}\n\n@media (min-width: 960px) {\n :root {\n --plasma-typo-dspl-l-font-size: 8rem;\n --plasma-typo-dspl-l-font-weight: 300;\n --plasma-typo-dspl-l-line-height: 8rem;\n --plasma-typo-dspl-l-bold-font-size: 8rem;\n --plasma-typo-dspl-l-bold-font-weight: 600;\n --plasma-typo-dspl-l-bold-line-height: 8rem;\n --plasma-typo-dspl-m-font-size: 5.5rem;\n --plasma-typo-dspl-m-font-weight: 300;\n --plasma-typo-dspl-m-line-height: 5.75rem;\n --plasma-typo-dspl-m-bold-font-size: 5.5rem;\n --plasma-typo-dspl-m-bold-font-weight: 600;\n --plasma-typo-dspl-m-bold-line-height: 5.75rem;\n --plasma-typo-dspl-s-font-size: 4rem;\n --plasma-typo-dspl-s-font-weight: 300;\n --plasma-typo-dspl-s-line-height: 4.25rem;\n --plasma-typo-dspl-s-bold-font-size: 4rem;\n --plasma-typo-dspl-s-bold-font-weight: 600;\n --plasma-typo-dspl-s-bold-line-height: 4.25rem;\n --plasma-typo-h1-font-size: 3rem;\n --plasma-typo-h1-font-weight: 400;\n --plasma-typo-h1-line-height: 3.375rem;\n --plasma-typo-h1-bold-font-size: 3rem;\n --plasma-typo-h1-bold-font-weight: 600;\n --plasma-typo-h1-bold-line-height: 3.375rem;\n --plasma-typo-h2-font-size: 2rem;\n --plasma-typo-h2-font-weight: 400;\n --plasma-typo-h2-line-height: 2.375rem;\n --plasma-typo-h2-bold-font-size: 2rem;\n --plasma-typo-h2-bold-font-weight: 600;\n --plasma-typo-h2-bold-line-height: 2.375rem;\n --plasma-typo-h3-font-size: 1.5rem;\n --plasma-typo-h3-font-weight: 400;\n --plasma-typo-h3-line-height: 1.875rem;\n --plasma-typo-h3-bold-font-size: 1.5rem;\n --plasma-typo-h3-bold-font-weight: 600;\n --plasma-typo-h3-bold-line-height: 1.875rem;\n --plasma-typo-h4-font-size: 1.25rem;\n --plasma-typo-h4-font-weight: 400;\n --plasma-typo-h4-line-height: 1.625rem;\n --plasma-typo-h4-bold-font-size: 1.25rem;\n --plasma-typo-h4-bold-font-weight: 600;\n --plasma-typo-h4-bold-line-height: 1.625rem;\n --plasma-typo-h5-font-size: 1.125rem;\n --plasma-typo-h5-font-weight: 400;\n --plasma-typo-h5-line-height: 1.5rem;\n --plasma-typo-h5-bold-font-size: 1.125rem;\n --plasma-typo-h5-bold-font-weight: 600;\n --plasma-typo-h5-bold-line-height: 1.5rem;\n --plasma-typo-body-l-font-size: 1.125rem;\n --plasma-typo-body-l-font-weight: 400;\n --plasma-typo-body-l-line-height: 1.375rem;\n --plasma-typo-body-l-bold-font-size: 1.125rem;\n --plasma-typo-body-l-bold-font-weight: 600;\n --plasma-typo-body-l-bold-line-height: 1.375rem;\n --plasma-typo-body-m-font-size: 1rem;\n --plasma-typo-body-m-font-weight: 400;\n --plasma-typo-body-m-line-height: 1.25rem;\n --plasma-typo-body-m-bold-font-size: 1rem;\n --plasma-typo-body-m-bold-font-weight: 600;\n --plasma-typo-body-m-bold-line-height: 1.25rem;\n --plasma-typo-body-s-font-size: 0.875rem;\n --plasma-typo-body-s-font-weight: 400;\n --plasma-typo-body-s-line-height: 1.125rem;\n --plasma-typo-body-s-bold-font-size: 0.875rem;\n --plasma-typo-body-s-bold-font-weight: 600;\n --plasma-typo-body-s-bold-line-height: 1.125rem;\n --plasma-typo-body-xs-font-size: 0.75rem;\n --plasma-typo-body-xs-font-weight: 400;\n --plasma-typo-body-xs-line-height: 0.875rem;\n --plasma-typo-body-xs-bold-font-size: 0.75rem;\n --plasma-typo-body-xs-bold-font-weight: 600;\n --plasma-typo-body-xs-bold-line-height: 0.875rem;\n --plasma-typo-body-xxs-font-size: 0.625rem;\n --plasma-typo-body-xxs-font-weight: 400;\n --plasma-typo-body-xxs-line-height: 0.75rem;\n --plasma-typo-body-xxs-bold-font-size: 0.625rem;\n --plasma-typo-body-xxs-bold-font-weight: 600;\n --plasma-typo-body-xxs-bold-line-height: 0.75rem;\n --plasma-typo-text-l-font-size: 1.5rem;\n --plasma-typo-text-l-font-weight: 400;\n --plasma-typo-text-l-line-height: 2rem;\n --plasma-typo-text-l-bold-font-size: 1.5rem;\n --plasma-typo-text-l-bold-font-weight: 600;\n --plasma-typo-text-l-bold-line-height: 2rem;\n --plasma-typo-text-m-font-size: 1.125rem;\n --plasma-typo-text-m-font-weight: 400;\n --plasma-typo-text-m-line-height: 1.625rem;\n --plasma-typo-text-m-bold-font-size: 1.125rem;\n --plasma-typo-text-m-bold-font-weight: 600;\n --plasma-typo-text-m-bold-line-height: 1.625rem;\n --plasma-typo-text-s-font-size: 0.875rem;\n --plasma-typo-text-s-font-weight: 400;\n --plasma-typo-text-s-line-height: 1.25rem;\n --plasma-typo-text-s-bold-font-size: 0.875rem;\n --plasma-typo-text-s-bold-font-weight: 600;\n --plasma-typo-text-s-bold-line-height: 1.25rem;\n --plasma-typo-text-xs-font-size: 0.75rem;\n --plasma-typo-text-xs-font-weight: 400;\n --plasma-typo-text-xs-line-height: 1rem;\n --plasma-typo-text-xs-bold-font-size: 0.75rem;\n --plasma-typo-text-xs-bold-font-weight: 600;\n --plasma-typo-text-xs-bold-line-height: 1rem;\n }\n}"];
3
3
  //# sourceMappingURL=plasma_b2c__dark.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plasma_b2c__dark.js","sourceRoot":"","sources":["../../src/themes/plasma_b2c__dark.ts"],"names":[],"mappings":"AAAA,oDAAoD;AAEpD,MAAM,CAAC,IAAM,gBAAgB,GAAG,CAAC,60kEA80C/B,CAAoC,CAAC"}
1
+ {"version":3,"file":"plasma_b2c__dark.js","sourceRoot":"","sources":["../../src/themes/plasma_b2c__dark.ts"],"names":[],"mappings":"AAAA,oDAAoD;AAEpD,MAAM,CAAC,IAAM,gBAAgB,GAAG,CAAC,wrlEAg2C/B,CAAoC,CAAC"}