@breadstone/mosaik-themes 0.0.31 → 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.
package/Themes/retro.scss CHANGED
@@ -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: "retro";
86
74
  $font-family: Nunito, sans-serif;
87
75
  $layout-radius: 0px;
@@ -466,10 +454,6 @@ $elevation-key: $elevation-key-light $elevation-key-semilight $elevation-key-reg
466
454
  $appearance: $appearance-default $appearance-outline $appearance-plain $appearance-soft $appearance-solid;
467
455
  $variant: $variant-primary $variant-secondary $variant-info $variant-warning $variant-danger $variant-success $variant-neutral;
468
456
  $size: $size-tiny $size-small $size-medium $size-large $size-giant;
469
-
470
-
471
-
472
-
473
457
  $_color-light: (
474
458
  primary: (
475
459
  0: $color-light-primary-0,
@@ -563,7 +547,6 @@ $_color-light: (
563
547
  900: $color-light-neutral-900
564
548
  )
565
549
  );
566
-
567
550
  $_color-dark: (
568
551
  primary: (
569
552
  0: $color-dark-primary-0,
@@ -657,7 +640,6 @@ $_color-dark: (
657
640
  900: $color-dark-neutral-900
658
641
  )
659
642
  );
660
-
661
643
  @mixin color-style($prefix) {
662
644
  :root,
663
645
  :host {
@@ -670,7 +652,6 @@ $_color-dark: (
670
652
  #{'--#{$prefix}-color-light-#{$palette-key}'}: #{$palette-steps};
671
653
  }
672
654
  }
673
-
674
655
  // remap the light colors to the default colors
675
656
  @each $palette-key, $palette-steps in $_color-light {
676
657
  @if meta.type-of($palette-steps) == 'map' {
@@ -681,7 +662,6 @@ $_color-dark: (
681
662
  #{'--#{$prefix}-color-light-#{$palette-key}'}: var(--#{$prefix}-color-#{$palette-key});
682
663
  }
683
664
  }
684
-
685
665
  &.dark,
686
666
  &[theme-mode='dark'] {
687
667
  @each $palette-key, $palette-steps in $_color-dark {
@@ -693,7 +673,6 @@ $_color-dark: (
693
673
  #{'--#{$prefix}-color-dark-#{$palette-key}'}: #{$palette-steps};
694
674
  }
695
675
  }
696
-
697
676
  // remap the dark colors to the default colors
698
677
  @each $palette-key, $palette-steps in $_color-dark {
699
678
  @if meta.type-of($palette-steps) == 'map' {
@@ -707,38 +686,31 @@ $_color-dark: (
707
686
  }
708
687
  }
709
688
  }
710
-
711
689
  @function get-color($variant, $level, $mode: '') {
712
690
  @if $mode == '' {
713
691
  @return var(--#{$name}-color-#{$variant}-#{$level});
714
692
  }
715
-
716
693
  @return var(--#{$name}-color-#{$mode}-#{$variant}-#{$level});
717
694
  }
718
-
719
695
  @mixin _scrollbar-style($prefix) {
720
696
  * {
721
697
  /* Firefox */
722
698
  scrollbar-color: var(--#{$prefix}-scheme-highlight) var(--#{$prefix}-scheme-transparent);
723
699
  scrollbar-width: thin;
724
-
725
700
  /* Styling the scrollbar in Chrome and Safari */
726
701
  &::-webkit-scrollbar {
727
702
  width: 12px;
728
703
  }
729
-
730
704
  /* Set thumb color for Chrome and Safari */
731
705
  &::-webkit-scrollbar-thumb {
732
706
  background-color: var(--#{$prefix}-scheme-highlight);
733
707
  }
734
-
735
708
  /* Set track color for Chrome and Safari */
736
709
  &::-webkit-scrollbar-track {
737
710
  background-color: var(--#{$prefix}-scheme-transparent);
738
711
  }
739
712
  }
740
713
  }
741
-
742
714
  @mixin _selection-style($prefix) {
743
715
  * {
744
716
  /* Set selection color */
@@ -749,17 +721,10 @@ $_color-dark: (
749
721
  }
750
722
  }
751
723
  }
752
-
753
724
  @mixin common-style($prefix) {
754
725
  @include _scrollbar-style($prefix);
755
726
  @include _selection-style($prefix);
756
727
  }
757
-
758
-
759
-
760
-
761
-
762
-
763
728
  $_shadows-light: (
764
729
  none: $elevation-none,
765
730
  light: (
@@ -816,8 +781,7 @@ $_shadows-light: (
816
781
  color: $elevation-light-extrabold-color-0
817
782
  )
818
783
  )
819
- );
820
-
784
+ );
821
785
  $_shadows-dark: (
822
786
  none: $elevation-none,
823
787
  light: (
@@ -874,16 +838,14 @@ $_shadows-dark: (
874
838
  color: $elevation-dark-extrabold-color-0
875
839
  )
876
840
  )
877
- );
878
-
841
+ );
879
842
  @mixin elevation-style($prefix) {
880
843
  :root,
881
844
  :host {
882
845
  $mode: 'light';
883
846
  @include _generate-elevation-vars($_shadows-light, $prefix, $mode);
884
847
  @include _generate-elevation-composite($_shadows-light, $prefix, $mode);
885
- @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
886
-
848
+ @include _remap-elevation-vars($_shadows-light, $prefix, $mode);
887
849
  &.dark,
888
850
  &[theme-mode='dark'] {
889
851
  $mode: 'dark';
@@ -892,8 +854,7 @@ $_shadows-dark: (
892
854
  @include _remap-elevation-vars($_shadows-dark, $prefix, $mode);
893
855
  }
894
856
  }
895
- }
896
-
857
+ }
897
858
  @function get-elevation($weight, $mode: '') {
898
859
  $elevations: (
899
860
  '': (
@@ -907,59 +868,42 @@ $_shadows-dark: (
907
868
  ),
908
869
  'light': $_shadows-light,
909
870
  'dark': $_shadows-dark
910
- );
911
-
871
+ );
912
872
  @if (list.index($elevation-key, $weight) == null) {
913
873
  @error "Invalid weight: #{$weight}";
914
- }
915
-
874
+ }
916
875
  @return var(map.get(map.get($elevations, $mode), $weight));
917
- }
918
-
876
+ }
919
877
  @function get-shadow($elevation, $overrides: ()) {
920
878
  $shadow-props: (offset-x, offset-y, blur, spread, color);
921
879
  $name: $name;
922
880
  $shadows: ();
923
- $max-layer: -1;
924
-
881
+ $max-layer: -1;
925
882
  @if meta.type-of($overrides) == 'map' {
926
883
  @each $layer, $values in $overrides {
927
884
  @if meta.type-of($layer) == 'number' and $layer > $max-layer {
928
885
  $max-layer: $layer;
929
886
  }
930
887
  }
931
- }
932
-
888
+ }
933
889
  @if $max-layer == -1 {
934
890
  $max-layer: 0;
935
- }
936
-
891
+ }
937
892
  @for $layer from 0 through $max-layer {
938
- $shadow-layer: ();
939
-
893
+ $shadow-layer: ();
940
894
  @each $prop in $shadow-props {
941
- $value: null;
942
-
895
+ $value: null;
943
896
  @if map.has-key($overrides, $layer) and map.has-key(map.get($overrides, $layer), $prop) {
944
897
  $value: map.get(map.get($overrides, $layer), $prop);
945
898
  } @else {
946
899
  $value: var(--#{$name}-elevation-#{$elevation}-#{$prop}-#{$layer});
947
- }
948
-
900
+ }
949
901
  $shadow-layer: list.append($shadow-layer, $value, $separator: space);
950
- }
951
-
902
+ }
952
903
  $shadows: list.append($shadows, list.join($shadow-layer, (), $separator: space), $separator: comma);
953
- }
954
-
904
+ }
955
905
  @return list.join($shadows, (), $separator: comma);
956
- }
957
-
958
-
959
-
960
-
961
-
962
-
906
+ }
963
907
  @mixin layout-style($prefix, $radius: $layout-radius, $thickness: $layout-thickness, $space: $layout-space, $transition: $duration-short) {
964
908
  $layouts: ();
965
909
  $layouts: map.merge(
@@ -986,7 +930,6 @@ $_shadows-dark: (
986
930
  '#{$prefix}-layout-transition': $transition
987
931
  )
988
932
  );
989
-
990
933
  @if list.length($layouts) {
991
934
  :root,
992
935
  :host {
@@ -996,23 +939,18 @@ $_shadows-dark: (
996
939
  }
997
940
  }
998
941
  }
999
-
1000
942
  @function get-layout($key) {
1001
943
  $layouts: (
1002
944
  'radius': --#{$name}-layout-radius,
1003
945
  'space': --#{$name}-layout-space,
1004
946
  'thickness': --#{$name}-layout-thickness
1005
947
  );
1006
-
1007
948
  @if map.has-key($layouts, $key) {
1008
949
  @return var(map.get($layouts, $key));
1009
950
  } @else {
1010
951
  @error "Invalid layout value: #{$key}";
1011
952
  }
1012
953
  }
1013
-
1014
-
1015
-
1016
954
  $scheme-light: (
1017
955
  background: $scheme-light-background,
1018
956
  foreground: $scheme-light-foreground,
@@ -1024,7 +962,6 @@ $scheme-light: (
1024
962
  disabled: $scheme-light-disabled,
1025
963
  contrast: $scheme-light-contrast
1026
964
  );
1027
-
1028
965
  $scheme-dark: (
1029
966
  background: $scheme-dark-background,
1030
967
  foreground: $scheme-dark-foreground,
@@ -1036,36 +973,30 @@ $scheme-dark: (
1036
973
  disabled: $scheme-dark-disabled,
1037
974
  contrast: $scheme-dark-contrast
1038
975
  );
1039
-
1040
976
  @mixin scheme-style($prefix) {
1041
977
  :root,
1042
978
  :host {
1043
979
  @each $key, $value in $scheme-light {
1044
980
  #{'--#{$prefix}-scheme-light-#{$key}'}: #{$value};
1045
981
  }
1046
-
1047
982
  @each $key, $value in $scheme-light {
1048
983
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-light-#{$key});
1049
984
  }
1050
-
1051
985
  &.dark,
1052
986
  &[theme-mode='dark'] {
1053
987
  @each $key, $value in $scheme-dark {
1054
988
  #{'--#{$prefix}-scheme-dark-#{$key}'}: #{$value};
1055
989
  }
1056
-
1057
990
  @each $key, $value in $scheme-dark {
1058
991
  #{'--#{$prefix}-scheme-#{$key}'}: var(--#{$prefix}-scheme-dark-#{$key});
1059
992
  }
1060
993
  }
1061
994
  }
1062
995
  }
1063
-
1064
996
  @function get-scheme($key, $mode: '') {
1065
997
  @if ($mode == '') {
1066
998
  $mode: '';
1067
999
  }
1068
-
1069
1000
  $schemes: (
1070
1001
  '': (
1071
1002
  'background': --#{$name}-scheme-background,
@@ -1101,7 +1032,6 @@ $scheme-dark: (
1101
1032
  'contrast': --#{$name}-scheme-dark-contrast
1102
1033
  )
1103
1034
  );
1104
-
1105
1035
  @if map.has-key($schemes, $mode) {
1106
1036
  @if (map.has-key(map.get($schemes, $mode), $key)) {
1107
1037
  @return var(map.get(map.get($schemes, $mode), $key));
@@ -1112,14 +1042,8 @@ $scheme-dark: (
1112
1042
  @error "Invalid scheme mode: #{$mode}";
1113
1043
  }
1114
1044
  }
1115
-
1116
-
1117
-
1118
-
1119
-
1120
1045
  @function typography-palette() {
1121
- $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
1122
-
1046
+ $base-styles: (-moz-osx-font-smoothing: grayscale, -webkit-font-smoothing: antialiased, font-family: $font-family);
1123
1047
  $scale-styles: (
1124
1048
  'typography': $base-styles,
1125
1049
  'typography-headline1': (
@@ -1239,33 +1163,26 @@ $scheme-dark: (
1239
1163
  text-decoration: $typography-overline-text-decoration,
1240
1164
  text-transform: $typography-overline-text-transform
1241
1165
  )
1242
- );
1243
-
1166
+ );
1244
1167
  @each $style, $style-props in $scale-styles {
1245
1168
  // Merge base properties for all styles.
1246
1169
  $style-props: map.merge($base-styles, $style-props);
1247
1170
  // Override original styles with new styles.
1248
1171
  $scale-styles: map.merge($scale-styles, (#{$style}: $style-props));
1249
- }
1250
-
1172
+ }
1251
1173
  @return $scale-styles;
1252
- }
1253
-
1174
+ }
1254
1175
  @mixin typography-style($prefix) {
1255
- $typographies-map: typography-palette();
1256
-
1176
+ $typographies-map: typography-palette();
1257
1177
  :root,
1258
1178
  :host {
1259
- --#{$prefix}-font-family: #{$font-family};
1260
-
1179
+ --#{$prefix}-font-family: #{$font-family};
1261
1180
  @each $style in map.keys($typographies-map) {
1262
1181
  @if $style != 'typography' {
1263
1182
  @if not map.has-key($typographies-map, $style) {
1264
1183
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
1265
- }
1266
-
1267
- $style-props: map.get($typographies-map, $style);
1268
-
1184
+ }
1185
+ $style-props: map.get($typographies-map, $style);
1269
1186
  --#{$prefix}-#{$style}-font-family: #{map.get($style-props, 'font-family')};
1270
1187
  --#{$prefix}-#{$style}-font-size: #{map.get($style-props, 'font-size')};
1271
1188
  --#{$prefix}-#{$style}-line-height: #{map.get($style-props, 'line-height')};
@@ -1276,23 +1193,19 @@ $scheme-dark: (
1276
1193
  --#{$prefix}-#{$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')};
1277
1194
  }
1278
1195
  }
1279
- }
1280
-
1196
+ }
1281
1197
  @each $style in map.keys($typographies-map) {
1282
1198
  .#{$style} {
1283
- $style-props: map.get($typographies-map, $style);
1284
-
1199
+ $style-props: map.get($typographies-map, $style);
1285
1200
  @if not map.has-key($typographies-map, $style) {
1286
1201
  @error 'Invalid style specified! #{$style} does not exist. Choose one of #{map.keys($typographies-map)}';
1287
- }
1288
-
1202
+ }
1289
1203
  @each $key, $value in $style-props {
1290
1204
  #{$key}: $value;
1291
1205
  }
1292
1206
  }
1293
1207
  }
1294
- }
1295
-
1208
+ }
1296
1209
  @function get-typography($type, $property) {
1297
1210
  $properties: (
1298
1211
  'font-family': --#{$name}-typography-#{$type}-font-family,
@@ -1302,39 +1215,25 @@ $scheme-dark: (
1302
1215
  'letter-spacing': --#{$name}-typography-#{$type}-letter-spacing,
1303
1216
  'text-decoration': --#{$name}-typography-#{$type}-text-decoration,
1304
1217
  'text-transform': --#{$name}-typography-#{$type}-text-transform
1305
- );
1306
-
1218
+ );
1307
1219
  @if map.has-key($properties, $property) {
1308
1220
  @return var(map.get($properties, $property));
1309
1221
  } @else {
1310
1222
  @error "Invalid typography property: #{$property}";
1311
1223
  }
1312
- }
1313
-
1314
-
1315
-
1316
-
1317
-
1318
-
1319
-
1320
-
1321
-
1224
+ }
1322
1225
  @mixin retro-style($radius: $layout-radius, $thickness: $layout-thickness, $space: $layout-space) {
1323
1226
  $theme: 'retro';
1324
-
1325
1227
  @include layout-style($theme, $radius, $thickness, $space);
1326
1228
  @include scheme-style($theme);
1327
1229
  @include color-style($theme);
1328
1230
  @include elevation-style($theme);
1329
1231
  @include typography-style($theme);
1330
1232
  @include common-style($theme);
1331
-
1332
1233
  :host {
1333
1234
  @content;
1334
1235
  }
1335
1236
  }
1336
-
1337
-
1338
1237
  $absolute-props: (
1339
1238
  'font-family': "unset",
1340
1239
  'font-size': "unset",
@@ -1352,8 +1251,7 @@ $absolute-props: (
1352
1251
  'transition-mode': "unset",
1353
1252
  'transition-property': unset,
1354
1253
  'translate': "unset"
1355
- );
1356
-
1254
+ );
1357
1255
  $absolute-item-props: (
1358
1256
  'font-family': "unset",
1359
1257
  'font-size': "unset",
@@ -1371,8 +1269,7 @@ $absolute-item-props: (
1371
1269
  'transition-mode': "unset",
1372
1270
  'transition-property': unset,
1373
1271
  'translate': "unset"
1374
- );
1375
-
1272
+ );
1376
1273
  $accordion-props: (
1377
1274
  'font-family': "unset",
1378
1275
  'font-size': "unset",
@@ -1390,8 +1287,7 @@ $accordion-props: (
1390
1287
  'transition-mode': "unset",
1391
1288
  'transition-property': unset,
1392
1289
  'translate': "unset"
1393
- );
1394
-
1290
+ );
1395
1291
  $alert-props: (
1396
1292
  'font-family': "unset",
1397
1293
  'font-size': "unset",
@@ -1409,8 +1305,7 @@ $alert-props: (
1409
1305
  'transition-mode': "unset",
1410
1306
  'transition-property': unset,
1411
1307
  'translate': "unset"
1412
- );
1413
-
1308
+ );
1414
1309
  $anchor-props: (
1415
1310
  'font-family': var(--retro-font-family),
1416
1311
  'font-size': var(--retro-typography-button-font-size),
@@ -1431,8 +1326,7 @@ $anchor-props: (
1431
1326
  'background-color': var(--retro-scheme-background),
1432
1327
  'border-color': var(--retro-scheme-highlight),
1433
1328
  'foreground-color': var(--retro-scheme-foreground)
1434
- );
1435
-
1329
+ );
1436
1330
  $app-props: (
1437
1331
  'font-family': var(--retro-typography-body1-font-family),
1438
1332
  'font-size': var(--retro-typography-body1-font-size),
@@ -1452,8 +1346,7 @@ $app-props: (
1452
1346
  'translate': "unset",
1453
1347
  'background-color': var(--retro-scheme-background),
1454
1348
  'foreground-color': var(--retro-scheme-foreground)
1455
- );
1456
-
1349
+ );
1457
1350
  $app-header-props: (
1458
1351
  'font-family': var(--retro-typography-headline6-font-family),
1459
1352
  'font-size': var(--retro-typography-headline6-font-size),
@@ -1477,8 +1370,7 @@ $app-header-props: (
1477
1370
  'border-style': solid,
1478
1371
  'border-width': var(--retro-layout-thickness),
1479
1372
  'foreground-color': var(--retro-scheme-foreground)
1480
- );
1481
-
1373
+ );
1482
1374
  $auto-complete-box-props: (
1483
1375
  'font-family': "unset",
1484
1376
  'font-size': "unset",
@@ -1507,8 +1399,7 @@ $auto-complete-box-props: (
1507
1399
  'shadow-offset-x': unset,
1508
1400
  'shadow-offset-y': unset,
1509
1401
  'shadow-spread': unset
1510
- );
1511
-
1402
+ );
1512
1403
  $avatar-props: (
1513
1404
  'font-family': var(--retro-font-family),
1514
1405
  'font-size': 32px,
@@ -1543,8 +1434,7 @@ $avatar-props: (
1543
1434
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
1544
1435
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
1545
1436
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
1546
- );
1547
-
1437
+ );
1548
1438
  $avatar-group-props: (
1549
1439
  'font-family': unset,
1550
1440
  'font-size': unset,
@@ -1573,8 +1463,7 @@ $avatar-group-props: (
1573
1463
  'shadow-offset-x': unset,
1574
1464
  'shadow-offset-y': unset,
1575
1465
  'shadow-spread': unset
1576
- );
1577
-
1466
+ );
1578
1467
  $back-top-props: (
1579
1468
  'font-family': "unset",
1580
1469
  'font-size': "unset",
@@ -1592,8 +1481,7 @@ $back-top-props: (
1592
1481
  'transition-mode': "unset",
1593
1482
  'transition-property': unset,
1594
1483
  'translate': "unset"
1595
- );
1596
-
1484
+ );
1597
1485
  $backdrop-props: (
1598
1486
  'font-family': "unset",
1599
1487
  'font-size': "unset",
@@ -1612,8 +1500,7 @@ $backdrop-props: (
1612
1500
  'transition-property': opacity,
1613
1501
  'translate': "unset",
1614
1502
  'background-color': var(--retro-scheme-semi-transparent)
1615
- );
1616
-
1503
+ );
1617
1504
  $badge-props: (
1618
1505
  'font-family': unset,
1619
1506
  'font-size': unset,
@@ -1643,8 +1530,7 @@ $badge-props: (
1643
1530
  'shadow-offset-y': unset,
1644
1531
  'shadow-spread': unset,
1645
1532
  'size': unset
1646
- );
1647
-
1533
+ );
1648
1534
  $banner-props: (
1649
1535
  'font-family': var(--retro-font-family),
1650
1536
  'font-size': var(--retro-typography-body1-font-size),
@@ -1673,8 +1559,7 @@ $banner-props: (
1673
1559
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
1674
1560
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
1675
1561
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
1676
- );
1677
-
1562
+ );
1678
1563
  $banner-header-props: (
1679
1564
  'font-family': var(--retro-font-family),
1680
1565
  'font-size': var(--retro-typography-body1-font-size),
@@ -1695,8 +1580,7 @@ $banner-header-props: (
1695
1580
  'background-color': unset,
1696
1581
  'border-color': unset,
1697
1582
  'foreground-color': var(--retro-scheme-foreground)
1698
- );
1699
-
1583
+ );
1700
1584
  $banner-sub-header-props: (
1701
1585
  'font-family': var(--retro-font-family),
1702
1586
  'font-size': var(--retro-typography-body2-font-size),
@@ -1717,8 +1601,7 @@ $banner-sub-header-props: (
1717
1601
  'background-color': unset,
1718
1602
  'border-color': unset,
1719
1603
  'foreground-color': var(--retro-scheme-foreground)
1720
- );
1721
-
1604
+ );
1722
1605
  $bottom-sheet-props: (
1723
1606
  'font-family': unset,
1724
1607
  'font-size': unset,
@@ -1741,8 +1624,7 @@ $bottom-sheet-props: (
1741
1624
  'border-width': unset,
1742
1625
  'foreground-color': unset,
1743
1626
  'translate-y': unset
1744
- );
1745
-
1627
+ );
1746
1628
  $box-props: (
1747
1629
  'font-family': "unset",
1748
1630
  'font-size': "unset",
@@ -1768,8 +1650,7 @@ $box-props: (
1768
1650
  'foreground-color': unset,
1769
1651
  'height': auto,
1770
1652
  'width': auto
1771
- );
1772
-
1653
+ );
1773
1654
  $breadcrumb-props: (
1774
1655
  'font-family': unset,
1775
1656
  'font-size': unset,
@@ -1787,8 +1668,7 @@ $breadcrumb-props: (
1787
1668
  'transition-mode': unset,
1788
1669
  'transition-property': unset,
1789
1670
  'translate': unset
1790
- );
1791
-
1671
+ );
1792
1672
  $breadcrumb-item-props: (
1793
1673
  'font-family': unset,
1794
1674
  'font-size': unset,
@@ -1806,8 +1686,7 @@ $breadcrumb-item-props: (
1806
1686
  'transition-mode': unset,
1807
1687
  'transition-property': unset,
1808
1688
  'translate': unset
1809
- );
1810
-
1689
+ );
1811
1690
  $button-props: (
1812
1691
  'font-family': var(--retro-typography-button-font-family),
1813
1692
  'font-size': var(--retro-typography-button-font-size),
@@ -1840,8 +1719,7 @@ $button-props: (
1840
1719
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
1841
1720
  'shadow-spread': var(--retro-elevation-semilight-spread-0),
1842
1721
  'width': auto
1843
- );
1844
-
1722
+ );
1845
1723
  $button-group-props: (
1846
1724
  'font-family': var(--retro-font-family),
1847
1725
  'font-size': var(--retro-typography-button-font-size),
@@ -1870,8 +1748,7 @@ $button-group-props: (
1870
1748
  'shadow-offset-x': unset,
1871
1749
  'shadow-offset-y': unset,
1872
1750
  'shadow-spread': unset
1873
- );
1874
-
1751
+ );
1875
1752
  $calendar-props: (
1876
1753
  'font-family': var(--retro-font-family),
1877
1754
  'font-size': var(--retro-typography-body1-font-size),
@@ -1901,8 +1778,7 @@ $calendar-props: (
1901
1778
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
1902
1779
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
1903
1780
  'shadow-spread': var(--retro-elevation-light-spread-0)
1904
- );
1905
-
1781
+ );
1906
1782
  $calendar-days-view-props: (
1907
1783
  'font-family': "unset",
1908
1784
  'font-size': "unset",
@@ -1920,8 +1796,7 @@ $calendar-days-view-props: (
1920
1796
  'transition-mode': "unset",
1921
1797
  'transition-property': unset,
1922
1798
  'translate': "unset"
1923
- );
1924
-
1799
+ );
1925
1800
  $calendar-header-props: (
1926
1801
  'font-family': "unset",
1927
1802
  'font-size': "unset",
@@ -1945,8 +1820,7 @@ $calendar-header-props: (
1945
1820
  'border-style': solid,
1946
1821
  'border-width': var(--retro-layout-thickness),
1947
1822
  'foreground-color': var(--retro-scheme-lowlight)
1948
- );
1949
-
1823
+ );
1950
1824
  $calendar-item-props: (
1951
1825
  'font-family': var(--retro-font-family),
1952
1826
  'font-size': var(--retro-typography-body1-font-size),
@@ -1975,8 +1849,7 @@ $calendar-item-props: (
1975
1849
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
1976
1850
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
1977
1851
  'shadow-spread': var(--retro-elevation-light-spread-0)
1978
- );
1979
-
1852
+ );
1980
1853
  $calendar-months-view-props: (
1981
1854
  'font-family': "unset",
1982
1855
  'font-size': "unset",
@@ -1994,8 +1867,7 @@ $calendar-months-view-props: (
1994
1867
  'transition-mode': "unset",
1995
1868
  'transition-property': unset,
1996
1869
  'translate': "unset"
1997
- );
1998
-
1870
+ );
1999
1871
  $calendar-sub-header-props: (
2000
1872
  'font-family': "unset",
2001
1873
  'font-size': 18px,
@@ -2021,8 +1893,7 @@ $calendar-sub-header-props: (
2021
1893
  '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),
2022
1894
  'foreground-color': var(--retro-scheme-foreground),
2023
1895
  'line-height': 22px
2024
- );
2025
-
1896
+ );
2026
1897
  $calendar-years-view-props: (
2027
1898
  'font-family': "unset",
2028
1899
  'font-size': "unset",
@@ -2040,8 +1911,7 @@ $calendar-years-view-props: (
2040
1911
  'transition-mode': "unset",
2041
1912
  'transition-property': unset,
2042
1913
  'translate': "unset"
2043
- );
2044
-
1914
+ );
2045
1915
  $camera-props: (
2046
1916
  'font-family': "unset",
2047
1917
  'font-size': "unset",
@@ -2062,8 +1932,7 @@ $camera-props: (
2062
1932
  'background-color': unset,
2063
1933
  'border-radius': unset,
2064
1934
  'foreground-color': unset
2065
- );
2066
-
1935
+ );
2067
1936
  $card-props: (
2068
1937
  'font-family': var(--retro-font-family),
2069
1938
  'font-size': var(--retro-typography-body1-font-size),
@@ -2093,8 +1962,7 @@ $card-props: (
2093
1962
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
2094
1963
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
2095
1964
  'shadow-spread': var(--retro-elevation-bold-spread-0)
2096
- );
2097
-
1965
+ );
2098
1966
  $card-actions-props: (
2099
1967
  'font-family': unset,
2100
1968
  'font-size': unset,
@@ -2112,8 +1980,7 @@ $card-actions-props: (
2112
1980
  'transition-mode': unset,
2113
1981
  'transition-property': unset,
2114
1982
  'translate': unset
2115
- );
2116
-
1983
+ );
2117
1984
  $card-content-props: (
2118
1985
  'font-family': unset,
2119
1986
  'font-size': unset,
@@ -2131,8 +1998,7 @@ $card-content-props: (
2131
1998
  'transition-mode': unset,
2132
1999
  'transition-property': unset,
2133
2000
  'translate': unset
2134
- );
2135
-
2001
+ );
2136
2002
  $card-footer-props: (
2137
2003
  'font-family': unset,
2138
2004
  'font-size': unset,
@@ -2150,8 +2016,7 @@ $card-footer-props: (
2150
2016
  'transition-mode': unset,
2151
2017
  'transition-property': unset,
2152
2018
  'translate': unset
2153
- );
2154
-
2019
+ );
2155
2020
  $card-header-props: (
2156
2021
  'font-family': unset,
2157
2022
  'font-size': unset,
@@ -2169,8 +2034,7 @@ $card-header-props: (
2169
2034
  'transition-mode': unset,
2170
2035
  'transition-property': unset,
2171
2036
  'translate': unset
2172
- );
2173
-
2037
+ );
2174
2038
  $card-sub-title-props: (
2175
2039
  'font-family': var(--retro-font-family),
2176
2040
  'font-size': var(--retro-typography-subtitle1-font-size),
@@ -2191,8 +2055,7 @@ $card-sub-title-props: (
2191
2055
  'background-color': var(--retro-scheme-transparent),
2192
2056
  'border-color': var(--retro-scheme-contrast),
2193
2057
  'foreground-color': var(--retro-scheme-middlelight)
2194
- );
2195
-
2058
+ );
2196
2059
  $card-title-props: (
2197
2060
  'font-family': var(--retro-font-family),
2198
2061
  'font-size': var(--retro-typography-headline6-font-size),
@@ -2213,8 +2076,7 @@ $card-title-props: (
2213
2076
  'background-color': var(--retro-scheme-transparent),
2214
2077
  'border-color': var(--retro-scheme-contrast),
2215
2078
  'foreground-color': var(--retro-scheme-foreground)
2216
- );
2217
-
2079
+ );
2218
2080
  $carousel-props: (
2219
2081
  'font-family': "unset",
2220
2082
  'font-size': "unset",
@@ -2232,8 +2094,7 @@ $carousel-props: (
2232
2094
  'transition-mode': "unset",
2233
2095
  'transition-property': unset,
2234
2096
  'translate': "unset"
2235
- );
2236
-
2097
+ );
2237
2098
  $carousel2-props: (
2238
2099
  'font-family': "unset",
2239
2100
  'font-size': "unset",
@@ -2251,8 +2112,7 @@ $carousel2-props: (
2251
2112
  'transition-mode': "unset",
2252
2113
  'transition-property': unset,
2253
2114
  'translate': "unset"
2254
- );
2255
-
2115
+ );
2256
2116
  $carousel-item-props: (
2257
2117
  'font-family': "unset",
2258
2118
  'font-size': "unset",
@@ -2270,8 +2130,7 @@ $carousel-item-props: (
2270
2130
  'transition-mode': "unset",
2271
2131
  'transition-property': unset,
2272
2132
  'translate': "unset"
2273
- );
2274
-
2133
+ );
2275
2134
  $carousel-item2-props: (
2276
2135
  'font-family': "unset",
2277
2136
  'font-size': "unset",
@@ -2289,8 +2148,7 @@ $carousel-item2-props: (
2289
2148
  'transition-mode': "unset",
2290
2149
  'transition-property': unset,
2291
2150
  'translate': "unset"
2292
- );
2293
-
2151
+ );
2294
2152
  $cell-props: (
2295
2153
  'font-family': var(--retro-font-family),
2296
2154
  'font-size': var(--retro-typography-body1-font-size),
@@ -2315,8 +2173,7 @@ $cell-props: (
2315
2173
  'sub-font-text-decoration': var(--retro-typography-body2-text-decoration),
2316
2174
  'sub-font-text-transform': var(--retro-typography-body2-text-transform),
2317
2175
  'sub-font-weight': var(--retro-typography-body2-font-weight)
2318
- );
2319
-
2176
+ );
2320
2177
  $cell-group-props: (
2321
2178
  'font-family': var(--retro-font-family),
2322
2179
  'font-size': var(--retro-typography-overline-font-size),
@@ -2345,8 +2202,7 @@ $cell-group-props: (
2345
2202
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
2346
2203
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
2347
2204
  'shadow-spread': var(--retro-elevation-bold-spread-0)
2348
- );
2349
-
2205
+ );
2350
2206
  $chart-props: (
2351
2207
  'font-family': var(--retro-typography-headline6-font-family),
2352
2208
  'font-size': var(--retro-typography-headline6-font-size),
@@ -2366,8 +2222,7 @@ $chart-props: (
2366
2222
  'translate': "unset",
2367
2223
  'background-color': var(--retro-scheme-background),
2368
2224
  'foreground-color': var(--retro-scheme-foreground)
2369
- );
2370
-
2225
+ );
2371
2226
  $chat-props: (
2372
2227
  'font-family': unset,
2373
2228
  'font-size': unset,
@@ -2393,8 +2248,7 @@ $chat-props: (
2393
2248
  'focus-ring-outward-offset': unset,
2394
2249
  'foreground-color': unset,
2395
2250
  'shadow': unset
2396
- );
2397
-
2251
+ );
2398
2252
  $chat-header-props: (
2399
2253
  'font-family': "unset",
2400
2254
  'font-size': "unset",
@@ -2413,8 +2267,7 @@ $chat-header-props: (
2413
2267
  'transition-property': unset,
2414
2268
  'translate': "unset",
2415
2269
  'height': unset
2416
- );
2417
-
2270
+ );
2418
2271
  $chat-input-props: (
2419
2272
  'font-family': "unset",
2420
2273
  'font-size': "unset",
@@ -2433,8 +2286,7 @@ $chat-input-props: (
2433
2286
  'transition-property': unset,
2434
2287
  'translate': "unset",
2435
2288
  'emoji-background-color': unset
2436
- );
2437
-
2289
+ );
2438
2290
  $chat-marker-props: (
2439
2291
  'font-family': unset,
2440
2292
  'font-size': unset,
@@ -2459,8 +2311,7 @@ $chat-marker-props: (
2459
2311
  'border-width': unset,
2460
2312
  'foreground-color': unset,
2461
2313
  'shadow': unset
2462
- );
2463
-
2314
+ );
2464
2315
  $chat-message-props: (
2465
2316
  'font-family': unset,
2466
2317
  'font-size': unset,
@@ -2485,8 +2336,7 @@ $chat-message-props: (
2485
2336
  'border-width': unset,
2486
2337
  'foreground-color': unset,
2487
2338
  'shadow': unset
2488
- );
2489
-
2339
+ );
2490
2340
  $chat-message-avatar-props: (
2491
2341
  'font-family': "unset",
2492
2342
  'font-size': "unset",
@@ -2504,8 +2354,7 @@ $chat-message-avatar-props: (
2504
2354
  'transition-mode': "unset",
2505
2355
  'transition-property': unset,
2506
2356
  'translate': "unset"
2507
- );
2508
-
2357
+ );
2509
2358
  $chat-message-divider-props: (
2510
2359
  'font-family': "unset",
2511
2360
  'font-size': "unset",
@@ -2523,8 +2372,7 @@ $chat-message-divider-props: (
2523
2372
  'transition-mode': "unset",
2524
2373
  'transition-property': unset,
2525
2374
  'translate': "unset"
2526
- );
2527
-
2375
+ );
2528
2376
  $check-box-props: (
2529
2377
  'font-family': var(--retro-font-family),
2530
2378
  'font-size': var(--retro-typography-body1-font-size),
@@ -2549,8 +2397,7 @@ $check-box-props: (
2549
2397
  'border-width': var(--retro-layout-thickness),
2550
2398
  'foreground-color': var(--retro-scheme-foreground),
2551
2399
  'shadow': var(--retro-elevation-none)
2552
- );
2553
-
2400
+ );
2554
2401
  $check-box-group-props: (
2555
2402
  'font-family': "unset",
2556
2403
  'font-size': "unset",
@@ -2575,8 +2422,7 @@ $check-box-group-props: (
2575
2422
  'border-width': unset,
2576
2423
  'foreground-color': unset,
2577
2424
  'shadow': unset
2578
- );
2579
-
2425
+ );
2580
2426
  $checkmark-props: (
2581
2427
  'font-family': "unset",
2582
2428
  'font-size': "unset",
@@ -2605,8 +2451,7 @@ $checkmark-props: (
2605
2451
  'shadow': unset,
2606
2452
  'thickness': unset,
2607
2453
  'width': unset
2608
- );
2609
-
2454
+ );
2610
2455
  $chip-props: (
2611
2456
  'font-family': var(--retro-font-family),
2612
2457
  'font-size': var(--retro-typography-body2-font-size),
@@ -2636,8 +2481,7 @@ $chip-props: (
2636
2481
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
2637
2482
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
2638
2483
  'shadow-spread': var(--retro-elevation-light-spread-0)
2639
- );
2640
-
2484
+ );
2641
2485
  $chip-box-props: (
2642
2486
  'font-family': "unset",
2643
2487
  'font-size': "unset",
@@ -2663,8 +2507,7 @@ $chip-box-props: (
2663
2507
  'foreground-color': unset,
2664
2508
  'height': unset,
2665
2509
  'shadow': unset
2666
- );
2667
-
2510
+ );
2668
2511
  $choice-props: (
2669
2512
  'font-family': unset,
2670
2513
  'font-size': unset,
@@ -2692,8 +2535,7 @@ $choice-props: (
2692
2535
  'focus-ring-outward-offset': unset,
2693
2536
  'foreground-color': unset,
2694
2537
  'shadow': unset
2695
- );
2696
-
2538
+ );
2697
2539
  $choice-group-props: (
2698
2540
  'font-family': "unset",
2699
2541
  'font-size': "unset",
@@ -2718,8 +2560,7 @@ $choice-group-props: (
2718
2560
  'border-width': unset,
2719
2561
  'foreground-color': unset,
2720
2562
  'shadow': unset
2721
- );
2722
-
2563
+ );
2723
2564
  $choice-group-header-props: (
2724
2565
  'font-family': "unset",
2725
2566
  'font-size': "unset",
@@ -2744,8 +2585,7 @@ $choice-group-header-props: (
2744
2585
  'border-width': unset,
2745
2586
  'foreground-color': unset,
2746
2587
  'shadow': unset
2747
- );
2748
-
2588
+ );
2749
2589
  $code-props: (
2750
2590
  'font-family': "unset",
2751
2591
  'font-size': "unset",
@@ -2764,8 +2604,7 @@ $code-props: (
2764
2604
  'transition-property': unset,
2765
2605
  'translate': "unset",
2766
2606
  'foreground-color': unset
2767
- );
2768
-
2607
+ );
2769
2608
  $color-area-props: (
2770
2609
  'font-family': "unset",
2771
2610
  'font-size': "unset",
@@ -2783,8 +2622,7 @@ $color-area-props: (
2783
2622
  'transition-mode': "unset",
2784
2623
  'transition-property': unset,
2785
2624
  'translate': "unset"
2786
- );
2787
-
2625
+ );
2788
2626
  $color-box-props: (
2789
2627
  'font-family': unset,
2790
2628
  'font-size': unset,
@@ -2810,8 +2648,7 @@ $color-box-props: (
2810
2648
  'foreground-color': unset,
2811
2649
  'height': unset,
2812
2650
  'shadow': unset
2813
- );
2814
-
2651
+ );
2815
2652
  $color-picker-props: (
2816
2653
  'font-family': unset,
2817
2654
  'font-size': unset,
@@ -2836,8 +2673,7 @@ $color-picker-props: (
2836
2673
  'border-width': unset,
2837
2674
  'foreground-color': unset,
2838
2675
  'size': unset
2839
- );
2840
-
2676
+ );
2841
2677
  $color-slider-props: (
2842
2678
  'font-family': "unset",
2843
2679
  'font-size': "unset",
@@ -2862,8 +2698,7 @@ $color-slider-props: (
2862
2698
  'border-width': unset,
2863
2699
  'foreground-color': unset,
2864
2700
  'shadow': unset
2865
- );
2866
-
2701
+ );
2867
2702
  $color-swatch-props: (
2868
2703
  'font-family': var(--retro-font-family),
2869
2704
  'font-size': var(--retro-typography-body1-font-size),
@@ -2888,8 +2723,7 @@ $color-swatch-props: (
2888
2723
  'border-width': var(--retro-layout-thickness),
2889
2724
  'foreground-color': var(--retro-scheme-foreground),
2890
2725
  'size': 24px
2891
- );
2892
-
2726
+ );
2893
2727
  $color-swatch-group-props: (
2894
2728
  'font-family': unset,
2895
2729
  'font-size': unset,
@@ -2914,8 +2748,7 @@ $color-swatch-group-props: (
2914
2748
  'border-width': unset,
2915
2749
  'foreground-color': unset,
2916
2750
  'shadow': unset
2917
- );
2918
-
2751
+ );
2919
2752
  $color-thumb-props: (
2920
2753
  'font-family': unset,
2921
2754
  'font-size': unset,
@@ -2940,8 +2773,7 @@ $color-thumb-props: (
2940
2773
  'border-width': unset,
2941
2774
  'foreground-color': unset,
2942
2775
  'size': unset
2943
- );
2944
-
2776
+ );
2945
2777
  $combo-props: (
2946
2778
  'font-family': "unset",
2947
2779
  'font-size': "unset",
@@ -2959,8 +2791,7 @@ $combo-props: (
2959
2791
  'transition-mode': "unset",
2960
2792
  'transition-property': unset,
2961
2793
  'translate': "unset"
2962
- );
2963
-
2794
+ );
2964
2795
  $combo-item-props: (
2965
2796
  'font-family': unset,
2966
2797
  'font-size': unset,
@@ -2985,8 +2816,7 @@ $combo-item-props: (
2985
2816
  'border-width': unset,
2986
2817
  'foreground-color': unset,
2987
2818
  'shadow': unset
2988
- );
2989
-
2819
+ );
2990
2820
  $comment-props: (
2991
2821
  'font-family': "unset",
2992
2822
  'font-size': "unset",
@@ -3006,8 +2836,7 @@ $comment-props: (
3006
2836
  'translate': "unset",
3007
2837
  'inner-gap': unset,
3008
2838
  'nested-indent': unset
3009
- );
3010
-
2839
+ );
3011
2840
  $compound-button-props: (
3012
2841
  'font-family': var(--retro-font-family),
3013
2842
  'font-size': var(--retro-typography-button-font-size),
@@ -3036,8 +2865,7 @@ $compound-button-props: (
3036
2865
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3037
2866
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3038
2867
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3039
- );
3040
-
2868
+ );
3041
2869
  $content-props: (
3042
2870
  'font-family': "unset",
3043
2871
  'font-size': "unset",
@@ -3055,8 +2883,7 @@ $content-props: (
3055
2883
  'transition-mode': "unset",
3056
2884
  'transition-property': unset,
3057
2885
  'translate': "unset"
3058
- );
3059
-
2886
+ );
3060
2887
  $cookies-consent-props: (
3061
2888
  'font-family': "unset",
3062
2889
  'font-size': "unset",
@@ -3074,8 +2901,7 @@ $cookies-consent-props: (
3074
2901
  'transition-mode': "unset",
3075
2902
  'transition-property': unset,
3076
2903
  'translate': "unset"
3077
- );
3078
-
2904
+ );
3079
2905
  $data-list-props: (
3080
2906
  'font-family': "unset",
3081
2907
  'font-size': "unset",
@@ -3093,8 +2919,7 @@ $data-list-props: (
3093
2919
  'transition-mode': "unset",
3094
2920
  'transition-property': unset,
3095
2921
  'translate': "unset"
3096
- );
3097
-
2922
+ );
3098
2923
  $data-table-props: (
3099
2924
  'font-family': "unset",
3100
2925
  'font-size': "unset",
@@ -3112,8 +2937,7 @@ $data-table-props: (
3112
2937
  'transition-mode': "unset",
3113
2938
  'transition-property': unset,
3114
2939
  'translate': "unset"
3115
- );
3116
-
2940
+ );
3117
2941
  $date-box-props: (
3118
2942
  'font-family': var(--retro-font-family),
3119
2943
  'font-size': var(--retro-typography-body1-font-size),
@@ -3144,8 +2968,7 @@ $date-box-props: (
3144
2968
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3145
2969
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3146
2970
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3147
- );
3148
-
2971
+ );
3149
2972
  $date-time-box-props: (
3150
2973
  'font-family': unset,
3151
2974
  'font-size': unset,
@@ -3174,8 +2997,7 @@ $date-time-box-props: (
3174
2997
  'foreground-color': unset,
3175
2998
  'height': unset,
3176
2999
  'shadow': unset
3177
- );
3178
-
3000
+ );
3179
3001
  $dialog-props: (
3180
3002
  'font-family': var(--retro-font-family),
3181
3003
  'font-size': var(--retro-typography-body1-font-size),
@@ -3205,8 +3027,7 @@ $dialog-props: (
3205
3027
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
3206
3028
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
3207
3029
  'shadow-spread': var(--retro-elevation-bold-spread-0)
3208
- );
3209
-
3030
+ );
3210
3031
  $dialog-actions-props: (
3211
3032
  'font-family': "unset",
3212
3033
  'font-size': "unset",
@@ -3224,8 +3045,7 @@ $dialog-actions-props: (
3224
3045
  'transition-mode': "unset",
3225
3046
  'transition-property': unset,
3226
3047
  'translate': "unset"
3227
- );
3228
-
3048
+ );
3229
3049
  $dialog-content-props: (
3230
3050
  'font-family': "unset",
3231
3051
  'font-size': "unset",
@@ -3243,8 +3063,7 @@ $dialog-content-props: (
3243
3063
  'transition-mode': "unset",
3244
3064
  'transition-property': unset,
3245
3065
  'translate': "unset"
3246
- );
3247
-
3066
+ );
3248
3067
  $dialog-footer-props: (
3249
3068
  'font-family': "unset",
3250
3069
  'font-size': "unset",
@@ -3262,8 +3081,7 @@ $dialog-footer-props: (
3262
3081
  'transition-mode': "unset",
3263
3082
  'transition-property': unset,
3264
3083
  'translate': "unset"
3265
- );
3266
-
3084
+ );
3267
3085
  $dialog-header-props: (
3268
3086
  'font-family': "unset",
3269
3087
  'font-size': "unset",
@@ -3281,8 +3099,7 @@ $dialog-header-props: (
3281
3099
  'transition-mode': "unset",
3282
3100
  'transition-property': unset,
3283
3101
  'translate': "unset"
3284
- );
3285
-
3102
+ );
3286
3103
  $dialog-header-sub-text-props: (
3287
3104
  'font-family': var(--retro-font-family),
3288
3105
  'font-size': var(--retro-typography-subtitle2-font-size),
@@ -3303,8 +3120,7 @@ $dialog-header-sub-text-props: (
3303
3120
  'background-color': var(--retro-scheme-background),
3304
3121
  'border-color': var(--retro-scheme-contrast),
3305
3122
  'foreground-color': var(--retro-scheme-middlelight)
3306
- );
3307
-
3123
+ );
3308
3124
  $dialog-header-text-props: (
3309
3125
  'font-family': var(--retro-font-family),
3310
3126
  'font-size': var(--retro-typography-headline6-font-size),
@@ -3325,8 +3141,7 @@ $dialog-header-text-props: (
3325
3141
  'background-color': var(--retro-scheme-background),
3326
3142
  'border-color': var(--retro-scheme-contrast),
3327
3143
  'foreground-color': var(--retro-scheme-foreground)
3328
- );
3329
-
3144
+ );
3330
3145
  $dialog-host-props: (
3331
3146
  'font-family': "unset",
3332
3147
  'font-size': "unset",
@@ -3344,8 +3159,7 @@ $dialog-host-props: (
3344
3159
  'transition-mode': "unset",
3345
3160
  'transition-property': unset,
3346
3161
  'translate': "unset"
3347
- );
3348
-
3162
+ );
3349
3163
  $disclosure-props: (
3350
3164
  'font-family': unset,
3351
3165
  'font-size': unset,
@@ -3363,8 +3177,7 @@ $disclosure-props: (
3363
3177
  'transition-mode': unset,
3364
3178
  'transition-property': unset,
3365
3179
  'translate': unset
3366
- );
3367
-
3180
+ );
3368
3181
  $divider-props: (
3369
3182
  'font-family': var(--retro-font-family),
3370
3183
  'font-size': 12px,
@@ -3386,8 +3199,7 @@ $divider-props: (
3386
3199
  'foreground-color': var(--retro-scheme-foreground),
3387
3200
  'shadow': var(--retro-elevation-none),
3388
3201
  'thickness': var(--retro-layout-thickness)
3389
- );
3390
-
3202
+ );
3391
3203
  $dot-props: (
3392
3204
  'font-family': var(--retro-font-family),
3393
3205
  'font-size': 16px,
@@ -3413,8 +3225,7 @@ $dot-props: (
3413
3225
  'foreground-color': var(--retro-color-neutral-50),
3414
3226
  'shadow': unset,
3415
3227
  'size': 16px
3416
- );
3417
-
3228
+ );
3418
3229
  $drawer-props: (
3419
3230
  'font-family': var(--retro-font-family),
3420
3231
  'font-size': 16px,
@@ -3441,8 +3252,7 @@ $drawer-props: (
3441
3252
  'height': 100%,
3442
3253
  'shadow': var(--retro-elevation-none),
3443
3254
  'width': 320px
3444
- );
3445
-
3255
+ );
3446
3256
  $drawer-container-props: (
3447
3257
  'font-family': "unset",
3448
3258
  'font-size': "unset",
@@ -3460,8 +3270,7 @@ $drawer-container-props: (
3460
3270
  'transition-mode': "unset",
3461
3271
  'transition-property': unset,
3462
3272
  'translate': "unset"
3463
- );
3464
-
3273
+ );
3465
3274
  $drawer-content-props: (
3466
3275
  'font-family': "unset",
3467
3276
  'font-size': "unset",
@@ -3479,8 +3288,7 @@ $drawer-content-props: (
3479
3288
  'transition-mode': "unset",
3480
3289
  'transition-property': unset,
3481
3290
  'translate': "unset"
3482
- );
3483
-
3291
+ );
3484
3292
  $drop-down-button-props: (
3485
3293
  'font-family': var(--retro-typography-button-font-family),
3486
3294
  'font-size': var(--retro-typography-button-font-size),
@@ -3509,8 +3317,7 @@ $drop-down-button-props: (
3509
3317
  'shadow': var(--retro-elevation-semilight),
3510
3318
  'transform': none,
3511
3319
  'width': auto
3512
- );
3513
-
3320
+ );
3514
3321
  $drop-zone-props: (
3515
3322
  'font-family': "unset",
3516
3323
  'font-size': "unset",
@@ -3528,8 +3335,7 @@ $drop-zone-props: (
3528
3335
  'transition-mode': "unset",
3529
3336
  'transition-property': unset,
3530
3337
  'translate': "unset"
3531
- );
3532
-
3338
+ );
3533
3339
  $dropdown-props: (
3534
3340
  'font-family': "unset",
3535
3341
  'font-size': "unset",
@@ -3547,8 +3353,7 @@ $dropdown-props: (
3547
3353
  'transition-mode': "unset",
3548
3354
  'transition-property': unset,
3549
3355
  'translate': "unset"
3550
- );
3551
-
3356
+ );
3552
3357
  $elevation-props: (
3553
3358
  'font-family': "unset",
3554
3359
  'font-size': "unset",
@@ -3566,8 +3371,7 @@ $elevation-props: (
3566
3371
  'transition-mode': "unset",
3567
3372
  'transition-property': unset,
3568
3373
  'translate': "unset"
3569
- );
3570
-
3374
+ );
3571
3375
  $emoji-props: (
3572
3376
  'font-family': "unset",
3573
3377
  'font-size': "unset",
@@ -3586,8 +3390,7 @@ $emoji-props: (
3586
3390
  'transition-property': unset,
3587
3391
  'translate': "unset",
3588
3392
  'background-color': unset
3589
- );
3590
-
3393
+ );
3591
3394
  $empty-state-props: (
3592
3395
  'font-family': "unset",
3593
3396
  'font-size': "unset",
@@ -3613,8 +3416,7 @@ $empty-state-props: (
3613
3416
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
3614
3417
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
3615
3418
  'header-font-weight': var(--retro-typography-body1-font-weight)
3616
- );
3617
-
3419
+ );
3618
3420
  $error-props: (
3619
3421
  'font-family': unset,
3620
3422
  'font-size': unset,
@@ -3639,8 +3441,7 @@ $error-props: (
3639
3441
  'border-width': unset,
3640
3442
  'foreground-color': unset,
3641
3443
  'shadow': unset
3642
- );
3643
-
3444
+ );
3644
3445
  $error-state-props: (
3645
3446
  'font-family': "unset",
3646
3447
  'font-size': "unset",
@@ -3666,8 +3467,7 @@ $error-state-props: (
3666
3467
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
3667
3468
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
3668
3469
  'header-font-weight': var(--retro-typography-body1-font-weight)
3669
- );
3670
-
3470
+ );
3671
3471
  $expandable-props: (
3672
3472
  'font-family': "unset",
3673
3473
  'font-size': "unset",
@@ -3685,8 +3485,7 @@ $expandable-props: (
3685
3485
  'transition-mode': "unset",
3686
3486
  'transition-property': unset,
3687
3487
  'translate': "unset"
3688
- );
3689
-
3488
+ );
3690
3489
  $expander-props: (
3691
3490
  'font-family': var(--retro-font-family),
3692
3491
  'font-size': var(--retro-typography-body1-font-size),
@@ -3716,8 +3515,7 @@ $expander-props: (
3716
3515
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3717
3516
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3718
3517
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3719
- );
3720
-
3518
+ );
3721
3519
  $expander-group-props: (
3722
3520
  'font-family': var(--retro-font-family),
3723
3521
  'font-size': var(--retro-typography-body1-font-size),
@@ -3742,8 +3540,7 @@ $expander-group-props: (
3742
3540
  'border-width': 0px,
3743
3541
  'foreground-color': var(--retro-scheme-foreground),
3744
3542
  'shadow': var(--retro-elevation-none)
3745
- );
3746
-
3543
+ );
3747
3544
  $expander-header-props: (
3748
3545
  'font-family': var(--retro-font-family),
3749
3546
  'font-size': var(--retro-typography-subtitle1-font-size),
@@ -3764,8 +3561,7 @@ $expander-header-props: (
3764
3561
  'background-color': var(--retro-scheme-transparent),
3765
3562
  'border-color': var(--retro-scheme-highlight),
3766
3563
  'foreground-color': var(--retro-scheme-foreground)
3767
- );
3768
-
3564
+ );
3769
3565
  $expander-sub-header-props: (
3770
3566
  'font-family': var(--retro-font-family),
3771
3567
  'font-size': var(--retro-typography-subtitle2-font-size),
@@ -3786,8 +3582,7 @@ $expander-sub-header-props: (
3786
3582
  'background-color': var(--retro-scheme-transparent),
3787
3583
  'border-color': var(--retro-scheme-highlight),
3788
3584
  'foreground-color': var(--retro-scheme-middlelight)
3789
- );
3790
-
3585
+ );
3791
3586
  $file-picker-props: (
3792
3587
  'font-family': "unset",
3793
3588
  'font-size': "unset",
@@ -3812,8 +3607,7 @@ $file-picker-props: (
3812
3607
  'border-width': unset,
3813
3608
  'foreground-color': unset,
3814
3609
  'shadow': unset
3815
- );
3816
-
3610
+ );
3817
3611
  $file-upload-props: (
3818
3612
  'font-family': "unset",
3819
3613
  'font-size': "unset",
@@ -3838,8 +3632,7 @@ $file-upload-props: (
3838
3632
  'border-width': unset,
3839
3633
  'foreground-color': unset,
3840
3634
  'shadow': unset
3841
- );
3842
-
3635
+ );
3843
3636
  $file-upload-item-props: (
3844
3637
  'font-family': "unset",
3845
3638
  'font-size': "unset",
@@ -3864,8 +3657,7 @@ $file-upload-item-props: (
3864
3657
  'border-width': unset,
3865
3658
  'foreground-color': unset,
3866
3659
  'shadow': unset
3867
- );
3868
-
3660
+ );
3869
3661
  $flip-props: (
3870
3662
  'font-family': "unset",
3871
3663
  'font-size': "unset",
@@ -3883,8 +3675,7 @@ $flip-props: (
3883
3675
  'transition-mode': "unset",
3884
3676
  'transition-property': unset,
3885
3677
  'translate': "unset"
3886
- );
3887
-
3678
+ );
3888
3679
  $floating-props: (
3889
3680
  'font-family': var(--retro-font-family),
3890
3681
  'font-size': var(--retro-typography-body1-font-size),
@@ -3912,8 +3703,7 @@ $floating-props: (
3912
3703
  'border-width': var(--retro-layout-thickness),
3913
3704
  'foreground-color': var(--retro-scheme-foreground),
3914
3705
  'shadow': var(--retro-elevation-light)
3915
- );
3916
-
3706
+ );
3917
3707
  $floating-action-button-props: (
3918
3708
  'font-family': var(--retro-typography-button-font-family),
3919
3709
  'font-size': var(--retro-typography-button-font-size),
@@ -3942,8 +3732,7 @@ $floating-action-button-props: (
3942
3732
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3943
3733
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3944
3734
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3945
- );
3946
-
3735
+ );
3947
3736
  $floating-action-button-group-props: (
3948
3737
  'font-family': unset,
3949
3738
  'font-size': unset,
@@ -3961,8 +3750,7 @@ $floating-action-button-group-props: (
3961
3750
  'transition-mode': unset,
3962
3751
  'transition-property': unset,
3963
3752
  'translate': "unset"
3964
- );
3965
-
3753
+ );
3966
3754
  $floating-trigger-props: (
3967
3755
  'font-family': "unset",
3968
3756
  'font-size': "unset",
@@ -3980,8 +3768,7 @@ $floating-trigger-props: (
3980
3768
  'transition-mode': "unset",
3981
3769
  'transition-property': unset,
3982
3770
  'translate': "unset"
3983
- );
3984
-
3771
+ );
3985
3772
  $focus-ring-props: (
3986
3773
  'font-family': "unset",
3987
3774
  'font-size': "unset",
@@ -4013,8 +3800,7 @@ $focus-ring-props: (
4013
3800
  'width': unset,
4014
3801
  'x': unset,
4015
3802
  'y': unset
4016
- );
4017
-
3803
+ );
4018
3804
  $footer-props: (
4019
3805
  'font-family': "unset",
4020
3806
  'font-size': "unset",
@@ -4039,8 +3825,7 @@ $footer-props: (
4039
3825
  'border-width': var(--retro-layout-thickness),
4040
3826
  'foreground-color': var(--retro-scheme-foreground),
4041
3827
  'inset': calc(var(--retro-layout-space) * 2)
4042
- );
4043
-
3828
+ );
4044
3829
  $footer-item-props: (
4045
3830
  'font-family': "unset",
4046
3831
  'font-size': "unset",
@@ -4058,8 +3843,7 @@ $footer-item-props: (
4058
3843
  'transition-mode': "unset",
4059
3844
  'transition-property': unset,
4060
3845
  'translate': "unset"
4061
- );
4062
-
3846
+ );
4063
3847
  $footer-item-group-props: (
4064
3848
  'font-family': "unset",
4065
3849
  'font-size': "unset",
@@ -4077,8 +3861,7 @@ $footer-item-group-props: (
4077
3861
  'transition-mode': "unset",
4078
3862
  'transition-property': unset,
4079
3863
  'translate': "unset"
4080
- );
4081
-
3864
+ );
4082
3865
  $form-props: (
4083
3866
  'font-family': unset,
4084
3867
  'font-size': unset,
@@ -4097,8 +3880,7 @@ $form-props: (
4097
3880
  'transition-property': unset,
4098
3881
  'translate': unset,
4099
3882
  'font-text-trans': unset
4100
- );
4101
-
3883
+ );
4102
3884
  $form-field-props: (
4103
3885
  'font-family': unset,
4104
3886
  'font-size': unset,
@@ -4116,8 +3898,7 @@ $form-field-props: (
4116
3898
  'transition-mode': unset,
4117
3899
  'transition-property': unset,
4118
3900
  'translate': unset
4119
- );
4120
-
3901
+ );
4121
3902
  $grid-props: (
4122
3903
  'font-family': "unset",
4123
3904
  'font-size': "unset",
@@ -4135,8 +3916,7 @@ $grid-props: (
4135
3916
  'transition-mode': "unset",
4136
3917
  'transition-property': unset,
4137
3918
  'translate': "unset"
4138
- );
4139
-
3919
+ );
4140
3920
  $grid-item-props: (
4141
3921
  'font-family': "unset",
4142
3922
  'font-size': "unset",
@@ -4154,8 +3934,7 @@ $grid-item-props: (
4154
3934
  'transition-mode': "unset",
4155
3935
  'transition-property': unset,
4156
3936
  'translate': "unset"
4157
- );
4158
-
3937
+ );
4159
3938
  $helmet-props: (
4160
3939
  'font-family': "unset",
4161
3940
  'font-size': "unset",
@@ -4173,8 +3952,7 @@ $helmet-props: (
4173
3952
  'transition-mode': "unset",
4174
3953
  'transition-property': unset,
4175
3954
  'translate': "unset"
4176
- );
4177
-
3955
+ );
4178
3956
  $hint-props: (
4179
3957
  'font-family': unset,
4180
3958
  'font-size': unset,
@@ -4199,8 +3977,7 @@ $hint-props: (
4199
3977
  'border-width': unset,
4200
3978
  'foreground-color': unset,
4201
3979
  'shadow': unset
4202
- );
4203
-
3980
+ );
4204
3981
  $icon-props: (
4205
3982
  'font-family': unset,
4206
3983
  'font-size': unset,
@@ -4226,8 +4003,7 @@ $icon-props: (
4226
4003
  'foreground-color': unset,
4227
4004
  'shadow': unset,
4228
4005
  'size': unset
4229
- );
4230
-
4006
+ );
4231
4007
  $image-props: (
4232
4008
  'font-family': unset,
4233
4009
  'font-size': unset,
@@ -4260,8 +4036,7 @@ $image-props: (
4260
4036
  'legend-font-text-transform': unset,
4261
4037
  'legend-font-weight': unset,
4262
4038
  'shadow': unset
4263
- );
4264
-
4039
+ );
4265
4040
  $ink-bar-props: (
4266
4041
  'font-family': "unset",
4267
4042
  'font-size': "unset",
@@ -4284,8 +4059,7 @@ $ink-bar-props: (
4284
4059
  'border-radius': calc(var(--ink-bar-thickness) / 2),
4285
4060
  'foreground-color': unset,
4286
4061
  'thickness': calc(var(--retro-layout-thickness) * 2)
4287
- );
4288
-
4062
+ );
4289
4063
  $jumbtron-props: (
4290
4064
  'font-family': unset,
4291
4065
  'font-size': unset,
@@ -4310,8 +4084,7 @@ $jumbtron-props: (
4310
4084
  'border-width': unset,
4311
4085
  'foreground-color': unset,
4312
4086
  'shadow': unset
4313
- );
4314
-
4087
+ );
4315
4088
  $jumbtron-header-props: (
4316
4089
  'font-family': unset,
4317
4090
  'font-size': unset,
@@ -4332,8 +4105,7 @@ $jumbtron-header-props: (
4332
4105
  'background-color': unset,
4333
4106
  'border-color': unset,
4334
4107
  'foreground-color': unset
4335
- );
4336
-
4108
+ );
4337
4109
  $jumbtron-sub-header-props: (
4338
4110
  'font-family': unset,
4339
4111
  'font-size': unset,
@@ -4354,8 +4126,7 @@ $jumbtron-sub-header-props: (
4354
4126
  'background-color': unset,
4355
4127
  'border-color': unset,
4356
4128
  'foreground-color': unset
4357
- );
4358
-
4129
+ );
4359
4130
  $kbd-props: (
4360
4131
  'font-family': unset,
4361
4132
  'font-size': unset,
@@ -4380,8 +4151,7 @@ $kbd-props: (
4380
4151
  'border-width': unset,
4381
4152
  'foreground-color': unset,
4382
4153
  'shadow': unset
4383
- );
4384
-
4154
+ );
4385
4155
  $kbd-shortcut-props: (
4386
4156
  'font-family': "unset",
4387
4157
  'font-size': "unset",
@@ -4399,8 +4169,7 @@ $kbd-shortcut-props: (
4399
4169
  'transition-mode': "unset",
4400
4170
  'transition-property': unset,
4401
4171
  'translate': "unset"
4402
- );
4403
-
4172
+ );
4404
4173
  $light-chain-props: (
4405
4174
  'font-family': "unset",
4406
4175
  'font-size': "unset",
@@ -4418,8 +4187,7 @@ $light-chain-props: (
4418
4187
  'transition-mode': "unset",
4419
4188
  'transition-property': unset,
4420
4189
  'translate': "unset"
4421
- );
4422
-
4190
+ );
4423
4191
  $list-props: (
4424
4192
  'font-family': unset,
4425
4193
  'font-size': unset,
@@ -4444,8 +4212,7 @@ $list-props: (
4444
4212
  'border-width': unset,
4445
4213
  'foreground-color': unset,
4446
4214
  'shadow': unset
4447
- );
4448
-
4215
+ );
4449
4216
  $list-item-props: (
4450
4217
  'font-family': unset,
4451
4218
  'font-size': unset,
@@ -4470,8 +4237,7 @@ $list-item-props: (
4470
4237
  'border-width': unset,
4471
4238
  'foreground-color': unset,
4472
4239
  'shadow': unset
4473
- );
4474
-
4240
+ );
4475
4241
  $list-item-group-props: (
4476
4242
  'font-family': unset,
4477
4243
  'font-size': unset,
@@ -4496,8 +4262,7 @@ $list-item-group-props: (
4496
4262
  'border-width': unset,
4497
4263
  'foreground-color': unset,
4498
4264
  'shadow': unset
4499
- );
4500
-
4265
+ );
4501
4266
  $marquee-props: (
4502
4267
  'font-family': "unset",
4503
4268
  'font-size': "unset",
@@ -4517,8 +4282,7 @@ $marquee-props: (
4517
4282
  'translate': "unset",
4518
4283
  'direction': unset,
4519
4284
  'speed': unset
4520
- );
4521
-
4285
+ );
4522
4286
  $masonry-props: (
4523
4287
  'font-family': "unset",
4524
4288
  'font-size': "unset",
@@ -4537,8 +4301,7 @@ $masonry-props: (
4537
4301
  'transition-property': unset,
4538
4302
  'translate': "unset",
4539
4303
  'columns': unset
4540
- );
4541
-
4304
+ );
4542
4305
  $menu-props: (
4543
4306
  'font-family': unset,
4544
4307
  'font-size': unset,
@@ -4563,8 +4326,7 @@ $menu-props: (
4563
4326
  'border-width': unset,
4564
4327
  'foreground-color': unset,
4565
4328
  'shadow': unset
4566
- );
4567
-
4329
+ );
4568
4330
  $menu-item-props: (
4569
4331
  'font-family': var(--retro-font-family),
4570
4332
  'font-size': var(--retro-typography-body1-font-size),
@@ -4588,9 +4350,12 @@ $menu-item-props: (
4588
4350
  'border-style': solid,
4589
4351
  'border-width': 0px,
4590
4352
  'foreground-color': var(--retro-scheme-foreground),
4591
- 'shadow': var(--retro-elevation-none)
4592
- );
4593
-
4353
+ 'shadow': var(--retro-elevation-none),
4354
+ 'height': 45px,
4355
+ 'indent-color': var(--retro-scheme-highlight),
4356
+ 'indent-size': var(--retro-layout-thickness),
4357
+ 'indent-offset': calc(var(--retro-layout-space) * 2)
4358
+ );
4594
4359
  $menu-item-group-props: (
4595
4360
  'font-family': unset,
4596
4361
  'font-size': unset,
@@ -4622,8 +4387,7 @@ $menu-item-group-props: (
4622
4387
  'header-font-text-transform': unset,
4623
4388
  'header-font-weight': unset,
4624
4389
  'shadow': unset
4625
- );
4626
-
4390
+ );
4627
4391
  $message-box-props: (
4628
4392
  'font-family': "unset",
4629
4393
  'font-size': "unset",
@@ -4641,8 +4405,7 @@ $message-box-props: (
4641
4405
  'transition-mode': "unset",
4642
4406
  'transition-property': unset,
4643
4407
  'translate': "unset"
4644
- );
4645
-
4408
+ );
4646
4409
  $meter-bar-props: (
4647
4410
  'font-family': "unset",
4648
4411
  'font-size': "unset",
@@ -4660,8 +4423,7 @@ $meter-bar-props: (
4660
4423
  'transition-mode': "unset",
4661
4424
  'transition-property': unset,
4662
4425
  'translate': "unset"
4663
- );
4664
-
4426
+ );
4665
4427
  $meter-ring-props: (
4666
4428
  'font-family': "unset",
4667
4429
  'font-size': "unset",
@@ -4679,8 +4441,7 @@ $meter-ring-props: (
4679
4441
  'transition-mode': "unset",
4680
4442
  'transition-property': unset,
4681
4443
  'translate': "unset"
4682
- );
4683
-
4444
+ );
4684
4445
  $number-props: (
4685
4446
  'font-family': unset,
4686
4447
  'font-size': unset,
@@ -4699,8 +4460,7 @@ $number-props: (
4699
4460
  'transition-property': unset,
4700
4461
  'translate': "unset",
4701
4462
  'alignment': unset
4702
- );
4703
-
4463
+ );
4704
4464
  $number-box-props: (
4705
4465
  'font-family': unset,
4706
4466
  'font-size': unset,
@@ -4727,8 +4487,7 @@ $number-box-props: (
4727
4487
  'foreground-color': unset,
4728
4488
  'height': unset,
4729
4489
  'shadow': unset
4730
- );
4731
-
4490
+ );
4732
4491
  $number-counter-props: (
4733
4492
  'font-family': unset,
4734
4493
  'font-size': unset,
@@ -4752,8 +4511,7 @@ $number-counter-props: (
4752
4511
  'n': unset,
4753
4512
  'timing': unset,
4754
4513
  'to': unset
4755
- );
4756
-
4514
+ );
4757
4515
  $page-props: (
4758
4516
  'font-family': "unset",
4759
4517
  'font-size': "unset",
@@ -4771,8 +4529,7 @@ $page-props: (
4771
4529
  'transition-mode': "unset",
4772
4530
  'transition-property': unset,
4773
4531
  'translate': "unset"
4774
- );
4775
-
4532
+ );
4776
4533
  $page-content-props: (
4777
4534
  'font-family': "unset",
4778
4535
  'font-size': "unset",
@@ -4794,8 +4551,7 @@ $page-content-props: (
4794
4551
  'left': unset,
4795
4552
  'max-width': unset,
4796
4553
  'width': unset
4797
- );
4798
-
4554
+ );
4799
4555
  $page-header-props: (
4800
4556
  'font-family': var(--retro-font-family),
4801
4557
  'font-size': var(--retro-typography-headline4-font-size),
@@ -4817,8 +4573,7 @@ $page-header-props: (
4817
4573
  'border-color': unset,
4818
4574
  'foreground-color': var(--retro-scheme-foreground),
4819
4575
  'inset': calc(var(--retro-layout-space) * 2)
4820
- );
4821
-
4576
+ );
4822
4577
  $page-menu-props: (
4823
4578
  'font-family': var(--retro-font-family),
4824
4579
  'font-size': 24px,
@@ -4845,8 +4600,7 @@ $page-menu-props: (
4845
4600
  'height': 64px,
4846
4601
  'line-height': 28px,
4847
4602
  'shadow': var(--retro-elevation-none)
4848
- );
4849
-
4603
+ );
4850
4604
  $page-pre-content-props: (
4851
4605
  'font-family': "unset",
4852
4606
  'font-size': "unset",
@@ -4865,8 +4619,7 @@ $page-pre-content-props: (
4865
4619
  'transition-property': unset,
4866
4620
  'translate': "unset",
4867
4621
  'inset': calc(var(--retro-layout-space) * 2)
4868
- );
4869
-
4622
+ );
4870
4623
  $page-pre-header-props: (
4871
4624
  'font-family': "unset",
4872
4625
  'font-size': "unset",
@@ -4885,8 +4638,7 @@ $page-pre-header-props: (
4885
4638
  'transition-property': unset,
4886
4639
  'translate': "unset",
4887
4640
  'inset': calc(var(--retro-layout-space) * 2)
4888
- );
4889
-
4641
+ );
4890
4642
  $paginator-props: (
4891
4643
  'font-family': "unset",
4892
4644
  'font-size': "unset",
@@ -4905,8 +4657,7 @@ $paginator-props: (
4905
4657
  'transition-property': unset,
4906
4658
  'translate': "unset",
4907
4659
  'background-color': unset
4908
- );
4909
-
4660
+ );
4910
4661
  $password-box-props: (
4911
4662
  'font-family': var(--retro-font-family),
4912
4663
  'font-size': var(--retro-typography-body1-font-size),
@@ -4937,8 +4688,7 @@ $password-box-props: (
4937
4688
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
4938
4689
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
4939
4690
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
4940
- );
4941
-
4691
+ );
4942
4692
  $pattern-props: (
4943
4693
  'font-family': "unset",
4944
4694
  'font-size': "unset",
@@ -4957,8 +4707,7 @@ $pattern-props: (
4957
4707
  'transition-property': unset,
4958
4708
  'translate': "unset",
4959
4709
  'background-color': var(--retro-color-neutral-400)
4960
- );
4961
-
4710
+ );
4962
4711
  $persona-props: (
4963
4712
  'font-family': unset,
4964
4713
  'font-size': unset,
@@ -4983,8 +4732,7 @@ $persona-props: (
4983
4732
  'border-width': unset,
4984
4733
  'foreground-color': unset,
4985
4734
  'shadow': unset
4986
- );
4987
-
4735
+ );
4988
4736
  $perspective-props: (
4989
4737
  'font-family': unset,
4990
4738
  'font-size': unset,
@@ -5002,8 +4750,7 @@ $perspective-props: (
5002
4750
  'transition-mode': unset,
5003
4751
  'transition-property': unset,
5004
4752
  'translate': unset
5005
- );
5006
-
4753
+ );
5007
4754
  $pin-box-props: (
5008
4755
  'font-family': var(--retro-font-family),
5009
4756
  'font-size': 16px,
@@ -5033,8 +4780,7 @@ $pin-box-props: (
5033
4780
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5034
4781
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5035
4782
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5036
- );
5037
-
4783
+ );
5038
4784
  $popup-props: (
5039
4785
  'font-family': unset,
5040
4786
  'font-size': unset,
@@ -5063,8 +4809,7 @@ $popup-props: (
5063
4809
  'shadow-offset-x': unset,
5064
4810
  'shadow-offset-y': unset,
5065
4811
  'shadow-spread': unset
5066
- );
5067
-
4812
+ );
5068
4813
  $portal-props: (
5069
4814
  'font-family': "unset",
5070
4815
  'font-size': "unset",
@@ -5082,8 +4827,7 @@ $portal-props: (
5082
4827
  'transition-mode': "unset",
5083
4828
  'transition-property': unset,
5084
4829
  'translate': "unset"
5085
- );
5086
-
4830
+ );
5087
4831
  $portal-projection-props: (
5088
4832
  'font-family': "unset",
5089
4833
  'font-size': "unset",
@@ -5101,8 +4845,7 @@ $portal-projection-props: (
5101
4845
  'transition-mode': "unset",
5102
4846
  'transition-property': unset,
5103
4847
  'translate': "unset"
5104
- );
5105
-
4848
+ );
5106
4849
  $progress-bar-props: (
5107
4850
  'font-family': "unset",
5108
4851
  'font-size': "unset",
@@ -5127,8 +4870,7 @@ $progress-bar-props: (
5127
4870
  'right-circle': unset,
5128
4871
  'segment-width': unset,
5129
4872
  'segment-gap': unset
5130
- );
5131
-
4873
+ );
5132
4874
  $progress-ring-props: (
5133
4875
  'font-family': unset,
5134
4876
  'font-size': unset,
@@ -5154,8 +4896,7 @@ $progress-ring-props: (
5154
4896
  'fill-color': unset,
5155
4897
  'foreground-color': unset,
5156
4898
  'shadow': unset
5157
- );
5158
-
4899
+ );
5159
4900
  $qr-code-props: (
5160
4901
  'font-family': "unset",
5161
4902
  'font-size': "unset",
@@ -5175,8 +4916,7 @@ $qr-code-props: (
5175
4916
  'translate': "unset",
5176
4917
  'background-color': unset,
5177
4918
  'foreground-color': unset
5178
- );
5179
-
4919
+ );
5180
4920
  $radio-props: (
5181
4921
  'font-family': unset,
5182
4922
  'font-size': unset,
@@ -5206,8 +4946,7 @@ $radio-props: (
5206
4946
  'focus-ring-outward-offset': unset,
5207
4947
  'foreground-color': unset,
5208
4948
  'shadow': unset
5209
- );
5210
-
4949
+ );
5211
4950
  $radio-group-props: (
5212
4951
  'font-family': "unset",
5213
4952
  'font-size': "unset",
@@ -5232,8 +4971,7 @@ $radio-group-props: (
5232
4971
  'border-width': unset,
5233
4972
  'foreground-color': unset,
5234
4973
  'shadow': unset
5235
- );
5236
-
4974
+ );
5237
4975
  $rating-props: (
5238
4976
  'font-family': "unset",
5239
4977
  'font-size': "unset",
@@ -5258,8 +4996,7 @@ $rating-props: (
5258
4996
  'border-width': unset,
5259
4997
  'foreground-color': unset,
5260
4998
  'shadow': unset
5261
- );
5262
-
4999
+ );
5263
5000
  $repeat-button-props: (
5264
5001
  'font-family': var(--retro-typography-button-font-family),
5265
5002
  'font-size': var(--retro-typography-button-font-size),
@@ -5288,8 +5025,7 @@ $repeat-button-props: (
5288
5025
  'progress-thickness': var(--retro-layout-thickness),
5289
5026
  'shadow': var(--retro-elevation-none),
5290
5027
  'width': auto
5291
- );
5292
-
5028
+ );
5293
5029
  $resize-adorner-props: (
5294
5030
  'font-family': "unset",
5295
5031
  'font-size': "unset",
@@ -5313,8 +5049,7 @@ $resize-adorner-props: (
5313
5049
  'border-width': unset,
5314
5050
  'thumb-background-color': unset,
5315
5051
  'thumb-border-radius': unset
5316
- );
5317
-
5052
+ );
5318
5053
  $ribbon-props: (
5319
5054
  'font-family': unset,
5320
5055
  'font-size': unset,
@@ -5340,8 +5075,7 @@ $ribbon-props: (
5340
5075
  'font': unset,
5341
5076
  'foreground-color': unset,
5342
5077
  'shadow': unset
5343
- );
5344
-
5078
+ );
5345
5079
  $rich-text-box-props: (
5346
5080
  'font-family': unset,
5347
5081
  'font-size': unset,
@@ -5369,8 +5103,7 @@ $rich-text-box-props: (
5369
5103
  'height': unset,
5370
5104
  'shadow': unset,
5371
5105
  'toolbox-border-color': unset
5372
- );
5373
-
5106
+ );
5374
5107
  $rich-text-box-toolbox-props: (
5375
5108
  'font-family': "unset",
5376
5109
  'font-size': "unset",
@@ -5396,8 +5129,7 @@ $rich-text-box-toolbox-props: (
5396
5129
  'foreground-color': unset,
5397
5130
  'orientation': unset,
5398
5131
  'shadow': unset
5399
- );
5400
-
5132
+ );
5401
5133
  $ripple-props: (
5402
5134
  'font-family': "unset",
5403
5135
  'font-size': "unset",
@@ -5416,8 +5148,7 @@ $ripple-props: (
5416
5148
  'transition-property': unset,
5417
5149
  'translate': "unset",
5418
5150
  'background-color': unset
5419
- );
5420
-
5151
+ );
5421
5152
  $router-props: (
5422
5153
  'font-family': "unset",
5423
5154
  'font-size': "unset",
@@ -5435,8 +5166,7 @@ $router-props: (
5435
5166
  'transition-mode': "unset",
5436
5167
  'transition-property': unset,
5437
5168
  'translate': "unset"
5438
- );
5439
-
5169
+ );
5440
5170
  $router-anchor-props: (
5441
5171
  'font-family': "unset",
5442
5172
  'font-size': "unset",
@@ -5457,8 +5187,7 @@ $router-anchor-props: (
5457
5187
  'background-color': var(--retro-scheme-transparent),
5458
5188
  'border-color': var(--retro-scheme-contrast),
5459
5189
  'foreground-color': var(--retro-scheme-foreground)
5460
- );
5461
-
5190
+ );
5462
5191
  $router-link-props: (
5463
5192
  'font-family': "unset",
5464
5193
  'font-size': "unset",
@@ -5476,8 +5205,7 @@ $router-link-props: (
5476
5205
  'transition-mode': "unset",
5477
5206
  'transition-property': unset,
5478
5207
  'translate': "unset"
5479
- );
5480
-
5208
+ );
5481
5209
  $router-outlet-props: (
5482
5210
  'font-family': "unset",
5483
5211
  'font-size': "unset",
@@ -5495,8 +5223,7 @@ $router-outlet-props: (
5495
5223
  'transition-mode': "unset",
5496
5224
  'transition-property': unset,
5497
5225
  'translate': "unset"
5498
- );
5499
-
5226
+ );
5500
5227
  $scale-props: (
5501
5228
  'font-family': unset,
5502
5229
  'font-size': unset,
@@ -5514,8 +5241,7 @@ $scale-props: (
5514
5241
  'transition-mode': unset,
5515
5242
  'transition-property': unset,
5516
5243
  'translate': unset
5517
- );
5518
-
5244
+ );
5519
5245
  $scroll-props: (
5520
5246
  'font-family': "unset",
5521
5247
  'font-size': "unset",
@@ -5533,8 +5259,7 @@ $scroll-props: (
5533
5259
  'transition-mode': "unset",
5534
5260
  'transition-property': unset,
5535
5261
  'translate': "unset"
5536
- );
5537
-
5262
+ );
5538
5263
  $search-box-props: (
5539
5264
  'font-family': var(--retro-font-family),
5540
5265
  'font-size': var(--retro-typography-body1-font-size),
@@ -5565,8 +5290,7 @@ $search-box-props: (
5565
5290
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5566
5291
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5567
5292
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5568
- );
5569
-
5293
+ );
5570
5294
  $segment-props: (
5571
5295
  'font-family': "unset",
5572
5296
  'font-size': "unset",
@@ -5596,8 +5320,7 @@ $segment-props: (
5596
5320
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5597
5321
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5598
5322
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5599
- );
5600
-
5323
+ );
5601
5324
  $segment-item-props: (
5602
5325
  'font-family': unset,
5603
5326
  'font-size': unset,
@@ -5632,8 +5355,7 @@ $segment-item-props: (
5632
5355
  'color-hover': unset,
5633
5356
  'padding-end': unset,
5634
5357
  'padding-start': unset
5635
- );
5636
-
5358
+ );
5637
5359
  $select-props: (
5638
5360
  'font-family': unset,
5639
5361
  'font-size': unset,
@@ -5658,8 +5380,7 @@ $select-props: (
5658
5380
  'border-width': unset,
5659
5381
  'foreground-color': unset,
5660
5382
  'shadow': unset
5661
- );
5662
-
5383
+ );
5663
5384
  $select-item-props: (
5664
5385
  'font-family': unset,
5665
5386
  'font-size': unset,
@@ -5684,8 +5405,7 @@ $select-item-props: (
5684
5405
  'border-width': unset,
5685
5406
  'foreground-color': unset,
5686
5407
  'shadow': unset
5687
- );
5688
-
5408
+ );
5689
5409
  $select-item-group-props: (
5690
5410
  'font-family': unset,
5691
5411
  'font-size': unset,
@@ -5710,8 +5430,7 @@ $select-item-group-props: (
5710
5430
  'border-width': unset,
5711
5431
  'foreground-color': unset,
5712
5432
  'shadow': unset
5713
- );
5714
-
5433
+ );
5715
5434
  $signature-pad-props: (
5716
5435
  'font-family': unset,
5717
5436
  'font-size': unset,
@@ -5736,8 +5455,7 @@ $signature-pad-props: (
5736
5455
  'border-width': unset,
5737
5456
  'foreground-color': unset,
5738
5457
  'shadow': unset
5739
- );
5740
-
5458
+ );
5741
5459
  $skeleton-props: (
5742
5460
  'font-family': "unset",
5743
5461
  'font-size': "unset",
@@ -5761,8 +5479,7 @@ $skeleton-props: (
5761
5479
  'border-style': unset,
5762
5480
  'border-width': unset,
5763
5481
  'foreground-color': unset
5764
- );
5765
-
5482
+ );
5766
5483
  $slider-props: (
5767
5484
  'font-family': unset,
5768
5485
  'font-size': unset,
@@ -5823,8 +5540,7 @@ $slider-props: (
5823
5540
  'tooltip-transition-mode': unset,
5824
5541
  'tooltip-transition-property': unset,
5825
5542
  'track-size': unset
5826
- );
5827
-
5543
+ );
5828
5544
  $slider2-props: (
5829
5545
  'font-family': "unset",
5830
5546
  'font-size': "unset",
@@ -5842,8 +5558,7 @@ $slider2-props: (
5842
5558
  'transition-mode': "unset",
5843
5559
  'transition-property': unset,
5844
5560
  'translate': "unset"
5845
- );
5846
-
5561
+ );
5847
5562
  $slider2thumb-props: (
5848
5563
  'font-family': "unset",
5849
5564
  'font-size': "unset",
@@ -5862,8 +5577,7 @@ $slider2thumb-props: (
5862
5577
  'transition-property': unset,
5863
5578
  'translate': "unset",
5864
5579
  'size': unset
5865
- );
5866
-
5580
+ );
5867
5581
  $spacer-props: (
5868
5582
  'font-family': "unset",
5869
5583
  'font-size': "unset",
@@ -5881,8 +5595,7 @@ $spacer-props: (
5881
5595
  'transition-mode': "unset",
5882
5596
  'transition-property': unset,
5883
5597
  'translate': "unset"
5884
- );
5885
-
5598
+ );
5886
5599
  $split-props: (
5887
5600
  'font-family': "unset",
5888
5601
  'font-size': "unset",
@@ -5910,8 +5623,7 @@ $split-props: (
5910
5623
  'thumb-border-color': var(--retro-scheme-highlight),
5911
5624
  'thumb-border-radius': var(--retro-layout-radius),
5912
5625
  'thumb-foreground-color': var(--retro-scheme-foreground)
5913
- );
5914
-
5626
+ );
5915
5627
  $split-button-props: (
5916
5628
  'font-family': var(--retro-typography-button-font-family),
5917
5629
  'font-size': var(--retro-typography-button-font-size),
@@ -5940,8 +5652,7 @@ $split-button-props: (
5940
5652
  'progress-thickness': var(--retro-layout-thickness),
5941
5653
  'shadow': var(--retro-elevation-none),
5942
5654
  'width': auto
5943
- );
5944
-
5655
+ );
5945
5656
  $stack-props: (
5946
5657
  'font-family': "unset",
5947
5658
  'font-size': "unset",
@@ -5959,8 +5670,7 @@ $stack-props: (
5959
5670
  'transition-mode': "unset",
5960
5671
  'transition-property': unset,
5961
5672
  'translate': "unset"
5962
- );
5963
-
5673
+ );
5964
5674
  $sticky-props: (
5965
5675
  'font-family': "unset",
5966
5676
  'font-size': "unset",
@@ -5980,8 +5690,7 @@ $sticky-props: (
5980
5690
  'translate': "unset",
5981
5691
  'left': unset,
5982
5692
  'top': unset
5983
- );
5984
-
5693
+ );
5985
5694
  $success-state-props: (
5986
5695
  'font-family': "unset",
5987
5696
  'font-size': "unset",
@@ -6007,8 +5716,7 @@ $success-state-props: (
6007
5716
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
6008
5717
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
6009
5718
  'header-font-weight': var(--retro-typography-body1-font-weight)
6010
- );
6011
-
5719
+ );
6012
5720
  $summary-props: (
6013
5721
  'font-family': "unset",
6014
5722
  'font-size': "unset",
@@ -6026,8 +5734,7 @@ $summary-props: (
6026
5734
  'transition-mode': "unset",
6027
5735
  'transition-property': unset,
6028
5736
  'translate': "unset"
6029
- );
6030
-
5737
+ );
6031
5738
  $swipe-props: (
6032
5739
  'font-family': "unset",
6033
5740
  'font-size': "unset",
@@ -6045,8 +5752,7 @@ $swipe-props: (
6045
5752
  'transition-mode': "unset",
6046
5753
  'transition-property': unset,
6047
5754
  'translate': "unset"
6048
- );
6049
-
5755
+ );
6050
5756
  $tab-props: (
6051
5757
  'font-family': var(--retro-font-family),
6052
5758
  'font-size': var(--retro-typography-body1-font-size),
@@ -6083,8 +5789,7 @@ $tab-props: (
6083
5789
  'strip-padding-left': 0,
6084
5790
  'strip-padding-right': 0,
6085
5791
  'strip-padding-top': 0
6086
- );
6087
-
5792
+ );
6088
5793
  $tab-item-props: (
6089
5794
  'font-family': "unset",
6090
5795
  'font-size': "unset",
@@ -6105,8 +5810,7 @@ $tab-item-props: (
6105
5810
  'border-radius': var(--retro-layout-radius),
6106
5811
  'border-style': solid,
6107
5812
  'border-width': var(--retro-layout-space)
6108
- );
6109
-
5813
+ );
6110
5814
  $tab-panel-props: (
6111
5815
  'font-family': "unset",
6112
5816
  'font-size': "unset",
@@ -6125,8 +5829,7 @@ $tab-panel-props: (
6125
5829
  'transition-property': unset,
6126
5830
  'translate': "unset",
6127
5831
  'background-color': var(--retro-scheme-background)
6128
- );
6129
-
5832
+ );
6130
5833
  $tab-strip-props: (
6131
5834
  'font-family': var(--retro-font-family),
6132
5835
  'font-size': var(--retro-typography-button-font-size),
@@ -6150,8 +5853,7 @@ $tab-strip-props: (
6150
5853
  'border-style': solid,
6151
5854
  'border-width': 0,
6152
5855
  'foreground-color': unset
6153
- );
6154
-
5856
+ );
6155
5857
  $tab-strip-item-props: (
6156
5858
  'font-family': var(--retro-font-family),
6157
5859
  'font-size': var(--retro-typography-button-font-size),
@@ -6178,8 +5880,7 @@ $tab-strip-item-props: (
6178
5880
  'shadow': var(--retro-elevation-none),
6179
5881
  'size': 56px,
6180
5882
  'thickness': 4px
6181
- );
6182
-
5883
+ );
6183
5884
  $table-props: (
6184
5885
  'font-family': var(--retro-font-family),
6185
5886
  'font-size': var(--retro-typography-body1-font-size),
@@ -6204,8 +5905,7 @@ $table-props: (
6204
5905
  'border-width': var(--retro-layout-thickness),
6205
5906
  'foreground-color': var(--retro-scheme-foreground),
6206
5907
  'shadow': var(--retro-elevation-bold)
6207
- );
6208
-
5908
+ );
6209
5909
  $table-body-props: (
6210
5910
  'font-family': var(--retro-font-family),
6211
5911
  'font-size': var(--retro-typography-body1-font-size),
@@ -6230,8 +5930,7 @@ $table-body-props: (
6230
5930
  'border-width': 0px,
6231
5931
  'foreground-color': var(--retro-scheme-foreground),
6232
5932
  'shadow': var(--retro-elevation-none)
6233
- );
6234
-
5933
+ );
6235
5934
  $table-cell-props: (
6236
5935
  'font-family': var(--retro-font-family),
6237
5936
  'font-size': var(--retro-typography-body1-font-size),
@@ -6255,8 +5954,7 @@ $table-cell-props: (
6255
5954
  'border-width': 0px,
6256
5955
  'foreground-color': var(--retro-color-neutral-50),
6257
5956
  'shadow': var(--retro-elevation-none)
6258
- );
6259
-
5957
+ );
6260
5958
  $table-footer-props: (
6261
5959
  'font-family': var(--retro-font-family),
6262
5960
  'font-size': var(--retro-typography-body2-font-size),
@@ -6281,8 +5979,7 @@ $table-footer-props: (
6281
5979
  'border-width': 0px,
6282
5980
  'foreground-color': var(--retro-scheme-foreground),
6283
5981
  'shadow': var(--retro-elevation-none)
6284
- );
6285
-
5982
+ );
6286
5983
  $table-header-props: (
6287
5984
  'font-family': var(--retro-font-family),
6288
5985
  'font-size': var(--retro-typography-body2-font-size),
@@ -6307,8 +6004,7 @@ $table-header-props: (
6307
6004
  'border-width': 0px,
6308
6005
  'foreground-color': var(--retro-scheme-foreground),
6309
6006
  'shadow': var(--retro-elevation-none)
6310
- );
6311
-
6007
+ );
6312
6008
  $table-row-props: (
6313
6009
  'font-family': var(--retro-font-family),
6314
6010
  'font-size': var(--retro-typography-body1-font-size),
@@ -6333,8 +6029,7 @@ $table-row-props: (
6333
6029
  'border-width': 0px,
6334
6030
  'foreground-color': var(--retro-color-neutral-50),
6335
6031
  'shadow': var(--retro-elevation-none)
6336
- );
6337
-
6032
+ );
6338
6033
  $text-props: (
6339
6034
  'font-family': var(--retro-font-family),
6340
6035
  'font-size': var(--retro-typography-body1-font-size),
@@ -6361,8 +6056,7 @@ $text-props: (
6361
6056
  'font-transform': var(--retro-typography-body1-text-transform),
6362
6057
  'foreground-color': var(--retro-scheme-foreground),
6363
6058
  'shadow': var(--retro-elevation-none)
6364
- );
6365
-
6059
+ );
6366
6060
  $text-box-props: (
6367
6061
  'font-family': var(--retro-font-family),
6368
6062
  'font-size': var(--retro-typography-body1-font-size),
@@ -6393,8 +6087,7 @@ $text-box-props: (
6393
6087
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
6394
6088
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
6395
6089
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
6396
- );
6397
-
6090
+ );
6398
6091
  $text-format-props: (
6399
6092
  'font-family': "unset",
6400
6093
  'font-size': "unset",
@@ -6412,8 +6105,7 @@ $text-format-props: (
6412
6105
  'transition-mode': "unset",
6413
6106
  'transition-property': unset,
6414
6107
  'translate': "unset"
6415
- );
6416
-
6108
+ );
6417
6109
  $tick-bar-props: (
6418
6110
  'font-family': unset,
6419
6111
  'font-size': unset,
@@ -6442,8 +6134,7 @@ $tick-bar-props: (
6442
6134
  'tick-size': unset,
6443
6135
  'tick-text-gap': unset,
6444
6136
  'tick-width': unset
6445
- );
6446
-
6137
+ );
6447
6138
  $tile-list-props: (
6448
6139
  'font-family': "unset",
6449
6140
  'font-size': "unset",
@@ -6462,8 +6153,7 @@ $tile-list-props: (
6462
6153
  'transition-property': unset,
6463
6154
  'translate': "unset",
6464
6155
  'gutter-size': unset
6465
- );
6466
-
6156
+ );
6467
6157
  $tile-list-item-props: (
6468
6158
  'font-family': "unset",
6469
6159
  'font-size': "unset",
@@ -6488,8 +6178,7 @@ $tile-list-item-props: (
6488
6178
  'dragover-border-color': unset,
6489
6179
  'header-bg-color': unset,
6490
6180
  'header-padding': unset
6491
- );
6492
-
6181
+ );
6493
6182
  $time-box-props: (
6494
6183
  'font-family': unset,
6495
6184
  'font-size': unset,
@@ -6517,8 +6206,7 @@ $time-box-props: (
6517
6206
  'height': unset,
6518
6207
  'menu-item-border-radius': unset,
6519
6208
  'shadow': unset
6520
- );
6521
-
6209
+ );
6522
6210
  $title-bar-props: (
6523
6211
  'font-family': var(--retro-font-family),
6524
6212
  'font-size': var(--retro-typography-headline4-font-size),
@@ -6536,8 +6224,7 @@ $title-bar-props: (
6536
6224
  'transition-mode': unset,
6537
6225
  'transition-property': unset,
6538
6226
  'translate': unset
6539
- );
6540
-
6227
+ );
6541
6228
  $title-layout-props: (
6542
6229
  'font-family': "unset",
6543
6230
  'font-size': "unset",
@@ -6556,8 +6243,7 @@ $title-layout-props: (
6556
6243
  'transition-property': unset,
6557
6244
  'translate': "unset",
6558
6245
  'background-color': unset
6559
- );
6560
-
6246
+ );
6561
6247
  $toast-props: (
6562
6248
  'font-family': unset,
6563
6249
  'font-size': unset,
@@ -6584,8 +6270,7 @@ $toast-props: (
6584
6270
  'foreground-color': unset,
6585
6271
  'progress-ring-fill-color': unset,
6586
6272
  'shadow': unset
6587
- );
6588
-
6273
+ );
6589
6274
  $toggle-button-props: (
6590
6275
  'font-family': var(--retro-font-family),
6591
6276
  'font-size': var(--retro-typography-button-font-size),
@@ -6613,8 +6298,7 @@ $toggle-button-props: (
6613
6298
  'line-height': calc(var(--toggle-button-font-line-height) - 4px),
6614
6299
  'shadow': var(--retro-elevation-semilight),
6615
6300
  'width': auto
6616
- );
6617
-
6301
+ );
6618
6302
  $toggle-switch-props: (
6619
6303
  'font-family': unset,
6620
6304
  'font-size': unset,
@@ -6637,8 +6321,7 @@ $toggle-switch-props: (
6637
6321
  'border-style': solid,
6638
6322
  'border-width': var(--retro-layout-thickness),
6639
6323
  'shadow': var(--elevation-light-semilight)
6640
- );
6641
-
6324
+ );
6642
6325
  $toggletip-props: (
6643
6326
  'font-family': "unset",
6644
6327
  'font-size': "unset",
@@ -6657,8 +6340,7 @@ $toggletip-props: (
6657
6340
  'transition-property': unset,
6658
6341
  'translate': "unset",
6659
6342
  'background-color': unset
6660
- );
6661
-
6343
+ );
6662
6344
  $toolbar-props: (
6663
6345
  'font-family': var(--retro-font-family),
6664
6346
  'font-size': 24px,
@@ -6689,8 +6371,7 @@ $toolbar-props: (
6689
6371
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
6690
6372
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
6691
6373
  'shadow-spread': var(--retro-elevation-bold-spread-0)
6692
- );
6693
-
6374
+ );
6694
6375
  $tooltip-props: (
6695
6376
  'font-family': unset,
6696
6377
  'font-size': unset,
@@ -6716,8 +6397,7 @@ $tooltip-props: (
6716
6397
  'foreground-color': unset,
6717
6398
  'max-width': unset,
6718
6399
  'shadow': unset
6719
- );
6720
-
6400
+ );
6721
6401
  $tree-props: (
6722
6402
  'font-family': unset,
6723
6403
  'font-size': unset,
@@ -6735,8 +6415,7 @@ $tree-props: (
6735
6415
  'transition-mode': "unset",
6736
6416
  'transition-property': unset,
6737
6417
  'translate': "unset"
6738
- );
6739
-
6418
+ );
6740
6419
  $tree-item-props: (
6741
6420
  'font-family': unset,
6742
6421
  'font-size': unset,
@@ -6760,9 +6439,11 @@ $tree-item-props: (
6760
6439
  'border-style': unset,
6761
6440
  'border-width': unset,
6762
6441
  'foreground-color': unset,
6763
- 'shadow': unset
6764
- );
6765
-
6442
+ 'shadow': unset,
6443
+ 'indent-color': var(--retro-scheme-highlight),
6444
+ 'indent-size': var(--retro-layout-thickness),
6445
+ 'indent-offset': calc(var(--retro-layout-space) * 2)
6446
+ );
6766
6447
  $up-down-spinner-props: (
6767
6448
  'font-family': "unset",
6768
6449
  'font-size': "unset",
@@ -6780,8 +6461,7 @@ $up-down-spinner-props: (
6780
6461
  'transition-mode': "unset",
6781
6462
  'transition-property': unset,
6782
6463
  'translate': "unset"
6783
- );
6784
-
6464
+ );
6785
6465
  $video-props: (
6786
6466
  'font-family': unset,
6787
6467
  'font-size': unset,
@@ -6814,8 +6494,7 @@ $video-props: (
6814
6494
  'legend-font-text-transform': unset,
6815
6495
  'legend-font-weight': unset,
6816
6496
  'shadow': unset
6817
- );
6818
-
6497
+ );
6819
6498
  $virtualize-props: (
6820
6499
  'font-family': "unset",
6821
6500
  'font-size': "unset",
@@ -6833,8 +6512,7 @@ $virtualize-props: (
6833
6512
  'transition-mode': "unset",
6834
6513
  'transition-property': unset,
6835
6514
  'translate': "unset"
6836
- );
6837
-
6515
+ );
6838
6516
  $wizard-props: (
6839
6517
  'font-family': "unset",
6840
6518
  'font-size': "unset",
@@ -6853,8 +6531,7 @@ $wizard-props: (
6853
6531
  'transition-property': unset,
6854
6532
  'translate': "unset",
6855
6533
  'border-color': unset
6856
- );
6857
-
6534
+ );
6858
6535
  $wizard-step-props: (
6859
6536
  'font-family': "unset",
6860
6537
  'font-size': "unset",
@@ -6872,8 +6549,7 @@ $wizard-step-props: (
6872
6549
  'transition-mode': "unset",
6873
6550
  'transition-property': unset,
6874
6551
  'translate': "unset"
6875
- );
6876
-
6552
+ );
6877
6553
  $wrap-props: (
6878
6554
  'font-family': "unset",
6879
6555
  'font-size': "unset",