@breadstone/mosaik-themes 0.0.30 → 0.0.32

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.
@@ -2,7 +2,6 @@
2
2
  @use 'sass:list';
3
3
  @use 'sass:meta';
4
4
  @use 'sass:string';
5
-
6
5
  @mixin _generate-elevation-vars($map, $prefix, $mode) {
7
6
  @each $key, $value in $map {
8
7
  @if meta.type-of($value) == 'map' {
@@ -16,7 +15,6 @@
16
15
  }
17
16
  }
18
17
  }
19
-
20
18
  @mixin _generate-elevation-composite($map, $prefix, $mode) {
21
19
  @each $key, $value in $map {
22
20
  @if meta.type-of($value) == 'map' {
@@ -32,7 +30,6 @@
32
30
  }
33
31
  }
34
32
  }
35
-
36
33
  @mixin _remap-elevation-vars($map, $prefix, $mode) {
37
34
  @each $key, $value in $map {
38
35
  @if meta.type-of($value) == 'map' {
@@ -47,24 +44,18 @@
47
44
  }
48
45
  }
49
46
  }
50
-
51
47
  @function box-shadow($x: 0px, $y: 0px, $blur: 0px, $spread: 0px, $color: rgba(0, 0, 0, 0.5), $inset: false) {
52
48
  $shadow: #{$x} #{$y} #{$blur} #{$spread} #{$color};
53
-
54
49
  @if $inset {
55
50
  $shadow: inset $shadow;
56
51
  }
57
-
58
52
  @return $shadow;
59
53
  }
60
-
61
54
  @function box-shadow-with-color($shadows, $new-color) {
62
55
  $output: ();
63
-
64
56
  @each $shadow in $shadows {
65
57
  $parts: ();
66
58
  $color: null;
67
-
68
59
  // break apart the shadow into components
69
60
  @each $part in $shadow {
70
61
  @if type-of($part) == 'color' {
@@ -73,15 +64,12 @@
73
64
  $parts: append($parts, $part);
74
65
  }
75
66
  }
76
-
77
67
  // append the new color in place of the original
78
68
  $parts: append($parts, $new-color);
79
69
  $output: append($output, $parts, comma);
80
70
  }
81
-
82
71
  @return $output;
83
72
  }
84
-
85
73
  $name: "cosmopolitan";
86
74
  $font-family: 'Noto Sans', sans-serif;
87
75
  $layout-radius: 3px;
@@ -288,11 +276,6 @@ $typography-button-font-family: $font-family;
288
276
  $elevation-key: $elevation-key-light $elevation-key-semilight $elevation-key-regular $elevation-key-semibold $elevation-key-bold $elevation-key-extrabold;
289
277
  $variant: $variant-primary;
290
278
  $size: $size-tiny $size-small $size-medium $size-large $size-giant;
291
-
292
-
293
-
294
-
295
-
296
279
  $_color-light: (
297
280
  primary: (
298
281
  0: $color-light-primary-0,
@@ -300,7 +283,6 @@ $_color-light: (
300
283
  500: $color-light-primary-500
301
284
  )
302
285
  );
303
-
304
286
  $_color-dark: (
305
287
  primary: (
306
288
  0: $color-dark-primary-0,
@@ -308,7 +290,6 @@ $_color-dark: (
308
290
  500: $color-dark-primary-500
309
291
  )
310
292
  );
311
-
312
293
  @mixin color-style($prefix) {
313
294
  :root,
314
295
  :host {
@@ -321,7 +302,6 @@ $_color-dark: (
321
302
  #{'--#{$prefix}-color-light-#{$palette-key}'}: #{$palette-steps};
322
303
  }
323
304
  }
324
-
325
305
  // remap the light colors to the default colors
326
306
  @each $palette-key, $palette-steps in $_color-light {
327
307
  @if meta.type-of($palette-steps) == 'map' {
@@ -332,7 +312,6 @@ $_color-dark: (
332
312
  #{'--#{$prefix}-color-light-#{$palette-key}'}: var(--#{$prefix}-color-#{$palette-key});
333
313
  }
334
314
  }
335
-
336
315
  &.dark,
337
316
  &[theme-mode='dark'] {
338
317
  @each $palette-key, $palette-steps in $_color-dark {
@@ -344,7 +323,6 @@ $_color-dark: (
344
323
  #{'--#{$prefix}-color-dark-#{$palette-key}'}: #{$palette-steps};
345
324
  }
346
325
  }
347
-
348
326
  // remap the dark colors to the default colors
349
327
  @each $palette-key, $palette-steps in $_color-dark {
350
328
  @if meta.type-of($palette-steps) == 'map' {
@@ -358,38 +336,31 @@ $_color-dark: (
358
336
  }
359
337
  }
360
338
  }
361
-
362
339
  @function get-color($variant, $level, $mode: '') {
363
340
  @if $mode == '' {
364
341
  @return var(--#{$name}-color-#{$variant}-#{$level});
365
342
  }
366
-
367
343
  @return var(--#{$name}-color-#{$mode}-#{$variant}-#{$level});
368
344
  }
369
-
370
345
  @mixin _scrollbar-style($prefix) {
371
346
  * {
372
347
  /* Firefox */
373
348
  scrollbar-color: var(--#{$prefix}-scheme-highlight) var(--#{$prefix}-scheme-transparent);
374
349
  scrollbar-width: thin;
375
-
376
350
  /* Styling the scrollbar in Chrome and Safari */
377
351
  &::-webkit-scrollbar {
378
352
  width: 10px;
379
353
  }
380
-
381
354
  /* Set thumb color for Chrome and Safari */
382
355
  &::-webkit-scrollbar-thumb {
383
356
  background-color: var(--#{$prefix}-scheme-highlight);
384
357
  }
385
-
386
358
  /* Set track color for Chrome and Safari */
387
359
  &::-webkit-scrollbar-track {
388
360
  background-color: var(--#{$prefix}-scheme-transparent);
389
361
  }
390
362
  }
391
363
  }
392
-
393
364
  @mixin _selection-style($prefix) {
394
365
  * {
395
366
  /* Set selection color */
@@ -400,17 +371,10 @@ $_color-dark: (
400
371
  }
401
372
  }
402
373
  }
403
-
404
374
  @mixin common-style($prefix) {
405
375
  @include _scrollbar-style($prefix);
406
376
  @include _selection-style($prefix);
407
377
  }
408
-
409
-
410
-
411
-
412
-
413
-
414
378
  $_shadows-light: (
415
379
  none: $elevation-none,
416
380
  light: (
@@ -509,8 +473,7 @@ $_shadows-light: (
509
473
  color: $elevation-light-extrabold-color-1
510
474
  )
511
475
  )
512
- );
513
-
476
+ );
514
477
  $_shadows-dark: (
515
478
  none: $elevation-none,
516
479
  light: (
@@ -609,16 +572,14 @@ $_shadows-dark: (
609
572
  color: $elevation-dark-extrabold-color-1
610
573
  )
611
574
  )
612
- );
613
-
575
+ );
614
576
  @mixin elevation-style($prefix) {
615
577
  :root,
616
578
  :host {
617
579
  $mode: 'light';
618
580
  @include _generate-elevation-vars($_shadows-light, $prefix, $mode);
619
581
  @include _generate-elevation-composite($_shadows-light, $prefix, $mode);
620
- @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
621
-
582
+ @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
622
583
  &.dark,
623
584
  &[theme-mode='dark'] {
624
585
  $mode: 'dark';
@@ -627,8 +588,7 @@ $_shadows-dark: (
627
588
  @include _remap-elevation-vars($_shadows-dark, $prefix, $mode);
628
589
  }
629
590
  }
630
- }
631
-
591
+ }
632
592
  @function get-elevation($weight, $mode: '') {
633
593
  $elevations: (
634
594
  '': (
@@ -642,25 +602,16 @@ $_shadows-dark: (
642
602
  ),
643
603
  'light': $shadows-light,
644
604
  'dark': $shadows-dark
645
- );
646
-
605
+ );
647
606
  @if (list.index($elevation-key, $weight) == false) {
648
607
  @error "Invalid weight: #{$weight}";
649
- }
650
-
608
+ }
651
609
  @return var(map.get(map.get($elevations, $mode), $weight));
652
- }
653
-
654
-
655
-
656
-
657
-
658
-
610
+ }
659
611
  $thickness-factor: $layout-thickness;
660
612
  $radius-factor: $layout-radius;
661
613
  $space-factor: $layout-space;
662
614
  $transition: $duration-short;
663
-
664
615
  @function _layout-palette($prefix, $radius, $thickness, $space, $transition: $transition) {
665
616
  $layouts: ();
666
617
  $layouts: map.merge(
@@ -687,13 +638,10 @@ $transition: $duration-short;
687
638
  '#{$prefix}-layout-transition': $transition
688
639
  )
689
640
  );
690
-
691
641
  @return $layouts;
692
642
  }
693
-
694
643
  @mixin _layout-style($prefix, $radius, $thickness, $space) {
695
644
  $palette: _layout-palette($prefix, $radius, $thickness, $space);
696
-
697
645
  @if list.length($palette) {
698
646
  :root,
699
647
  :host {
@@ -703,27 +651,21 @@ $transition: $duration-short;
703
651
  }
704
652
  }
705
653
  }
706
-
707
654
  @mixin layout-style($prefix, $radius: $radius-factor, $thickness: $thickness-factor, $space: $space-factor) {
708
655
  @include _layout-style($prefix, $radius, $thickness, $space);
709
656
  }
710
-
711
657
  @function get-layout($key) {
712
658
  $layouts: (
713
659
  'radius': --#{$name}-layout-radius,
714
660
  'space': --#{$name}-layout-space,
715
661
  'thickness': --#{$name}-layout-thickness
716
662
  );
717
-
718
663
  @if map-has-key($layouts, $key) {
719
664
  @return var(map-get($layouts, $key));
720
665
  } @else {
721
666
  @error "Invalid layout value: #{$key}";
722
667
  }
723
668
  }
724
-
725
-
726
-
727
669
  $scheme-light: (
728
670
  contrast: $scheme-light-contrast,
729
671
  background: $scheme-light-background,
@@ -735,7 +677,6 @@ $scheme-light: (
735
677
  semi-transparent: $scheme-light-semi-transparent,
736
678
  disabled: $scheme-light-disabled
737
679
  );
738
-
739
680
  $scheme-dark: (
740
681
  contrast: $scheme-dark-contrast,
741
682
  background: $scheme-dark-background,
@@ -747,31 +688,26 @@ $scheme-dark: (
747
688
  semi-transparent: $scheme-dark-semi-transparent,
748
689
  disabled: $scheme-dark-disabled
749
690
  );
750
-
751
691
  @mixin scheme-style($prefix) {
752
692
  :root,
753
693
  :host {
754
694
  @each $key, $value in $scheme-light {
755
695
  #{'--#{$prefix}-scheme-light-#{$key}'}: #{$value};
756
696
  }
757
-
758
697
  @each $key, $value in $scheme-light {
759
698
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-light-#{$key});
760
699
  }
761
-
762
700
  &.dark,
763
701
  &[theme-mode='dark'] {
764
702
  @each $key, $value in $scheme-dark {
765
703
  #{'--#{$prefix}-scheme-dark-#{$key}'}: #{$value};
766
704
  }
767
-
768
705
  @each $key, $value in $scheme-dark {
769
706
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-dark-#{$key});
770
707
  }
771
708
  }
772
709
  }
773
710
  }
774
-
775
711
  @function get-scheme($key, $mode: '') {
776
712
  $schemes: (
777
713
  '': (
@@ -805,21 +741,14 @@ $scheme-dark: (
805
741
  'disabled': --#{$name}-scheme-dark-disabled
806
742
  )
807
743
  );
808
-
809
744
  @if map-has-key($schemes, $mode) and map-has-key(map-get($schemes, $mode), $key) {
810
745
  @return var(map-get(map-get($schemes, $mode), $key));
811
746
  } @else {
812
747
  @error "Invalid scheme key: #{$key} or mode: #{$mode}";
813
748
  }
814
749
  }
815
-
816
-
817
-
818
-
819
-
820
750
  @function _typography-palette() {
821
- $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
822
-
751
+ $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
823
752
  $scale-styles: (
824
753
  'typography': $base-styles,
825
754
  'typography-heading': (
@@ -849,33 +778,26 @@ $scheme-dark: (
849
778
  text-decoration: $typography-button-text-decoration,
850
779
  text-transform: $typography-button-text-transform
851
780
  )
852
- );
853
-
781
+ );
854
782
  @each $style, $style-props in $scale-styles {
855
783
  // Merge base properties for all styles.
856
784
  $style-props: map.merge($base-styles, $style-props);
857
785
  // Override original styles with new styles.
858
786
  $scale-styles: map.merge($scale-styles, (#{$style}: $style-props));
859
- }
860
-
787
+ }
861
788
  @return $scale-styles;
862
- }
863
-
789
+ }
864
790
  @mixin typography-style($prefix) {
865
- $typographies-map: _typography-palette();
866
-
791
+ $typographies-map: _typography-palette();
867
792
  :root,
868
793
  :host {
869
- --#{$prefix}-font-family: #{$font-family};
870
-
794
+ --#{$prefix}-font-family: #{$font-family};
871
795
  @each $style in map.keys($typographies-map) {
872
796
  @if $style != 'typography' {
873
797
  @if not map.has-key($typographies-map, $style) {
874
798
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
875
- }
876
-
877
- $style-props: map.get($typographies-map, $style);
878
-
799
+ }
800
+ $style-props: map.get($typographies-map, $style);
879
801
  --#{$prefix}-typography-#{$style}-font-family: #{map.get($style-props, 'font-family')};
880
802
  --#{$prefix}-typography-#{$style}-font-size: #{map.get($style-props, 'font-size')};
881
803
  --#{$prefix}-typography-#{$style}-line-height: #{map.get($style-props, 'line-height')};
@@ -886,23 +808,19 @@ $scheme-dark: (
886
808
  --#{$prefix}-typography-#{$style}: #{map.get($style-props, 'font-weight')} #{map.get($style-props, 'font-size')}/#{map.get($style-props, 'line-height')} #{map.get($style-props, 'font-family')};
887
809
  }
888
810
  }
889
- }
890
-
811
+ }
891
812
  @each $style in map.keys($typographies-map) {
892
813
  .#{$style} {
893
- $style-props: map.get($typographies-map, $style);
894
-
814
+ $style-props: map.get($typographies-map, $style);
895
815
  @if not map.has-key($typographies-map, $style) {
896
816
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
897
- }
898
-
817
+ }
899
818
  @each $key, $value in $style-props {
900
819
  #{$key}: $value;
901
820
  }
902
821
  }
903
822
  }
904
- }
905
-
823
+ }
906
824
  @function get-typography($type, $property) {
907
825
  $properties: (
908
826
  'font-family': --#{$name}-typography-#{$type}-font-family,
@@ -912,39 +830,25 @@ $scheme-dark: (
912
830
  'letter-spacing': --#{$name}-typography-#{$type}-letter-spacing,
913
831
  'text-decoration': --#{$name}-typography-#{$type}-text-decoration,
914
832
  'text-transform': --#{$name}-typography-#{$type}-text-transform
915
- );
916
-
833
+ );
917
834
  @if map-has-key($properties, $property) {
918
835
  @return var(map-get($properties, $property));
919
836
  } @else {
920
837
  @error "Invalid typography property: #{$property}";
921
838
  }
922
- }
923
-
924
-
925
-
926
-
927
-
928
-
929
-
930
-
931
-
839
+ }
932
840
  @mixin cosmopolitan-style($radius: $layout-radius, $thickness: $layout-thickness, $space: $layout-space) {
933
841
  $theme: 'cosmopolitan';
934
-
935
842
  @include layout-style($theme, $radius, $thickness, $space);
936
843
  @include scheme-style($theme);
937
844
  @include color-style($theme);
938
845
  @include elevation-style($theme);
939
846
  @include typography-style($theme);
940
847
  @include common-style($theme);
941
-
942
848
  :host {
943
849
  @content;
944
850
  }
945
851
  }
946
-
947
-
948
852
  $absolute-props: (
949
853
  'font-family': "unset",
950
854
  'font-size': "unset",
@@ -962,8 +866,7 @@ $absolute-props: (
962
866
  'transition-mode': "unset",
963
867
  'transition-property': unset,
964
868
  'translate': "unset"
965
- );
966
-
869
+ );
967
870
  $absolute-item-props: (
968
871
  'font-family': "unset",
969
872
  'font-size': "unset",
@@ -981,8 +884,7 @@ $absolute-item-props: (
981
884
  'transition-mode': "unset",
982
885
  'transition-property': unset,
983
886
  'translate': "unset"
984
- );
985
-
887
+ );
986
888
  $accordion-props: (
987
889
  'font-family': "unset",
988
890
  'font-size': "unset",
@@ -1000,8 +902,7 @@ $accordion-props: (
1000
902
  'transition-mode': "unset",
1001
903
  'transition-property': unset,
1002
904
  'translate': "unset"
1003
- );
1004
-
905
+ );
1005
906
  $alert-props: (
1006
907
  'font-family': "unset",
1007
908
  'font-size': "unset",
@@ -1019,8 +920,7 @@ $alert-props: (
1019
920
  'transition-mode': "unset",
1020
921
  'transition-property': unset,
1021
922
  'translate': "unset"
1022
- );
1023
-
923
+ );
1024
924
  $anchor-props: (
1025
925
  'font-family': var(--cosmopolitan-typography-content-font-family),
1026
926
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1041,8 +941,7 @@ $anchor-props: (
1041
941
  'background-color': var(--cosmopolitan-scheme-background),
1042
942
  'border-color': var(--cosmopolitan-scheme-highlight),
1043
943
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1044
- );
1045
-
944
+ );
1046
945
  $app-props: (
1047
946
  'font-family': var(--cosmopolitan-typography-body1-font-family),
1048
947
  'font-size': var(--cosmopolitan-typography-body1-font-size),
@@ -1062,8 +961,7 @@ $app-props: (
1062
961
  'translate': "unset",
1063
962
  'background-color': var(--cosmopolitan-scheme-background),
1064
963
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1065
- );
1066
-
964
+ );
1067
965
  $app-header-props: (
1068
966
  'font-family': var(--cosmopolitan-typography-headline6-font-family),
1069
967
  'font-size': var(--cosmopolitan-typography-headline6-font-size),
@@ -1087,8 +985,7 @@ $app-header-props: (
1087
985
  'border-style': solid,
1088
986
  'border-width': var(--cosmopolitan-layout-thickness),
1089
987
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1090
- );
1091
-
988
+ );
1092
989
  $auto-complete-box-props: (
1093
990
  'font-family': "unset",
1094
991
  'font-size': "unset",
@@ -1117,8 +1014,7 @@ $auto-complete-box-props: (
1117
1014
  'shadow-offset-x': unset,
1118
1015
  'shadow-offset-y': unset,
1119
1016
  'shadow-spread': unset
1120
- );
1121
-
1017
+ );
1122
1018
  $avatar-props: (
1123
1019
  'font-family': unset,
1124
1020
  'font-size': unset,
@@ -1153,8 +1049,7 @@ $avatar-props: (
1153
1049
  'shadow-offset-x': unset,
1154
1050
  'shadow-offset-y': unset,
1155
1051
  'shadow-spread': unset
1156
- );
1157
-
1052
+ );
1158
1053
  $avatar-group-props: (
1159
1054
  'font-family': unset,
1160
1055
  'font-size': unset,
@@ -1183,8 +1078,7 @@ $avatar-group-props: (
1183
1078
  'shadow-offset-x': unset,
1184
1079
  'shadow-offset-y': unset,
1185
1080
  'shadow-spread': unset
1186
- );
1187
-
1081
+ );
1188
1082
  $back-top-props: (
1189
1083
  'font-family': "unset",
1190
1084
  'font-size': "unset",
@@ -1202,8 +1096,7 @@ $back-top-props: (
1202
1096
  'transition-mode': "unset",
1203
1097
  'transition-property': unset,
1204
1098
  'translate': "unset"
1205
- );
1206
-
1099
+ );
1207
1100
  $backdrop-props: (
1208
1101
  'font-family': "unset",
1209
1102
  'font-size': "unset",
@@ -1222,8 +1115,7 @@ $backdrop-props: (
1222
1115
  'transition-property': opacity,
1223
1116
  'translate': "unset",
1224
1117
  'background-color': var(--cosmopolitan-scheme-semi-transparent)
1225
- );
1226
-
1118
+ );
1227
1119
  $badge-props: (
1228
1120
  'font-family': unset,
1229
1121
  'font-size': unset,
@@ -1248,8 +1140,7 @@ $badge-props: (
1248
1140
  'border-width': unset,
1249
1141
  'foreground-color': unset,
1250
1142
  'size': unset
1251
- );
1252
-
1143
+ );
1253
1144
  $banner-props: (
1254
1145
  'font-family': unset,
1255
1146
  'font-size': unset,
@@ -1274,8 +1165,7 @@ $banner-props: (
1274
1165
  'border-width': unset,
1275
1166
  'foreground-color': unset,
1276
1167
  'shadow': unset
1277
- );
1278
-
1168
+ );
1279
1169
  $banner-header-props: (
1280
1170
  'font-family': unset,
1281
1171
  'font-size': unset,
@@ -1296,8 +1186,7 @@ $banner-header-props: (
1296
1186
  'background-color': unset,
1297
1187
  'border-color': unset,
1298
1188
  'foreground-color': unset
1299
- );
1300
-
1189
+ );
1301
1190
  $banner-sub-header-props: (
1302
1191
  'font-family': unset,
1303
1192
  'font-size': unset,
@@ -1318,8 +1207,7 @@ $banner-sub-header-props: (
1318
1207
  'background-color': unset,
1319
1208
  'border-color': unset,
1320
1209
  'foreground-color': unset
1321
- );
1322
-
1210
+ );
1323
1211
  $bottom-sheet-props: (
1324
1212
  'font-family': unset,
1325
1213
  'font-size': unset,
@@ -1342,8 +1230,7 @@ $bottom-sheet-props: (
1342
1230
  'border-width': unset,
1343
1231
  'foreground-color': unset,
1344
1232
  'translate-y': unset
1345
- );
1346
-
1233
+ );
1347
1234
  $box-props: (
1348
1235
  'font-family': "unset",
1349
1236
  'font-size': "unset",
@@ -1366,9 +1253,10 @@ $box-props: (
1366
1253
  'border-radius': unset,
1367
1254
  'border-style': unset,
1368
1255
  'border-width': unset,
1369
- 'foreground-color': unset
1370
- );
1371
-
1256
+ 'foreground-color': unset,
1257
+ 'height': auto,
1258
+ 'width': auto
1259
+ );
1372
1260
  $breadcrumb-props: (
1373
1261
  'font-family': unset,
1374
1262
  'font-size': unset,
@@ -1386,8 +1274,7 @@ $breadcrumb-props: (
1386
1274
  'transition-mode': unset,
1387
1275
  'transition-property': unset,
1388
1276
  'translate': unset
1389
- );
1390
-
1277
+ );
1391
1278
  $breadcrumb-item-props: (
1392
1279
  'font-family': unset,
1393
1280
  'font-size': unset,
@@ -1405,8 +1292,7 @@ $breadcrumb-item-props: (
1405
1292
  'transition-mode': unset,
1406
1293
  'transition-property': unset,
1407
1294
  'translate': unset
1408
- );
1409
-
1295
+ );
1410
1296
  $button-props: (
1411
1297
  'font-family': var(--cosmopolitan-typography-button-font-family),
1412
1298
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -1429,12 +1315,12 @@ $button-props: (
1429
1315
  'border-radius': var(--cosmopolitan-layout-radius),
1430
1316
  'border-style': solid,
1431
1317
  'border-width': var(--cosmopolitan-layout-thickness),
1318
+ 'focus-ring-color': var(--cosmopolitan-scheme-highlight),
1432
1319
  'foreground-color': var(--cosmopolitan-scheme-foreground),
1433
1320
  'height': auto,
1434
1321
  'progress-thickness': var(--cosmopolitan-layout-thickness),
1435
1322
  'width': auto
1436
- );
1437
-
1323
+ );
1438
1324
  $button-group-props: (
1439
1325
  'font-family': unset,
1440
1326
  'font-size': unset,
@@ -1458,8 +1344,7 @@ $button-group-props: (
1458
1344
  'border-style': unset,
1459
1345
  'border-width': unset,
1460
1346
  'foreground-color': unset
1461
- );
1462
-
1347
+ );
1463
1348
  $calendar-props: (
1464
1349
  'font-family': var(--cosmopolitan-typography-content-font-family),
1465
1350
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1484,8 +1369,7 @@ $calendar-props: (
1484
1369
  'border-width': var(--cosmopolitan-layout-thickness),
1485
1370
  'divider-height': 1px,
1486
1371
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1487
- );
1488
-
1372
+ );
1489
1373
  $calendar-days-view-props: (
1490
1374
  'font-family': "unset",
1491
1375
  'font-size': "unset",
@@ -1503,8 +1387,7 @@ $calendar-days-view-props: (
1503
1387
  'transition-mode': "unset",
1504
1388
  'transition-property': unset,
1505
1389
  'translate': "unset"
1506
- );
1507
-
1390
+ );
1508
1391
  $calendar-header-props: (
1509
1392
  'font-family': "unset",
1510
1393
  'font-size': "unset",
@@ -1528,8 +1411,7 @@ $calendar-header-props: (
1528
1411
  'border-style': solid,
1529
1412
  'border-width': var(--cosmopolitan-layout-thickness),
1530
1413
  'foreground-color': var(--cosmopolitan-scheme-lowlight)
1531
- );
1532
-
1414
+ );
1533
1415
  $calendar-item-props: (
1534
1416
  'font-family': var(--cosmopolitan-font-family),
1535
1417
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1553,8 +1435,7 @@ $calendar-item-props: (
1553
1435
  'border-style': solid,
1554
1436
  'border-width': 0,
1555
1437
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1556
- );
1557
-
1438
+ );
1558
1439
  $calendar-months-view-props: (
1559
1440
  'font-family': "unset",
1560
1441
  'font-size': "unset",
@@ -1572,8 +1453,7 @@ $calendar-months-view-props: (
1572
1453
  'transition-mode': "unset",
1573
1454
  'transition-property': unset,
1574
1455
  'translate': "unset"
1575
- );
1576
-
1456
+ );
1577
1457
  $calendar-sub-header-props: (
1578
1458
  'font-family': "unset",
1579
1459
  'font-size': 18px,
@@ -1599,8 +1479,7 @@ $calendar-sub-header-props: (
1599
1479
  'font': var(--calendar-sub-header-font-weight) var(--calendar-sub-header-font-size) / var(--calendar-sub-header-line-height) var(--calendar-sub-header-font-family),
1600
1480
  'foreground-color': var(--cosmopolitan-scheme-foreground),
1601
1481
  'line-height': 22px
1602
- );
1603
-
1482
+ );
1604
1483
  $calendar-years-view-props: (
1605
1484
  'font-family': "unset",
1606
1485
  'font-size': "unset",
@@ -1618,8 +1497,7 @@ $calendar-years-view-props: (
1618
1497
  'transition-mode': "unset",
1619
1498
  'transition-property': unset,
1620
1499
  'translate': "unset"
1621
- );
1622
-
1500
+ );
1623
1501
  $camera-props: (
1624
1502
  'font-family': "unset",
1625
1503
  'font-size': "unset",
@@ -1640,8 +1518,7 @@ $camera-props: (
1640
1518
  'background-color': unset,
1641
1519
  'border-radius': unset,
1642
1520
  'foreground-color': unset
1643
- );
1644
-
1521
+ );
1645
1522
  $card-props: (
1646
1523
  'font-family': unset,
1647
1524
  'font-size': unset,
@@ -1671,8 +1548,7 @@ $card-props: (
1671
1548
  'shadow-offset-x': unset,
1672
1549
  'shadow-offset-y': unset,
1673
1550
  'shadow-spread': unset
1674
- );
1675
-
1551
+ );
1676
1552
  $card-actions-props: (
1677
1553
  'font-family': "unset",
1678
1554
  'font-size': "unset",
@@ -1690,8 +1566,7 @@ $card-actions-props: (
1690
1566
  'transition-mode': "unset",
1691
1567
  'transition-property': unset,
1692
1568
  'translate': "unset"
1693
- );
1694
-
1569
+ );
1695
1570
  $card-content-props: (
1696
1571
  'font-family': "unset",
1697
1572
  'font-size': "unset",
@@ -1709,8 +1584,7 @@ $card-content-props: (
1709
1584
  'transition-mode': "unset",
1710
1585
  'transition-property': unset,
1711
1586
  'translate': "unset"
1712
- );
1713
-
1587
+ );
1714
1588
  $card-footer-props: (
1715
1589
  'font-family': "unset",
1716
1590
  'font-size': "unset",
@@ -1728,8 +1602,7 @@ $card-footer-props: (
1728
1602
  'transition-mode': "unset",
1729
1603
  'transition-property': unset,
1730
1604
  'translate': "unset"
1731
- );
1732
-
1605
+ );
1733
1606
  $card-header-props: (
1734
1607
  'font-family': "unset",
1735
1608
  'font-size': "unset",
@@ -1747,8 +1620,7 @@ $card-header-props: (
1747
1620
  'transition-mode': "unset",
1748
1621
  'transition-property': unset,
1749
1622
  'translate': "unset"
1750
- );
1751
-
1623
+ );
1752
1624
  $card-sub-title-props: (
1753
1625
  'font-family': unset,
1754
1626
  'font-size': unset,
@@ -1769,8 +1641,7 @@ $card-sub-title-props: (
1769
1641
  'background-color': unset,
1770
1642
  'border-color': unset,
1771
1643
  'foreground-color': unset
1772
- );
1773
-
1644
+ );
1774
1645
  $card-title-props: (
1775
1646
  'font-family': unset,
1776
1647
  'font-size': unset,
@@ -1791,8 +1662,7 @@ $card-title-props: (
1791
1662
  'background-color': unset,
1792
1663
  'border-color': unset,
1793
1664
  'foreground-color': unset
1794
- );
1795
-
1665
+ );
1796
1666
  $carousel-props: (
1797
1667
  'font-family': "unset",
1798
1668
  'font-size': "unset",
@@ -1810,8 +1680,7 @@ $carousel-props: (
1810
1680
  'transition-mode': "unset",
1811
1681
  'transition-property': unset,
1812
1682
  'translate': "unset"
1813
- );
1814
-
1683
+ );
1815
1684
  $carousel2-props: (
1816
1685
  'font-family': "unset",
1817
1686
  'font-size': "unset",
@@ -1829,8 +1698,7 @@ $carousel2-props: (
1829
1698
  'transition-mode': "unset",
1830
1699
  'transition-property': unset,
1831
1700
  'translate': "unset"
1832
- );
1833
-
1701
+ );
1834
1702
  $carousel-item-props: (
1835
1703
  'font-family': "unset",
1836
1704
  'font-size': "unset",
@@ -1848,8 +1716,7 @@ $carousel-item-props: (
1848
1716
  'transition-mode': "unset",
1849
1717
  'transition-property': unset,
1850
1718
  'translate': "unset"
1851
- );
1852
-
1719
+ );
1853
1720
  $carousel-item2-props: (
1854
1721
  'font-family': "unset",
1855
1722
  'font-size': "unset",
@@ -1867,8 +1734,7 @@ $carousel-item2-props: (
1867
1734
  'transition-mode': "unset",
1868
1735
  'transition-property': unset,
1869
1736
  'translate': "unset"
1870
- );
1871
-
1737
+ );
1872
1738
  $cell-props: (
1873
1739
  'font-family': "unset",
1874
1740
  'font-size': "unset",
@@ -1893,8 +1759,7 @@ $cell-props: (
1893
1759
  'sub-font-text-decoration': var(--cosmopolitan-typography-content-text-decoration),
1894
1760
  'sub-font-text-transform': var(--cosmopolitan-typography-content-text-transform),
1895
1761
  'sub-font-weight': var(--cosmopolitan-typography-content-font-weight)
1896
- );
1897
-
1762
+ );
1898
1763
  $cell-group-props: (
1899
1764
  'font-family': var(--cosmopolitan-font-family),
1900
1765
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -1918,8 +1783,7 @@ $cell-group-props: (
1918
1783
  'border-width': var(--cosmopolitan-layout-thickness),
1919
1784
  'inline-end': 0,
1920
1785
  'inline-start': calc(var(--joy-layout-space)*2)
1921
- );
1922
-
1786
+ );
1923
1787
  $chart-props: (
1924
1788
  'font-family': var(--cosmopolitan-typography-header-font-family),
1925
1789
  'font-size': var(--cosmopolitan-typography-header-font-size),
@@ -1939,8 +1803,7 @@ $chart-props: (
1939
1803
  'translate': "unset",
1940
1804
  'background-color': var(--cosmopolitan-scheme-background),
1941
1805
  'foreground-color': var(--cosmopolitan-scheme-foreground)
1942
- );
1943
-
1806
+ );
1944
1807
  $chat-props: (
1945
1808
  'font-family': unset,
1946
1809
  'font-size': unset,
@@ -1966,8 +1829,7 @@ $chat-props: (
1966
1829
  'focus-ring-outward-offset': unset,
1967
1830
  'foreground-color': unset,
1968
1831
  'shadow': unset
1969
- );
1970
-
1832
+ );
1971
1833
  $chat-header-props: (
1972
1834
  'font-family': "unset",
1973
1835
  'font-size': "unset",
@@ -1986,8 +1848,7 @@ $chat-header-props: (
1986
1848
  'transition-property': unset,
1987
1849
  'translate': "unset",
1988
1850
  'height': unset
1989
- );
1990
-
1851
+ );
1991
1852
  $chat-input-props: (
1992
1853
  'font-family': "unset",
1993
1854
  'font-size': "unset",
@@ -2006,8 +1867,7 @@ $chat-input-props: (
2006
1867
  'transition-property': unset,
2007
1868
  'translate': "unset",
2008
1869
  'emoji-background-color': unset
2009
- );
2010
-
1870
+ );
2011
1871
  $chat-marker-props: (
2012
1872
  'font-family': unset,
2013
1873
  'font-size': unset,
@@ -2032,8 +1892,7 @@ $chat-marker-props: (
2032
1892
  'border-width': unset,
2033
1893
  'foreground-color': unset,
2034
1894
  'shadow': unset
2035
- );
2036
-
1895
+ );
2037
1896
  $chat-message-props: (
2038
1897
  'font-family': unset,
2039
1898
  'font-size': unset,
@@ -2058,8 +1917,7 @@ $chat-message-props: (
2058
1917
  'border-width': unset,
2059
1918
  'foreground-color': unset,
2060
1919
  'shadow': unset
2061
- );
2062
-
1920
+ );
2063
1921
  $chat-message-avatar-props: (
2064
1922
  'font-family': "unset",
2065
1923
  'font-size': "unset",
@@ -2077,8 +1935,7 @@ $chat-message-avatar-props: (
2077
1935
  'transition-mode': "unset",
2078
1936
  'transition-property': unset,
2079
1937
  'translate': "unset"
2080
- );
2081
-
1938
+ );
2082
1939
  $chat-message-divider-props: (
2083
1940
  'font-family': "unset",
2084
1941
  'font-size': "unset",
@@ -2096,8 +1953,7 @@ $chat-message-divider-props: (
2096
1953
  'transition-mode': "unset",
2097
1954
  'transition-property': unset,
2098
1955
  'translate': "unset"
2099
- );
2100
-
1956
+ );
2101
1957
  $check-box-group-props: (
2102
1958
  'font-family': "unset",
2103
1959
  'font-size': "unset",
@@ -2122,8 +1978,7 @@ $check-box-group-props: (
2122
1978
  'border-width': unset,
2123
1979
  'foreground-color': unset,
2124
1980
  'shadow': unset
2125
- );
2126
-
1981
+ );
2127
1982
  $check-box-props: (
2128
1983
  'font-family': var(--cosmopolitan-font-family),
2129
1984
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -2148,8 +2003,7 @@ $check-box-props: (
2148
2003
  'border-width': var(--cosmopolitan-layout-thickness),
2149
2004
  'foreground-color': var(--cosmopolitan-scheme-foreground),
2150
2005
  'shadow': var(--cosmopolitan-elevation-none)
2151
- );
2152
-
2006
+ );
2153
2007
  $checkmark-props: (
2154
2008
  'font-family': "unset",
2155
2009
  'font-size': "unset",
@@ -2178,8 +2032,7 @@ $checkmark-props: (
2178
2032
  'shadow': unset,
2179
2033
  'thickness': unset,
2180
2034
  'width': unset
2181
- );
2182
-
2035
+ );
2183
2036
  $chip-props: (
2184
2037
  'font-family': unset,
2185
2038
  'font-size': unset,
@@ -2206,8 +2059,7 @@ $chip-props: (
2206
2059
  'foreground-color': unset,
2207
2060
  'height': unset,
2208
2061
  'shadow': unset
2209
- );
2210
-
2062
+ );
2211
2063
  $chip-box-props: (
2212
2064
  'font-family': "unset",
2213
2065
  'font-size': "unset",
@@ -2233,8 +2085,7 @@ $chip-box-props: (
2233
2085
  'foreground-color': unset,
2234
2086
  'height': unset,
2235
2087
  'shadow': unset
2236
- );
2237
-
2088
+ );
2238
2089
  $choice-props: (
2239
2090
  'font-family': unset,
2240
2091
  'font-size': unset,
@@ -2262,8 +2113,7 @@ $choice-props: (
2262
2113
  'focus-ring-outward-offset': unset,
2263
2114
  'foreground-color': unset,
2264
2115
  'shadow': unset
2265
- );
2266
-
2116
+ );
2267
2117
  $choice-group-props: (
2268
2118
  'font-family': "unset",
2269
2119
  'font-size': "unset",
@@ -2288,8 +2138,7 @@ $choice-group-props: (
2288
2138
  'border-width': unset,
2289
2139
  'foreground-color': unset,
2290
2140
  'shadow': unset
2291
- );
2292
-
2141
+ );
2293
2142
  $choice-group-header-props: (
2294
2143
  'font-family': "unset",
2295
2144
  'font-size': "unset",
@@ -2314,8 +2163,7 @@ $choice-group-header-props: (
2314
2163
  'border-width': unset,
2315
2164
  'foreground-color': unset,
2316
2165
  'shadow': unset
2317
- );
2318
-
2166
+ );
2319
2167
  $code-props: (
2320
2168
  'font-family': "unset",
2321
2169
  'font-size': "unset",
@@ -2334,8 +2182,7 @@ $code-props: (
2334
2182
  'transition-property': unset,
2335
2183
  'translate': "unset",
2336
2184
  'foreground-color': unset
2337
- );
2338
-
2185
+ );
2339
2186
  $color-area-props: (
2340
2187
  'font-family': "unset",
2341
2188
  'font-size': "unset",
@@ -2353,8 +2200,7 @@ $color-area-props: (
2353
2200
  'transition-mode': "unset",
2354
2201
  'transition-property': unset,
2355
2202
  'translate': "unset"
2356
- );
2357
-
2203
+ );
2358
2204
  $color-box-props: (
2359
2205
  'font-family': "unset",
2360
2206
  'font-size': "unset",
@@ -2380,8 +2226,7 @@ $color-box-props: (
2380
2226
  'foreground-color': unset,
2381
2227
  'height': unset,
2382
2228
  'shadow': unset
2383
- );
2384
-
2229
+ );
2385
2230
  $color-picker-props: (
2386
2231
  'font-family': unset,
2387
2232
  'font-size': unset,
@@ -2406,8 +2251,7 @@ $color-picker-props: (
2406
2251
  'border-width': unset,
2407
2252
  'foreground-color': unset,
2408
2253
  'size': unset
2409
- );
2410
-
2254
+ );
2411
2255
  $color-slider-props: (
2412
2256
  'font-family': "unset",
2413
2257
  'font-size': "unset",
@@ -2432,8 +2276,7 @@ $color-slider-props: (
2432
2276
  'border-width': unset,
2433
2277
  'foreground-color': unset,
2434
2278
  'shadow': unset
2435
- );
2436
-
2279
+ );
2437
2280
  $color-swatch-props: (
2438
2281
  'font-family': unset,
2439
2282
  'font-size': unset,
@@ -2458,8 +2301,7 @@ $color-swatch-props: (
2458
2301
  'border-width': unset,
2459
2302
  'foreground-color': unset,
2460
2303
  'size': unset
2461
- );
2462
-
2304
+ );
2463
2305
  $color-swatch-group-props: (
2464
2306
  'font-family': unset,
2465
2307
  'font-size': unset,
@@ -2484,8 +2326,7 @@ $color-swatch-group-props: (
2484
2326
  'border-width': unset,
2485
2327
  'foreground-color': unset,
2486
2328
  'shadow': unset
2487
- );
2488
-
2329
+ );
2489
2330
  $color-thumb-props: (
2490
2331
  'font-family': unset,
2491
2332
  'font-size': unset,
@@ -2510,8 +2351,7 @@ $color-thumb-props: (
2510
2351
  'border-width': unset,
2511
2352
  'foreground-color': unset,
2512
2353
  'size': unset
2513
- );
2514
-
2354
+ );
2515
2355
  $combo-props: (
2516
2356
  'font-family': "unset",
2517
2357
  'font-size': "unset",
@@ -2529,8 +2369,7 @@ $combo-props: (
2529
2369
  'transition-mode': "unset",
2530
2370
  'transition-property': unset,
2531
2371
  'translate': "unset"
2532
- );
2533
-
2372
+ );
2534
2373
  $combo-item-props: (
2535
2374
  'font-family': unset,
2536
2375
  'font-size': unset,
@@ -2555,8 +2394,7 @@ $combo-item-props: (
2555
2394
  'border-width': unset,
2556
2395
  'foreground-color': unset,
2557
2396
  'shadow': unset
2558
- );
2559
-
2397
+ );
2560
2398
  $comment-props: (
2561
2399
  'font-family': "unset",
2562
2400
  'font-size': "unset",
@@ -2576,8 +2414,7 @@ $comment-props: (
2576
2414
  'translate': "unset",
2577
2415
  'inner-gap': unset,
2578
2416
  'nested-indent': unset
2579
- );
2580
-
2417
+ );
2581
2418
  $compound-button-props: (
2582
2419
  'font-family': var(--cosmopolitan-typography-button-font-family),
2583
2420
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -2604,8 +2441,7 @@ $compound-button-props: (
2604
2441
  'height': auto,
2605
2442
  'shadow': var(--cosmopolitan-elevation-none),
2606
2443
  'width': auto
2607
- );
2608
-
2444
+ );
2609
2445
  $content-props: (
2610
2446
  'font-family': "unset",
2611
2447
  'font-size': "unset",
@@ -2623,8 +2459,7 @@ $content-props: (
2623
2459
  'transition-mode': "unset",
2624
2460
  'transition-property': unset,
2625
2461
  'translate': "unset"
2626
- );
2627
-
2462
+ );
2628
2463
  $cookies-consent-props: (
2629
2464
  'font-family': "unset",
2630
2465
  'font-size': "unset",
@@ -2642,8 +2477,7 @@ $cookies-consent-props: (
2642
2477
  'transition-mode': "unset",
2643
2478
  'transition-property': unset,
2644
2479
  'translate': "unset"
2645
- );
2646
-
2480
+ );
2647
2481
  $data-list-props: (
2648
2482
  'font-family': "unset",
2649
2483
  'font-size': "unset",
@@ -2661,8 +2495,7 @@ $data-list-props: (
2661
2495
  'transition-mode': "unset",
2662
2496
  'transition-property': unset,
2663
2497
  'translate': "unset"
2664
- );
2665
-
2498
+ );
2666
2499
  $data-table-props: (
2667
2500
  'font-family': "unset",
2668
2501
  'font-size': "unset",
@@ -2680,8 +2513,7 @@ $data-table-props: (
2680
2513
  'transition-mode': "unset",
2681
2514
  'transition-property': unset,
2682
2515
  'translate': "unset"
2683
- );
2684
-
2516
+ );
2685
2517
  $date-box-props: (
2686
2518
  'font-family': "unset",
2687
2519
  'font-size': "unset",
@@ -2707,8 +2539,7 @@ $date-box-props: (
2707
2539
  'foreground-color': unset,
2708
2540
  'height': unset,
2709
2541
  'shadow': unset
2710
- );
2711
-
2542
+ );
2712
2543
  $date-time-box-props: (
2713
2544
  'font-family': "unset",
2714
2545
  'font-size': "unset",
@@ -2734,8 +2565,7 @@ $date-time-box-props: (
2734
2565
  'foreground-color': unset,
2735
2566
  'height': unset,
2736
2567
  'shadow': unset
2737
- );
2738
-
2568
+ );
2739
2569
  $dialog-props: (
2740
2570
  'font-family': unset,
2741
2571
  'font-size': unset,
@@ -2765,8 +2595,7 @@ $dialog-props: (
2765
2595
  'shadow-offset-x': unset,
2766
2596
  'shadow-offset-y': unset,
2767
2597
  'shadow-spread': unset
2768
- );
2769
-
2598
+ );
2770
2599
  $dialog-actions-props: (
2771
2600
  'font-family': "unset",
2772
2601
  'font-size': "unset",
@@ -2784,8 +2613,7 @@ $dialog-actions-props: (
2784
2613
  'transition-mode': "unset",
2785
2614
  'transition-property': unset,
2786
2615
  'translate': "unset"
2787
- );
2788
-
2616
+ );
2789
2617
  $dialog-content-props: (
2790
2618
  'font-family': "unset",
2791
2619
  'font-size': "unset",
@@ -2803,8 +2631,7 @@ $dialog-content-props: (
2803
2631
  'transition-mode': "unset",
2804
2632
  'transition-property': unset,
2805
2633
  'translate': "unset"
2806
- );
2807
-
2634
+ );
2808
2635
  $dialog-footer-props: (
2809
2636
  'font-family': "unset",
2810
2637
  'font-size': "unset",
@@ -2822,8 +2649,7 @@ $dialog-footer-props: (
2822
2649
  'transition-mode': "unset",
2823
2650
  'transition-property': unset,
2824
2651
  'translate': "unset"
2825
- );
2826
-
2652
+ );
2827
2653
  $dialog-header-props: (
2828
2654
  'font-family': "unset",
2829
2655
  'font-size': "unset",
@@ -2841,8 +2667,7 @@ $dialog-header-props: (
2841
2667
  'transition-mode': "unset",
2842
2668
  'transition-property': unset,
2843
2669
  'translate': "unset"
2844
- );
2845
-
2670
+ );
2846
2671
  $dialog-header-sub-text-props: (
2847
2672
  'font-family': unset,
2848
2673
  'font-size': unset,
@@ -2863,8 +2688,7 @@ $dialog-header-sub-text-props: (
2863
2688
  'background-color': unset,
2864
2689
  'border-color': unset,
2865
2690
  'foreground-color': unset
2866
- );
2867
-
2691
+ );
2868
2692
  $dialog-header-text-props: (
2869
2693
  'font-family': unset,
2870
2694
  'font-size': unset,
@@ -2885,8 +2709,7 @@ $dialog-header-text-props: (
2885
2709
  'background-color': unset,
2886
2710
  'border-color': unset,
2887
2711
  'foreground-color': unset
2888
- );
2889
-
2712
+ );
2890
2713
  $dialog-host-props: (
2891
2714
  'font-family': "unset",
2892
2715
  'font-size': "unset",
@@ -2904,8 +2727,7 @@ $dialog-host-props: (
2904
2727
  'transition-mode': "unset",
2905
2728
  'transition-property': unset,
2906
2729
  'translate': "unset"
2907
- );
2908
-
2730
+ );
2909
2731
  $disclosure-props: (
2910
2732
  'font-family': unset,
2911
2733
  'font-size': unset,
@@ -2923,8 +2745,7 @@ $disclosure-props: (
2923
2745
  'transition-mode': unset,
2924
2746
  'transition-property': unset,
2925
2747
  'translate': unset
2926
- );
2927
-
2748
+ );
2928
2749
  $divider-props: (
2929
2750
  'font-family': unset,
2930
2751
  'font-size': unset,
@@ -2950,8 +2771,7 @@ $divider-props: (
2950
2771
  'foreground-color': unset,
2951
2772
  'shadow': unset,
2952
2773
  'thickness': var(--cosmopolitan-layout-thickness)
2953
- );
2954
-
2774
+ );
2955
2775
  $dot-props: (
2956
2776
  'font-family': unset,
2957
2777
  'font-size': unset,
@@ -2977,8 +2797,7 @@ $dot-props: (
2977
2797
  'foreground-color': unset,
2978
2798
  'shadow': unset,
2979
2799
  'size': unset
2980
- );
2981
-
2800
+ );
2982
2801
  $drawer-props: (
2983
2802
  'font-family': unset,
2984
2803
  'font-size': unset,
@@ -3005,8 +2824,7 @@ $drawer-props: (
3005
2824
  'height': unset,
3006
2825
  'shadow': unset,
3007
2826
  'width': unset
3008
- );
3009
-
2827
+ );
3010
2828
  $drawer-container-props: (
3011
2829
  'font-family': "unset",
3012
2830
  'font-size': "unset",
@@ -3024,8 +2842,7 @@ $drawer-container-props: (
3024
2842
  'transition-mode': "unset",
3025
2843
  'transition-property': unset,
3026
2844
  'translate': "unset"
3027
- );
3028
-
2845
+ );
3029
2846
  $drawer-content-props: (
3030
2847
  'font-family': "unset",
3031
2848
  'font-size': "unset",
@@ -3043,8 +2860,7 @@ $drawer-content-props: (
3043
2860
  'transition-mode': "unset",
3044
2861
  'transition-property': unset,
3045
2862
  'translate': "unset"
3046
- );
3047
-
2863
+ );
3048
2864
  $drop-down-button-props: (
3049
2865
  'font-family': var(--cosmopolitan-font-family),
3050
2866
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -3072,8 +2888,7 @@ $drop-down-button-props: (
3072
2888
  'line-height': calc(var(--dropdown-button-font-line-height) - 4px),
3073
2889
  'shadow': var(--cosmopolitan-elevation-none),
3074
2890
  'transform': none
3075
- );
3076
-
2891
+ );
3077
2892
  $drop-zone-props: (
3078
2893
  'font-family': "unset",
3079
2894
  'font-size': "unset",
@@ -3091,8 +2906,7 @@ $drop-zone-props: (
3091
2906
  'transition-mode': "unset",
3092
2907
  'transition-property': unset,
3093
2908
  'translate': "unset"
3094
- );
3095
-
2909
+ );
3096
2910
  $dropdown-props: (
3097
2911
  'font-family': "unset",
3098
2912
  'font-size': "unset",
@@ -3110,8 +2924,7 @@ $dropdown-props: (
3110
2924
  'transition-mode': "unset",
3111
2925
  'transition-property': unset,
3112
2926
  'translate': "unset"
3113
- );
3114
-
2927
+ );
3115
2928
  $elevation-props: (
3116
2929
  'font-family': "unset",
3117
2930
  'font-size': "unset",
@@ -3129,8 +2942,7 @@ $elevation-props: (
3129
2942
  'transition-mode': "unset",
3130
2943
  'transition-property': unset,
3131
2944
  'translate': "unset"
3132
- );
3133
-
2945
+ );
3134
2946
  $emoji-props: (
3135
2947
  'font-family': "unset",
3136
2948
  'font-size': "unset",
@@ -3149,8 +2961,7 @@ $emoji-props: (
3149
2961
  'transition-property': unset,
3150
2962
  'translate': "unset",
3151
2963
  'background-color': unset
3152
- );
3153
-
2964
+ );
3154
2965
  $empty-state-props: (
3155
2966
  'font-family': "unset",
3156
2967
  'font-size': "unset",
@@ -3159,11 +2970,11 @@ $empty-state-props: (
3159
2970
  'font-letter-spacing': "unset",
3160
2971
  'font-text-decoration': "unset",
3161
2972
  'font-text-transform': "unset",
3162
- 'padding-top': "unset",
3163
- 'padding-right': "unset",
3164
- 'padding-bottom': "unset",
3165
- 'padding-left': "unset",
3166
- 'gap': "unset",
2973
+ 'padding-top': unset,
2974
+ 'padding-right': unset,
2975
+ 'padding-bottom': unset,
2976
+ 'padding-left': unset,
2977
+ 'gap': unset,
3167
2978
  'transition-duration': "unset",
3168
2979
  'transition-mode': "unset",
3169
2980
  'transition-property': unset,
@@ -3175,10 +2986,8 @@ $empty-state-props: (
3175
2986
  'header-font-size': unset,
3176
2987
  'header-font-text-decoration': unset,
3177
2988
  'header-font-text-transform': unset,
3178
- 'header-font-weight': unset,
3179
- 'icon-foreground-color': unset
3180
- );
3181
-
2989
+ 'header-font-weight': unset
2990
+ );
3182
2991
  $error-props: (
3183
2992
  'font-family': unset,
3184
2993
  'font-size': unset,
@@ -3203,8 +3012,7 @@ $error-props: (
3203
3012
  'border-width': unset,
3204
3013
  'foreground-color': unset,
3205
3014
  'shadow': unset
3206
- );
3207
-
3015
+ );
3208
3016
  $error-state-props: (
3209
3017
  'font-family': "unset",
3210
3018
  'font-size': "unset",
@@ -3213,15 +3021,16 @@ $error-state-props: (
3213
3021
  'font-letter-spacing': "unset",
3214
3022
  'font-text-decoration': "unset",
3215
3023
  'font-text-transform': "unset",
3216
- 'padding-top': "unset",
3217
- 'padding-right': "unset",
3218
- 'padding-bottom': "unset",
3219
- 'padding-left': "unset",
3220
- 'gap': "unset",
3024
+ 'padding-top': unset,
3025
+ 'padding-right': unset,
3026
+ 'padding-bottom': unset,
3027
+ 'padding-left': unset,
3028
+ 'gap': unset,
3221
3029
  'transition-duration': "unset",
3222
3030
  'transition-mode': "unset",
3223
3031
  'transition-property': unset,
3224
3032
  'translate': "unset",
3033
+ 'foreground-color': unset,
3225
3034
  'header-font-family': unset,
3226
3035
  'header-font-letter-spacing': unset,
3227
3036
  'header-font-line-height': unset,
@@ -3229,8 +3038,7 @@ $error-state-props: (
3229
3038
  'header-font-text-decoration': unset,
3230
3039
  'header-font-text-transform': unset,
3231
3040
  'header-font-weight': unset
3232
- );
3233
-
3041
+ );
3234
3042
  $expandable-props: (
3235
3043
  'font-family': "unset",
3236
3044
  'font-size': "unset",
@@ -3248,8 +3056,7 @@ $expandable-props: (
3248
3056
  'transition-mode': "unset",
3249
3057
  'transition-property': unset,
3250
3058
  'translate': "unset"
3251
- );
3252
-
3059
+ );
3253
3060
  $expander-props: (
3254
3061
  'font-family': unset,
3255
3062
  'font-size': unset,
@@ -3275,8 +3082,7 @@ $expander-props: (
3275
3082
  'divider-height': unset,
3276
3083
  'foreground-color': unset,
3277
3084
  'shadow': unset
3278
- );
3279
-
3085
+ );
3280
3086
  $expander-group-props: (
3281
3087
  'font-family': unset,
3282
3088
  'font-size': unset,
@@ -3301,8 +3107,7 @@ $expander-group-props: (
3301
3107
  'border-width': unset,
3302
3108
  'foreground-color': unset,
3303
3109
  'shadow': unset
3304
- );
3305
-
3110
+ );
3306
3111
  $expander-header-props: (
3307
3112
  'font-family': unset,
3308
3113
  'font-size': unset,
@@ -3323,8 +3128,7 @@ $expander-header-props: (
3323
3128
  'background-color': unset,
3324
3129
  'border-color': unset,
3325
3130
  'foreground-color': unset
3326
- );
3327
-
3131
+ );
3328
3132
  $expander-sub-header-props: (
3329
3133
  'font-family': unset,
3330
3134
  'font-size': unset,
@@ -3345,8 +3149,7 @@ $expander-sub-header-props: (
3345
3149
  'background-color': unset,
3346
3150
  'border-color': unset,
3347
3151
  'foreground-color': unset
3348
- );
3349
-
3152
+ );
3350
3153
  $file-picker-props: (
3351
3154
  'font-family': "unset",
3352
3155
  'font-size': "unset",
@@ -3371,8 +3174,7 @@ $file-picker-props: (
3371
3174
  'border-width': unset,
3372
3175
  'foreground-color': unset,
3373
3176
  'shadow': unset
3374
- );
3375
-
3177
+ );
3376
3178
  $file-upload-props: (
3377
3179
  'font-family': "unset",
3378
3180
  'font-size': "unset",
@@ -3397,8 +3199,7 @@ $file-upload-props: (
3397
3199
  'border-width': unset,
3398
3200
  'foreground-color': unset,
3399
3201
  'shadow': unset
3400
- );
3401
-
3202
+ );
3402
3203
  $file-upload-item-props: (
3403
3204
  'font-family': "unset",
3404
3205
  'font-size': "unset",
@@ -3423,8 +3224,7 @@ $file-upload-item-props: (
3423
3224
  'border-width': unset,
3424
3225
  'foreground-color': unset,
3425
3226
  'shadow': unset
3426
- );
3427
-
3227
+ );
3428
3228
  $flip-props: (
3429
3229
  'font-family': "unset",
3430
3230
  'font-size': "unset",
@@ -3442,8 +3242,7 @@ $flip-props: (
3442
3242
  'transition-mode': "unset",
3443
3243
  'transition-property': unset,
3444
3244
  'translate': "unset"
3445
- );
3446
-
3245
+ );
3447
3246
  $floating-props: (
3448
3247
  'font-family': unset,
3449
3248
  'font-size': unset,
@@ -3471,8 +3270,7 @@ $floating-props: (
3471
3270
  'border-width': unset,
3472
3271
  'foreground-color': unset,
3473
3272
  'shadow': unset
3474
- );
3475
-
3273
+ );
3476
3274
  $floating-action-button-props: (
3477
3275
  'font-family': "unset",
3478
3276
  'font-size': "unset",
@@ -3492,8 +3290,7 @@ $floating-action-button-props: (
3492
3290
  'translate': "unset",
3493
3291
  'background-color': unset,
3494
3292
  'border-radius': unset
3495
- );
3496
-
3293
+ );
3497
3294
  $floating-action-button-group-props: (
3498
3295
  'font-family': unset,
3499
3296
  'font-size': unset,
@@ -3511,8 +3308,7 @@ $floating-action-button-group-props: (
3511
3308
  'transition-mode': unset,
3512
3309
  'transition-property': unset,
3513
3310
  'translate': "unset"
3514
- );
3515
-
3311
+ );
3516
3312
  $floating-trigger-props: (
3517
3313
  'font-family': "unset",
3518
3314
  'font-size': "unset",
@@ -3530,8 +3326,7 @@ $floating-trigger-props: (
3530
3326
  'transition-mode': "unset",
3531
3327
  'transition-property': unset,
3532
3328
  'translate': "unset"
3533
- );
3534
-
3329
+ );
3535
3330
  $focus-ring-props: (
3536
3331
  'font-family': "unset",
3537
3332
  'font-size': "unset",
@@ -3563,8 +3358,7 @@ $focus-ring-props: (
3563
3358
  'width': unset,
3564
3359
  'x': unset,
3565
3360
  'y': unset
3566
- );
3567
-
3361
+ );
3568
3362
  $footer-props: (
3569
3363
  'font-family': "unset",
3570
3364
  'font-size': "unset",
@@ -3589,8 +3383,7 @@ $footer-props: (
3589
3383
  'border-width': unset,
3590
3384
  'foreground-color': unset,
3591
3385
  'inset': unset
3592
- );
3593
-
3386
+ );
3594
3387
  $footer-item-props: (
3595
3388
  'font-family': "unset",
3596
3389
  'font-size': "unset",
@@ -3608,8 +3401,7 @@ $footer-item-props: (
3608
3401
  'transition-mode': "unset",
3609
3402
  'transition-property': unset,
3610
3403
  'translate': "unset"
3611
- );
3612
-
3404
+ );
3613
3405
  $footer-item-group-props: (
3614
3406
  'font-family': "unset",
3615
3407
  'font-size': "unset",
@@ -3627,8 +3419,7 @@ $footer-item-group-props: (
3627
3419
  'transition-mode': "unset",
3628
3420
  'transition-property': unset,
3629
3421
  'translate': "unset"
3630
- );
3631
-
3422
+ );
3632
3423
  $form-props: (
3633
3424
  'font-family': "unset",
3634
3425
  'font-size': "unset",
@@ -3647,8 +3438,7 @@ $form-props: (
3647
3438
  'transition-property': unset,
3648
3439
  'translate': "unset",
3649
3440
  'background-color': unset
3650
- );
3651
-
3441
+ );
3652
3442
  $form-field-props: (
3653
3443
  'font-family': "unset",
3654
3444
  'font-size': "unset",
@@ -3667,8 +3457,7 @@ $form-field-props: (
3667
3457
  'transition-property': unset,
3668
3458
  'translate': "unset",
3669
3459
  'background-color': unset
3670
- );
3671
-
3460
+ );
3672
3461
  $grid-props: (
3673
3462
  'font-family': "unset",
3674
3463
  'font-size': "unset",
@@ -3686,8 +3475,7 @@ $grid-props: (
3686
3475
  'transition-mode': "unset",
3687
3476
  'transition-property': unset,
3688
3477
  'translate': "unset"
3689
- );
3690
-
3478
+ );
3691
3479
  $grid-item-props: (
3692
3480
  'font-family': "unset",
3693
3481
  'font-size': "unset",
@@ -3705,8 +3493,7 @@ $grid-item-props: (
3705
3493
  'transition-mode': "unset",
3706
3494
  'transition-property': unset,
3707
3495
  'translate': "unset"
3708
- );
3709
-
3496
+ );
3710
3497
  $helmet-props: (
3711
3498
  'font-family': "unset",
3712
3499
  'font-size': "unset",
@@ -3724,8 +3511,7 @@ $helmet-props: (
3724
3511
  'transition-mode': "unset",
3725
3512
  'transition-property': unset,
3726
3513
  'translate': "unset"
3727
- );
3728
-
3514
+ );
3729
3515
  $hint-props: (
3730
3516
  'font-family': unset,
3731
3517
  'font-size': unset,
@@ -3750,8 +3536,7 @@ $hint-props: (
3750
3536
  'border-width': unset,
3751
3537
  'foreground-color': unset,
3752
3538
  'shadow': unset
3753
- );
3754
-
3539
+ );
3755
3540
  $icon-props: (
3756
3541
  'font-family': unset,
3757
3542
  'font-size': unset,
@@ -3777,8 +3562,7 @@ $icon-props: (
3777
3562
  'foreground-color': unset,
3778
3563
  'shadow': unset,
3779
3564
  'size': unset
3780
- );
3781
-
3565
+ );
3782
3566
  $image-props: (
3783
3567
  'font-family': unset,
3784
3568
  'font-size': unset,
@@ -3811,8 +3595,7 @@ $image-props: (
3811
3595
  'legend-font-text-transform': unset,
3812
3596
  'legend-font-weight': unset,
3813
3597
  'shadow': unset
3814
- );
3815
-
3598
+ );
3816
3599
  $ink-bar-props: (
3817
3600
  'font-family': "unset",
3818
3601
  'font-size': "unset",
@@ -3835,8 +3618,7 @@ $ink-bar-props: (
3835
3618
  'border-radius': unset,
3836
3619
  'foreground-color': unset,
3837
3620
  'thickness': unset
3838
- );
3839
-
3621
+ );
3840
3622
  $jumbtron-props: (
3841
3623
  'font-family': unset,
3842
3624
  'font-size': unset,
@@ -3861,8 +3643,7 @@ $jumbtron-props: (
3861
3643
  'border-width': unset,
3862
3644
  'foreground-color': unset,
3863
3645
  'shadow': unset
3864
- );
3865
-
3646
+ );
3866
3647
  $jumbtron-header-props: (
3867
3648
  'font-family': unset,
3868
3649
  'font-size': unset,
@@ -3883,8 +3664,7 @@ $jumbtron-header-props: (
3883
3664
  'background-color': unset,
3884
3665
  'border-color': unset,
3885
3666
  'foreground-color': unset
3886
- );
3887
-
3667
+ );
3888
3668
  $jumbtron-sub-header-props: (
3889
3669
  'font-family': unset,
3890
3670
  'font-size': unset,
@@ -3905,8 +3685,7 @@ $jumbtron-sub-header-props: (
3905
3685
  'background-color': unset,
3906
3686
  'border-color': unset,
3907
3687
  'foreground-color': unset
3908
- );
3909
-
3688
+ );
3910
3689
  $kbd-props: (
3911
3690
  'font-family': unset,
3912
3691
  'font-size': unset,
@@ -3931,8 +3710,7 @@ $kbd-props: (
3931
3710
  'border-width': unset,
3932
3711
  'foreground-color': unset,
3933
3712
  'shadow': unset
3934
- );
3935
-
3713
+ );
3936
3714
  $kbd-shortcut-props: (
3937
3715
  'font-family': "unset",
3938
3716
  'font-size': "unset",
@@ -3950,8 +3728,7 @@ $kbd-shortcut-props: (
3950
3728
  'transition-mode': "unset",
3951
3729
  'transition-property': unset,
3952
3730
  'translate': "unset"
3953
- );
3954
-
3731
+ );
3955
3732
  $light-chain-props: (
3956
3733
  'font-family': "unset",
3957
3734
  'font-size': "unset",
@@ -3969,8 +3746,7 @@ $light-chain-props: (
3969
3746
  'transition-mode': "unset",
3970
3747
  'transition-property': unset,
3971
3748
  'translate': "unset"
3972
- );
3973
-
3749
+ );
3974
3750
  $list-props: (
3975
3751
  'font-family': unset,
3976
3752
  'font-size': unset,
@@ -3995,8 +3771,7 @@ $list-props: (
3995
3771
  'border-width': unset,
3996
3772
  'foreground-color': unset,
3997
3773
  'shadow': unset
3998
- );
3999
-
3774
+ );
4000
3775
  $list-item-props: (
4001
3776
  'font-family': unset,
4002
3777
  'font-size': unset,
@@ -4021,8 +3796,7 @@ $list-item-props: (
4021
3796
  'border-width': unset,
4022
3797
  'foreground-color': unset,
4023
3798
  'shadow': unset
4024
- );
4025
-
3799
+ );
4026
3800
  $list-item-group-props: (
4027
3801
  'font-family': unset,
4028
3802
  'font-size': unset,
@@ -4047,8 +3821,7 @@ $list-item-group-props: (
4047
3821
  'border-width': unset,
4048
3822
  'foreground-color': unset,
4049
3823
  'shadow': unset
4050
- );
4051
-
3824
+ );
4052
3825
  $marquee-props: (
4053
3826
  'font-family': "unset",
4054
3827
  'font-size': "unset",
@@ -4068,8 +3841,7 @@ $marquee-props: (
4068
3841
  'translate': "unset",
4069
3842
  'direction': unset,
4070
3843
  'speed': unset
4071
- );
4072
-
3844
+ );
4073
3845
  $masonry-props: (
4074
3846
  'font-family': "unset",
4075
3847
  'font-size': "unset",
@@ -4088,8 +3860,7 @@ $masonry-props: (
4088
3860
  'transition-property': unset,
4089
3861
  'translate': "unset",
4090
3862
  'columns': 1
4091
- );
4092
-
3863
+ );
4093
3864
  $menu-props: (
4094
3865
  'font-family': unset,
4095
3866
  'font-size': unset,
@@ -4114,8 +3885,7 @@ $menu-props: (
4114
3885
  'border-width': unset,
4115
3886
  'foreground-color': unset,
4116
3887
  'shadow': unset
4117
- );
4118
-
3888
+ );
4119
3889
  $menu-item-props: (
4120
3890
  'font-family': unset,
4121
3891
  'font-size': unset,
@@ -4139,9 +3909,12 @@ $menu-item-props: (
4139
3909
  'border-style': unset,
4140
3910
  'border-width': unset,
4141
3911
  'foreground-color': unset,
4142
- 'shadow': unset
4143
- );
4144
-
3912
+ 'shadow': unset,
3913
+ 'height': unset,
3914
+ 'indent-color': var(--cosmopolitan-scheme-highlight),
3915
+ 'indent-size': var(--cosmopolitan-layout-thickness),
3916
+ 'indent-offset': calc(var(--cosmopolitan-layout-space) * 2)
3917
+ );
4145
3918
  $menu-item-group-props: (
4146
3919
  'font-family': unset,
4147
3920
  'font-size': unset,
@@ -4173,8 +3946,7 @@ $menu-item-group-props: (
4173
3946
  'header-font-text-transform': unset,
4174
3947
  'header-font-weight': unset,
4175
3948
  'shadow': unset
4176
- );
4177
-
3949
+ );
4178
3950
  $message-box-props: (
4179
3951
  'font-family': "unset",
4180
3952
  'font-size': "unset",
@@ -4192,8 +3964,7 @@ $message-box-props: (
4192
3964
  'transition-mode': "unset",
4193
3965
  'transition-property': unset,
4194
3966
  'translate': "unset"
4195
- );
4196
-
3967
+ );
4197
3968
  $meter-bar-props: (
4198
3969
  'font-family': "unset",
4199
3970
  'font-size': "unset",
@@ -4211,8 +3982,7 @@ $meter-bar-props: (
4211
3982
  'transition-mode': "unset",
4212
3983
  'transition-property': unset,
4213
3984
  'translate': "unset"
4214
- );
4215
-
3985
+ );
4216
3986
  $meter-ring-props: (
4217
3987
  'font-family': "unset",
4218
3988
  'font-size': "unset",
@@ -4230,8 +4000,7 @@ $meter-ring-props: (
4230
4000
  'transition-mode': "unset",
4231
4001
  'transition-property': unset,
4232
4002
  'translate': "unset"
4233
- );
4234
-
4003
+ );
4235
4004
  $number-props: (
4236
4005
  'font-family': unset,
4237
4006
  'font-size': unset,
@@ -4250,8 +4019,7 @@ $number-props: (
4250
4019
  'transition-property': unset,
4251
4020
  'translate': "unset",
4252
4021
  'alignment': unset
4253
- );
4254
-
4022
+ );
4255
4023
  $number-box-props: (
4256
4024
  'font-family': "unset",
4257
4025
  'font-size': "unset",
@@ -4277,8 +4045,7 @@ $number-box-props: (
4277
4045
  'foreground-color': unset,
4278
4046
  'height': unset,
4279
4047
  'shadow': unset
4280
- );
4281
-
4048
+ );
4282
4049
  $number-counter-props: (
4283
4050
  'font-family': unset,
4284
4051
  'font-size': unset,
@@ -4302,8 +4069,7 @@ $number-counter-props: (
4302
4069
  'n': unset,
4303
4070
  'timing': unset,
4304
4071
  'to': unset
4305
- );
4306
-
4072
+ );
4307
4073
  $page-props: (
4308
4074
  'font-family': "unset",
4309
4075
  'font-size': "unset",
@@ -4321,8 +4087,7 @@ $page-props: (
4321
4087
  'transition-mode': "unset",
4322
4088
  'transition-property': unset,
4323
4089
  'translate': "unset"
4324
- );
4325
-
4090
+ );
4326
4091
  $page-content-props: (
4327
4092
  'font-family': "unset",
4328
4093
  'font-size': "unset",
@@ -4344,8 +4109,7 @@ $page-content-props: (
4344
4109
  'left': unset,
4345
4110
  'max-width': unset,
4346
4111
  'width': unset
4347
- );
4348
-
4112
+ );
4349
4113
  $page-header-props: (
4350
4114
  'font-family': unset,
4351
4115
  'font-size': unset,
@@ -4367,8 +4131,7 @@ $page-header-props: (
4367
4131
  'border-color': unset,
4368
4132
  'foreground-color': unset,
4369
4133
  'inset': unset
4370
- );
4371
-
4134
+ );
4372
4135
  $page-menu-props: (
4373
4136
  'font-family': unset,
4374
4137
  'font-size': unset,
@@ -4395,8 +4158,7 @@ $page-menu-props: (
4395
4158
  'height': unset,
4396
4159
  'line-height': unset,
4397
4160
  'shadow': unset
4398
- );
4399
-
4161
+ );
4400
4162
  $page-pre-content-props: (
4401
4163
  'font-family': "unset",
4402
4164
  'font-size': "unset",
@@ -4415,8 +4177,7 @@ $page-pre-content-props: (
4415
4177
  'transition-property': unset,
4416
4178
  'translate': "unset",
4417
4179
  'inset': unset
4418
- );
4419
-
4180
+ );
4420
4181
  $page-pre-header-props: (
4421
4182
  'font-family': "unset",
4422
4183
  'font-size': "unset",
@@ -4435,8 +4196,7 @@ $page-pre-header-props: (
4435
4196
  'transition-property': unset,
4436
4197
  'translate': "unset",
4437
4198
  'inset': unset
4438
- );
4439
-
4199
+ );
4440
4200
  $paginator-props: (
4441
4201
  'font-family': "unset",
4442
4202
  'font-size': "unset",
@@ -4455,8 +4215,7 @@ $paginator-props: (
4455
4215
  'transition-property': unset,
4456
4216
  'translate': "unset",
4457
4217
  'background-color': unset
4458
- );
4459
-
4218
+ );
4460
4219
  $password-box-props: (
4461
4220
  'font-family': "unset",
4462
4221
  'font-size': "unset",
@@ -4482,8 +4241,7 @@ $password-box-props: (
4482
4241
  'foreground-color': unset,
4483
4242
  'height': unset,
4484
4243
  'shadow': unset
4485
- );
4486
-
4244
+ );
4487
4245
  $pattern-props: (
4488
4246
  'font-family': "unset",
4489
4247
  'font-size': "unset",
@@ -4502,8 +4260,7 @@ $pattern-props: (
4502
4260
  'transition-property': unset,
4503
4261
  'translate': "unset",
4504
4262
  'background-color': unset
4505
- );
4506
-
4263
+ );
4507
4264
  $persona-props: (
4508
4265
  'font-family': unset,
4509
4266
  'font-size': unset,
@@ -4528,8 +4285,7 @@ $persona-props: (
4528
4285
  'border-width': unset,
4529
4286
  'foreground-color': unset,
4530
4287
  'shadow': unset
4531
- );
4532
-
4288
+ );
4533
4289
  $perspective-props: (
4534
4290
  'font-family': "unset",
4535
4291
  'font-size': "unset",
@@ -4547,8 +4303,7 @@ $perspective-props: (
4547
4303
  'transition-mode': "unset",
4548
4304
  'transition-property': unset,
4549
4305
  'translate': "unset"
4550
- );
4551
-
4306
+ );
4552
4307
  $pin-box-props: (
4553
4308
  'font-family': "unset",
4554
4309
  'font-size': "unset",
@@ -4574,8 +4329,7 @@ $pin-box-props: (
4574
4329
  'foreground-color': unset,
4575
4330
  'height': unset,
4576
4331
  'shadow': unset
4577
- );
4578
-
4332
+ );
4579
4333
  $popup-props: (
4580
4334
  'font-family': unset,
4581
4335
  'font-size': unset,
@@ -4604,8 +4358,7 @@ $popup-props: (
4604
4358
  'shadow-offset-x': unset,
4605
4359
  'shadow-offset-y': unset,
4606
4360
  'shadow-spread': unset
4607
- );
4608
-
4361
+ );
4609
4362
  $portal-props: (
4610
4363
  'font-family': "unset",
4611
4364
  'font-size': "unset",
@@ -4623,8 +4376,7 @@ $portal-props: (
4623
4376
  'transition-mode': "unset",
4624
4377
  'transition-property': unset,
4625
4378
  'translate': "unset"
4626
- );
4627
-
4379
+ );
4628
4380
  $portal-projection-props: (
4629
4381
  'font-family': "unset",
4630
4382
  'font-size': "unset",
@@ -4642,8 +4394,7 @@ $portal-projection-props: (
4642
4394
  'transition-mode': "unset",
4643
4395
  'transition-property': unset,
4644
4396
  'translate': "unset"
4645
- );
4646
-
4397
+ );
4647
4398
  $progress-bar-props: (
4648
4399
  'font-family': "unset",
4649
4400
  'font-size': "unset",
@@ -4661,8 +4412,7 @@ $progress-bar-props: (
4661
4412
  'transition-mode': "unset",
4662
4413
  'transition-property': unset,
4663
4414
  'translate': "unset"
4664
- );
4665
-
4415
+ );
4666
4416
  $progress-ring-props: (
4667
4417
  'font-family': unset,
4668
4418
  'font-size': unset,
@@ -4688,8 +4438,7 @@ $progress-ring-props: (
4688
4438
  'fill-color': unset,
4689
4439
  'foreground-color': unset,
4690
4440
  'shadow': unset
4691
- );
4692
-
4441
+ );
4693
4442
  $qr-code-props: (
4694
4443
  'font-family': "unset",
4695
4444
  'font-size': "unset",
@@ -4709,8 +4458,7 @@ $qr-code-props: (
4709
4458
  'translate': "unset",
4710
4459
  'background-color': var(--cosmopolitan-scheme-background),
4711
4460
  'foreground-color': var(--cosmopolitan-scheme-foreground)
4712
- );
4713
-
4461
+ );
4714
4462
  $radio-props: (
4715
4463
  'font-family': "unset",
4716
4464
  'font-size': "unset",
@@ -4735,8 +4483,7 @@ $radio-props: (
4735
4483
  'border-width': unset,
4736
4484
  'foreground-color': unset,
4737
4485
  'shadow': unset
4738
- );
4739
-
4486
+ );
4740
4487
  $radio-group-props: (
4741
4488
  'font-family': "unset",
4742
4489
  'font-size': "unset",
@@ -4761,8 +4508,7 @@ $radio-group-props: (
4761
4508
  'border-width': unset,
4762
4509
  'foreground-color': unset,
4763
4510
  'shadow': unset
4764
- );
4765
-
4511
+ );
4766
4512
  $rating-props: (
4767
4513
  'font-family': "unset",
4768
4514
  'font-size': "unset",
@@ -4787,8 +4533,7 @@ $rating-props: (
4787
4533
  'border-width': unset,
4788
4534
  'foreground-color': unset,
4789
4535
  'shadow': unset
4790
- );
4791
-
4536
+ );
4792
4537
  $repeat-button-props: (
4793
4538
  'font-family': unset,
4794
4539
  'font-size': unset,
@@ -4815,8 +4560,7 @@ $repeat-button-props: (
4815
4560
  'foreground-color': unset,
4816
4561
  'line-height': unset,
4817
4562
  'shadow': unset
4818
- );
4819
-
4563
+ );
4820
4564
  $resize-adorner-props: (
4821
4565
  'font-family': "unset",
4822
4566
  'font-size': "unset",
@@ -4840,8 +4584,7 @@ $resize-adorner-props: (
4840
4584
  'border-width': var(--cosmopolitan-layout-thickness),
4841
4585
  'thumb-background-color': var(--cosmopolitan-scheme-highlight),
4842
4586
  'thumb-border-radius': var(--cosmopolitan-layout-thickness)
4843
- );
4844
-
4587
+ );
4845
4588
  $ribbon-props: (
4846
4589
  'font-family': unset,
4847
4590
  'font-size': unset,
@@ -4867,8 +4610,7 @@ $ribbon-props: (
4867
4610
  'font': unset,
4868
4611
  'foreground-color': unset,
4869
4612
  'shadow': unset
4870
- );
4871
-
4613
+ );
4872
4614
  $rich-text-box-props: (
4873
4615
  'font-family': "unset",
4874
4616
  'font-size': "unset",
@@ -4894,8 +4636,7 @@ $rich-text-box-props: (
4894
4636
  'foreground-color': unset,
4895
4637
  'height': unset,
4896
4638
  'shadow': unset
4897
- );
4898
-
4639
+ );
4899
4640
  $rich-text-box-toolbox-props: (
4900
4641
  'font-family': "unset",
4901
4642
  'font-size': "unset",
@@ -4920,8 +4661,7 @@ $rich-text-box-toolbox-props: (
4920
4661
  'border-width': unset,
4921
4662
  'foreground-color': unset,
4922
4663
  'shadow': unset
4923
- );
4924
-
4664
+ );
4925
4665
  $ripple-props: (
4926
4666
  'font-family': "unset",
4927
4667
  'font-size': "unset",
@@ -4940,8 +4680,7 @@ $ripple-props: (
4940
4680
  'transition-property': unset,
4941
4681
  'translate': "unset",
4942
4682
  'background-color': unset
4943
- );
4944
-
4683
+ );
4945
4684
  $router-props: (
4946
4685
  'font-family': "unset",
4947
4686
  'font-size': "unset",
@@ -4959,8 +4698,7 @@ $router-props: (
4959
4698
  'transition-mode': "unset",
4960
4699
  'transition-property': unset,
4961
4700
  'translate': "unset"
4962
- );
4963
-
4701
+ );
4964
4702
  $router-anchor-props: (
4965
4703
  'font-family': "unset",
4966
4704
  'font-size': "unset",
@@ -4978,8 +4716,7 @@ $router-anchor-props: (
4978
4716
  'transition-mode': "unset",
4979
4717
  'transition-property': unset,
4980
4718
  'translate': "unset"
4981
- );
4982
-
4719
+ );
4983
4720
  $router-link-props: (
4984
4721
  'font-family': "unset",
4985
4722
  'font-size': "unset",
@@ -4997,8 +4734,7 @@ $router-link-props: (
4997
4734
  'transition-mode': "unset",
4998
4735
  'transition-property': unset,
4999
4736
  'translate': "unset"
5000
- );
5001
-
4737
+ );
5002
4738
  $router-outlet-props: (
5003
4739
  'font-family': "unset",
5004
4740
  'font-size': "unset",
@@ -5016,8 +4752,7 @@ $router-outlet-props: (
5016
4752
  'transition-mode': "unset",
5017
4753
  'transition-property': unset,
5018
4754
  'translate': "unset"
5019
- );
5020
-
4755
+ );
5021
4756
  $scale-props: (
5022
4757
  'font-family': "unset",
5023
4758
  'font-size': "unset",
@@ -5035,8 +4770,7 @@ $scale-props: (
5035
4770
  'transition-mode': "unset",
5036
4771
  'transition-property': unset,
5037
4772
  'translate': "unset"
5038
- );
5039
-
4773
+ );
5040
4774
  $scroll-props: (
5041
4775
  'font-family': "unset",
5042
4776
  'font-size': "unset",
@@ -5054,8 +4788,7 @@ $scroll-props: (
5054
4788
  'transition-mode': "unset",
5055
4789
  'transition-property': unset,
5056
4790
  'translate': "unset"
5057
- );
5058
-
4791
+ );
5059
4792
  $search-box-props: (
5060
4793
  'font-family': "unset",
5061
4794
  'font-size': "unset",
@@ -5081,8 +4814,7 @@ $search-box-props: (
5081
4814
  'foreground-color': unset,
5082
4815
  'height': unset,
5083
4816
  'shadow': unset
5084
- );
5085
-
4817
+ );
5086
4818
  $segment-props: (
5087
4819
  'font-family': "unset",
5088
4820
  'font-size': "unset",
@@ -5107,8 +4839,7 @@ $segment-props: (
5107
4839
  'border-width': unset,
5108
4840
  'foreground-color': unset,
5109
4841
  'indicator-height': unset
5110
- );
5111
-
4842
+ );
5112
4843
  $segment-item-props: (
5113
4844
  'font-family': unset,
5114
4845
  'font-size': unset,
@@ -5143,8 +4874,7 @@ $segment-item-props: (
5143
4874
  'color-hover': unset,
5144
4875
  'padding-end': unset,
5145
4876
  'padding-start': unset
5146
- );
5147
-
4877
+ );
5148
4878
  $select-props: (
5149
4879
  'font-family': "unset",
5150
4880
  'font-size': "unset",
@@ -5169,8 +4899,7 @@ $select-props: (
5169
4899
  'border-width': unset,
5170
4900
  'foreground-color': unset,
5171
4901
  'shadow': unset
5172
- );
5173
-
4902
+ );
5174
4903
  $select-item-props: (
5175
4904
  'font-family': "unset",
5176
4905
  'font-size': "unset",
@@ -5195,8 +4924,7 @@ $select-item-props: (
5195
4924
  'border-width': unset,
5196
4925
  'foreground-color': unset,
5197
4926
  'shadow': unset
5198
- );
5199
-
4927
+ );
5200
4928
  $select-item-group-props: (
5201
4929
  'font-family': "unset",
5202
4930
  'font-size': "unset",
@@ -5221,8 +4949,7 @@ $select-item-group-props: (
5221
4949
  'border-width': unset,
5222
4950
  'foreground-color': unset,
5223
4951
  'shadow': unset
5224
- );
5225
-
4952
+ );
5226
4953
  $signature-pad-props: (
5227
4954
  'font-family': "unset",
5228
4955
  'font-size': "unset",
@@ -5247,8 +4974,7 @@ $signature-pad-props: (
5247
4974
  'border-width': unset,
5248
4975
  'foreground-color': unset,
5249
4976
  'shadow': unset
5250
- );
5251
-
4977
+ );
5252
4978
  $skeleton-props: (
5253
4979
  'font-family': "unset",
5254
4980
  'font-size': "unset",
@@ -5272,8 +4998,7 @@ $skeleton-props: (
5272
4998
  'border-style': unset,
5273
4999
  'border-width': unset,
5274
5000
  'foreground-color': unset
5275
- );
5276
-
5001
+ );
5277
5002
  $slider-props: (
5278
5003
  'font-family': unset,
5279
5004
  'font-size': unset,
@@ -5334,8 +5059,7 @@ $slider-props: (
5334
5059
  'tooltip-transition-mode': unset,
5335
5060
  'tooltip-transition-property': unset,
5336
5061
  'track-size': unset
5337
- );
5338
-
5062
+ );
5339
5063
  $slider2-props: (
5340
5064
  'font-family': "unset",
5341
5065
  'font-size': "unset",
@@ -5353,8 +5077,7 @@ $slider2-props: (
5353
5077
  'transition-mode': "unset",
5354
5078
  'transition-property': unset,
5355
5079
  'translate': "unset"
5356
- );
5357
-
5080
+ );
5358
5081
  $slider2thumb-props: (
5359
5082
  'font-family': "unset",
5360
5083
  'font-size': "unset",
@@ -5373,8 +5096,7 @@ $slider2thumb-props: (
5373
5096
  'transition-property': unset,
5374
5097
  'translate': "unset",
5375
5098
  'size': unset
5376
- );
5377
-
5099
+ );
5378
5100
  $spacer-props: (
5379
5101
  'font-family': "unset",
5380
5102
  'font-size': "unset",
@@ -5392,8 +5114,7 @@ $spacer-props: (
5392
5114
  'transition-mode': "unset",
5393
5115
  'transition-property': unset,
5394
5116
  'translate': "unset"
5395
- );
5396
-
5117
+ );
5397
5118
  $split-props: (
5398
5119
  'font-family': "unset",
5399
5120
  'font-size': "unset",
@@ -5421,8 +5142,7 @@ $split-props: (
5421
5142
  'thumb-border-color': var(--cosmopolitan-scheme-highlight),
5422
5143
  'thumb-border-radius': var(--cosmopolitan-layout-radius),
5423
5144
  'thumb-foreground-color': var(--cosmopolitan-scheme-foreground)
5424
- );
5425
-
5145
+ );
5426
5146
  $split-button-props: (
5427
5147
  'font-family': unset,
5428
5148
  'font-size': unset,
@@ -5449,8 +5169,7 @@ $split-button-props: (
5449
5169
  'foreground-color': unset,
5450
5170
  'line-height': unset,
5451
5171
  'shadow': unset
5452
- );
5453
-
5172
+ );
5454
5173
  $stack-props: (
5455
5174
  'font-family': "unset",
5456
5175
  'font-size': "unset",
@@ -5468,8 +5187,7 @@ $stack-props: (
5468
5187
  'transition-mode': "unset",
5469
5188
  'transition-property': unset,
5470
5189
  'translate': "unset"
5471
- );
5472
-
5190
+ );
5473
5191
  $sticky-props: (
5474
5192
  'font-family': "unset",
5475
5193
  'font-size': "unset",
@@ -5489,8 +5207,7 @@ $sticky-props: (
5489
5207
  'translate': "unset",
5490
5208
  'left': unset,
5491
5209
  'top': unset
5492
- );
5493
-
5210
+ );
5494
5211
  $success-state-props: (
5495
5212
  'font-family': "unset",
5496
5213
  'font-size': "unset",
@@ -5499,15 +5216,16 @@ $success-state-props: (
5499
5216
  'font-letter-spacing': "unset",
5500
5217
  'font-text-decoration': "unset",
5501
5218
  'font-text-transform': "unset",
5502
- 'padding-top': "unset",
5503
- 'padding-right': "unset",
5504
- 'padding-bottom': "unset",
5505
- 'padding-left': "unset",
5506
- 'gap': "unset",
5219
+ 'padding-top': unset,
5220
+ 'padding-right': unset,
5221
+ 'padding-bottom': unset,
5222
+ 'padding-left': unset,
5223
+ 'gap': unset,
5507
5224
  'transition-duration': "unset",
5508
5225
  'transition-mode': "unset",
5509
5226
  'transition-property': unset,
5510
5227
  'translate': "unset",
5228
+ 'foreground-color': unset,
5511
5229
  'header-font-family': unset,
5512
5230
  'header-font-letter-spacing': unset,
5513
5231
  'header-font-line-height': unset,
@@ -5515,8 +5233,7 @@ $success-state-props: (
5515
5233
  'header-font-text-decoration': unset,
5516
5234
  'header-font-text-transform': unset,
5517
5235
  'header-font-weight': unset
5518
- );
5519
-
5236
+ );
5520
5237
  $summary-props: (
5521
5238
  'font-family': "unset",
5522
5239
  'font-size': "unset",
@@ -5534,8 +5251,7 @@ $summary-props: (
5534
5251
  'transition-mode': "unset",
5535
5252
  'transition-property': unset,
5536
5253
  'translate': "unset"
5537
- );
5538
-
5254
+ );
5539
5255
  $swipe-props: (
5540
5256
  'font-family': "unset",
5541
5257
  'font-size': "unset",
@@ -5553,8 +5269,7 @@ $swipe-props: (
5553
5269
  'transition-mode': "unset",
5554
5270
  'transition-property': unset,
5555
5271
  'translate': "unset"
5556
- );
5557
-
5272
+ );
5558
5273
  $tab-props: (
5559
5274
  'font-family': var(--cosmopolitan-font-family),
5560
5275
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -5586,8 +5301,7 @@ $tab-props: (
5586
5301
  'strip-padding-left': 0,
5587
5302
  'strip-padding-right': 0,
5588
5303
  'strip-padding-top': 0
5589
- );
5590
-
5304
+ );
5591
5305
  $tab-item-props: (
5592
5306
  'font-family': "unset",
5593
5307
  'font-size': "unset",
@@ -5608,8 +5322,7 @@ $tab-item-props: (
5608
5322
  'border-radius': unset,
5609
5323
  'border-style': unset,
5610
5324
  'border-width': unset
5611
- );
5612
-
5325
+ );
5613
5326
  $tab-panel-props: (
5614
5327
  'font-family': "unset",
5615
5328
  'font-size': "unset",
@@ -5628,8 +5341,7 @@ $tab-panel-props: (
5628
5341
  'transition-property': unset,
5629
5342
  'translate': "unset",
5630
5343
  'background-color': unset
5631
- );
5632
-
5344
+ );
5633
5345
  $tab-strip-props: (
5634
5346
  'font-family': var(--cosmopolitan-font-family),
5635
5347
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -5653,8 +5365,7 @@ $tab-strip-props: (
5653
5365
  'border-style': solid,
5654
5366
  'border-width': 0,
5655
5367
  'foreground-color': unset
5656
- );
5657
-
5368
+ );
5658
5369
  $tab-strip-item-props: (
5659
5370
  'font-family': var(--cosmopolitan-font-family),
5660
5371
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -5681,8 +5392,7 @@ $tab-strip-item-props: (
5681
5392
  'shadow': var(--cosmopolitan-elevation-none),
5682
5393
  'size': 56px,
5683
5394
  'thickness': 4px
5684
- );
5685
-
5395
+ );
5686
5396
  $table-props: (
5687
5397
  'font-family': unset,
5688
5398
  'font-size': unset,
@@ -5707,8 +5417,7 @@ $table-props: (
5707
5417
  'border-width': unset,
5708
5418
  'foreground-color': unset,
5709
5419
  'shadow': unset
5710
- );
5711
-
5420
+ );
5712
5421
  $table-body-props: (
5713
5422
  'font-family': unset,
5714
5423
  'font-size': unset,
@@ -5733,8 +5442,7 @@ $table-body-props: (
5733
5442
  'border-width': unset,
5734
5443
  'foreground-color': unset,
5735
5444
  'shadow': unset
5736
- );
5737
-
5445
+ );
5738
5446
  $table-cell-props: (
5739
5447
  'font-family': unset,
5740
5448
  'font-size': unset,
@@ -5759,8 +5467,32 @@ $table-cell-props: (
5759
5467
  'border-width': unset,
5760
5468
  'foreground-color': unset,
5761
5469
  'shadow': unset
5762
- );
5763
-
5470
+ );
5471
+ $table-footer-props: (
5472
+ 'font-family': unset,
5473
+ 'font-size': unset,
5474
+ 'font-line-height': "unset",
5475
+ 'font-weight': unset,
5476
+ 'font-letter-spacing': "unset",
5477
+ 'font-text-decoration': "unset",
5478
+ 'font-text-transform': "unset",
5479
+ 'padding-top': unset,
5480
+ 'padding-right': unset,
5481
+ 'padding-bottom': unset,
5482
+ 'padding-left': unset,
5483
+ 'gap': unset,
5484
+ 'transition-duration': unset,
5485
+ 'transition-mode': unset,
5486
+ 'transition-property': unset,
5487
+ 'translate': "unset",
5488
+ 'background-color': unset,
5489
+ 'border-color': unset,
5490
+ 'border-radius': unset,
5491
+ 'border-style': unset,
5492
+ 'border-width': unset,
5493
+ 'foreground-color': unset,
5494
+ 'shadow': unset
5495
+ );
5764
5496
  $table-header-props: (
5765
5497
  'font-family': unset,
5766
5498
  'font-size': unset,
@@ -5785,8 +5517,7 @@ $table-header-props: (
5785
5517
  'border-width': unset,
5786
5518
  'foreground-color': unset,
5787
5519
  'shadow': unset
5788
- );
5789
-
5520
+ );
5790
5521
  $table-row-props: (
5791
5522
  'font-family': unset,
5792
5523
  'font-size': unset,
@@ -5811,8 +5542,7 @@ $table-row-props: (
5811
5542
  'border-width': unset,
5812
5543
  'foreground-color': unset,
5813
5544
  'shadow': unset
5814
- );
5815
-
5545
+ );
5816
5546
  $text-props: (
5817
5547
  'font-family': var(--cosmopolitan-font-family),
5818
5548
  'font-size': var(--cosmopolitan-typography-content-font-size),
@@ -5839,8 +5569,7 @@ $text-props: (
5839
5569
  'font-transform': var(--cosmopolitan-typography-content-text-transform),
5840
5570
  'foreground-color': var(--cosmopolitan-scheme-foreground),
5841
5571
  'shadow': var(--cosmopolitan-elevation-none)
5842
- );
5843
-
5572
+ );
5844
5573
  $text-box-props: (
5845
5574
  'font-family': "unset",
5846
5575
  'font-size': "unset",
@@ -5866,8 +5595,7 @@ $text-box-props: (
5866
5595
  'foreground-color': unset,
5867
5596
  'height': unset,
5868
5597
  'shadow': unset
5869
- );
5870
-
5598
+ );
5871
5599
  $text-format-props: (
5872
5600
  'font-family': "unset",
5873
5601
  'font-size': "unset",
@@ -5885,8 +5613,7 @@ $text-format-props: (
5885
5613
  'transition-mode': "unset",
5886
5614
  'transition-property': unset,
5887
5615
  'translate': "unset"
5888
- );
5889
-
5616
+ );
5890
5617
  $tick-bar-props: (
5891
5618
  'font-family': unset,
5892
5619
  'font-size': unset,
@@ -5915,8 +5642,7 @@ $tick-bar-props: (
5915
5642
  'tick-size': unset,
5916
5643
  'tick-text-gap': unset,
5917
5644
  'tick-width': unset
5918
- );
5919
-
5645
+ );
5920
5646
  $tile-list-props: (
5921
5647
  'font-family': "unset",
5922
5648
  'font-size': "unset",
@@ -5935,8 +5661,7 @@ $tile-list-props: (
5935
5661
  'transition-property': unset,
5936
5662
  'translate': "unset",
5937
5663
  'gutter-size': unset
5938
- );
5939
-
5664
+ );
5940
5665
  $tile-list-item-props: (
5941
5666
  'font-family': "unset",
5942
5667
  'font-size': "unset",
@@ -5961,8 +5686,7 @@ $tile-list-item-props: (
5961
5686
  'dragover-border-color': unset,
5962
5687
  'header-bg-color': unset,
5963
5688
  'header-padding': unset
5964
- );
5965
-
5689
+ );
5966
5690
  $time-box-props: (
5967
5691
  'font-family': "unset",
5968
5692
  'font-size': "unset",
@@ -5988,8 +5712,7 @@ $time-box-props: (
5988
5712
  'foreground-color': unset,
5989
5713
  'height': unset,
5990
5714
  'shadow': unset
5991
- );
5992
-
5715
+ );
5993
5716
  $title-bar-props: (
5994
5717
  'font-family': unset,
5995
5718
  'font-size': unset,
@@ -6007,8 +5730,7 @@ $title-bar-props: (
6007
5730
  'transition-mode': "unset",
6008
5731
  'transition-property': unset,
6009
5732
  'translate': "unset"
6010
- );
6011
-
5733
+ );
6012
5734
  $title-layout-props: (
6013
5735
  'font-family': "unset",
6014
5736
  'font-size': "unset",
@@ -6027,8 +5749,7 @@ $title-layout-props: (
6027
5749
  'transition-property': unset,
6028
5750
  'translate': "unset",
6029
5751
  'background-color': unset
6030
- );
6031
-
5752
+ );
6032
5753
  $toast-props: (
6033
5754
  'font-family': unset,
6034
5755
  'font-size': unset,
@@ -6055,8 +5776,7 @@ $toast-props: (
6055
5776
  'foreground-color': unset,
6056
5777
  'progress-ring-fill-color': unset,
6057
5778
  'shadow': unset
6058
- );
6059
-
5779
+ );
6060
5780
  $toggle-button-props: (
6061
5781
  'font-family': var(--cosmopolitan-typography-button-font-family),
6062
5782
  'font-size': var(--cosmopolitan-typography-button-font-size),
@@ -6084,8 +5804,7 @@ $toggle-button-props: (
6084
5804
  'line-height': calc(var(--toggle-button-font-line-height) - 4px),
6085
5805
  'shadow': var(--cosmopolitan-elevation-none),
6086
5806
  'width': auto
6087
- );
6088
-
5807
+ );
6089
5808
  $toggle-switch-props: (
6090
5809
  'font-family': "unset",
6091
5810
  'font-size': "unset",
@@ -6110,8 +5829,7 @@ $toggle-switch-props: (
6110
5829
  'border-width': unset,
6111
5830
  'foreground-color': unset,
6112
5831
  'shadow': unset
6113
- );
6114
-
5832
+ );
6115
5833
  $toggletip-props: (
6116
5834
  'font-family': "unset",
6117
5835
  'font-size': "unset",
@@ -6129,8 +5847,7 @@ $toggletip-props: (
6129
5847
  'transition-mode': "unset",
6130
5848
  'transition-property': unset,
6131
5849
  'translate': "unset"
6132
- );
6133
-
5850
+ );
6134
5851
  $toolbar-props: (
6135
5852
  'font-family': unset,
6136
5853
  'font-size': 24px,
@@ -6161,8 +5878,7 @@ $toolbar-props: (
6161
5878
  'shadow-offset-x': unset,
6162
5879
  'shadow-offset-y': unset,
6163
5880
  'shadow-spread': unset
6164
- );
6165
-
5881
+ );
6166
5882
  $tooltip-props: (
6167
5883
  'font-family': unset,
6168
5884
  'font-size': unset,
@@ -6188,8 +5904,7 @@ $tooltip-props: (
6188
5904
  'foreground-color': unset,
6189
5905
  'max-width': unset,
6190
5906
  'shadow': unset
6191
- );
6192
-
5907
+ );
6193
5908
  $tree-props: (
6194
5909
  'font-family': unset,
6195
5910
  'font-size': unset,
@@ -6207,8 +5922,7 @@ $tree-props: (
6207
5922
  'transition-mode': "unset",
6208
5923
  'transition-property': unset,
6209
5924
  'translate': "unset"
6210
- );
6211
-
5925
+ );
6212
5926
  $tree-item-props: (
6213
5927
  'font-family': unset,
6214
5928
  'font-size': unset,
@@ -6232,9 +5946,11 @@ $tree-item-props: (
6232
5946
  'border-style': unset,
6233
5947
  'border-width': unset,
6234
5948
  'foreground-color': unset,
6235
- 'shadow': unset
6236
- );
6237
-
5949
+ 'shadow': unset,
5950
+ 'indent-color': unset,
5951
+ 'indent-size': unset,
5952
+ 'indent-offset': unset
5953
+ );
6238
5954
  $up-down-spinner-props: (
6239
5955
  'font-family': "unset",
6240
5956
  'font-size': "unset",
@@ -6252,8 +5968,7 @@ $up-down-spinner-props: (
6252
5968
  'transition-mode': "unset",
6253
5969
  'transition-property': unset,
6254
5970
  'translate': "unset"
6255
- );
6256
-
5971
+ );
6257
5972
  $video-props: (
6258
5973
  'font-family': unset,
6259
5974
  'font-size': unset,
@@ -6286,8 +6001,7 @@ $video-props: (
6286
6001
  'legend-font-text-transform': unset,
6287
6002
  'legend-font-weight': unset,
6288
6003
  'shadow': unset
6289
- );
6290
-
6004
+ );
6291
6005
  $virtualize-props: (
6292
6006
  'font-family': "unset",
6293
6007
  'font-size': "unset",
@@ -6305,8 +6019,7 @@ $virtualize-props: (
6305
6019
  'transition-mode': "unset",
6306
6020
  'transition-property': unset,
6307
6021
  'translate': "unset"
6308
- );
6309
-
6022
+ );
6310
6023
  $wizard-props: (
6311
6024
  'font-family': "unset",
6312
6025
  'font-size': "unset",
@@ -6325,8 +6038,7 @@ $wizard-props: (
6325
6038
  'transition-property': unset,
6326
6039
  'translate': "unset",
6327
6040
  'border-color': unset
6328
- );
6329
-
6041
+ );
6330
6042
  $wizard-step-props: (
6331
6043
  'font-family': "unset",
6332
6044
  'font-size': "unset",
@@ -6344,8 +6056,7 @@ $wizard-step-props: (
6344
6056
  'transition-mode': "unset",
6345
6057
  'transition-property': unset,
6346
6058
  'translate': "unset"
6347
- );
6348
-
6059
+ );
6349
6060
  $wrap-props: (
6350
6061
  'font-family': "unset",
6351
6062
  'font-size': "unset",