@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.
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",
@@ -1765,9 +1647,10 @@ $box-props: (
1765
1647
  'border-radius': 0,
1766
1648
  'border-style': solid,
1767
1649
  'border-width': 0,
1768
- 'foreground-color': unset
1769
- );
1770
-
1650
+ 'foreground-color': unset,
1651
+ 'height': auto,
1652
+ 'width': auto
1653
+ );
1771
1654
  $breadcrumb-props: (
1772
1655
  'font-family': unset,
1773
1656
  'font-size': unset,
@@ -1785,8 +1668,7 @@ $breadcrumb-props: (
1785
1668
  'transition-mode': unset,
1786
1669
  'transition-property': unset,
1787
1670
  'translate': unset
1788
- );
1789
-
1671
+ );
1790
1672
  $breadcrumb-item-props: (
1791
1673
  'font-family': unset,
1792
1674
  'font-size': unset,
@@ -1804,8 +1686,7 @@ $breadcrumb-item-props: (
1804
1686
  'transition-mode': unset,
1805
1687
  'transition-property': unset,
1806
1688
  'translate': unset
1807
- );
1808
-
1689
+ );
1809
1690
  $button-props: (
1810
1691
  'font-family': var(--retro-typography-button-font-family),
1811
1692
  'font-size': var(--retro-typography-button-font-size),
@@ -1828,6 +1709,7 @@ $button-props: (
1828
1709
  'border-radius': var(--retro-layout-radius),
1829
1710
  'border-style': solid,
1830
1711
  'border-width': var(--retro-layout-thickness),
1712
+ 'focus-ring-color': var(--retro-scheme-highlight),
1831
1713
  'foreground-color': var(--retro-scheme-foreground),
1832
1714
  'height': calc(calc(var(--retro-layout-space) * 5) - calc(var(--retro-layout-space) / 2)),
1833
1715
  'progress-thickness': var(--retro-layout-thickness),
@@ -1837,8 +1719,7 @@ $button-props: (
1837
1719
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
1838
1720
  'shadow-spread': var(--retro-elevation-semilight-spread-0),
1839
1721
  'width': auto
1840
- );
1841
-
1722
+ );
1842
1723
  $button-group-props: (
1843
1724
  'font-family': var(--retro-font-family),
1844
1725
  'font-size': var(--retro-typography-button-font-size),
@@ -1867,8 +1748,7 @@ $button-group-props: (
1867
1748
  'shadow-offset-x': unset,
1868
1749
  'shadow-offset-y': unset,
1869
1750
  'shadow-spread': unset
1870
- );
1871
-
1751
+ );
1872
1752
  $calendar-props: (
1873
1753
  'font-family': var(--retro-font-family),
1874
1754
  'font-size': var(--retro-typography-body1-font-size),
@@ -1898,8 +1778,7 @@ $calendar-props: (
1898
1778
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
1899
1779
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
1900
1780
  'shadow-spread': var(--retro-elevation-light-spread-0)
1901
- );
1902
-
1781
+ );
1903
1782
  $calendar-days-view-props: (
1904
1783
  'font-family': "unset",
1905
1784
  'font-size': "unset",
@@ -1917,8 +1796,7 @@ $calendar-days-view-props: (
1917
1796
  'transition-mode': "unset",
1918
1797
  'transition-property': unset,
1919
1798
  'translate': "unset"
1920
- );
1921
-
1799
+ );
1922
1800
  $calendar-header-props: (
1923
1801
  'font-family': "unset",
1924
1802
  'font-size': "unset",
@@ -1942,8 +1820,7 @@ $calendar-header-props: (
1942
1820
  'border-style': solid,
1943
1821
  'border-width': var(--retro-layout-thickness),
1944
1822
  'foreground-color': var(--retro-scheme-lowlight)
1945
- );
1946
-
1823
+ );
1947
1824
  $calendar-item-props: (
1948
1825
  'font-family': var(--retro-font-family),
1949
1826
  'font-size': var(--retro-typography-body1-font-size),
@@ -1972,8 +1849,7 @@ $calendar-item-props: (
1972
1849
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
1973
1850
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
1974
1851
  'shadow-spread': var(--retro-elevation-light-spread-0)
1975
- );
1976
-
1852
+ );
1977
1853
  $calendar-months-view-props: (
1978
1854
  'font-family': "unset",
1979
1855
  'font-size': "unset",
@@ -1991,8 +1867,7 @@ $calendar-months-view-props: (
1991
1867
  'transition-mode': "unset",
1992
1868
  'transition-property': unset,
1993
1869
  'translate': "unset"
1994
- );
1995
-
1870
+ );
1996
1871
  $calendar-sub-header-props: (
1997
1872
  'font-family': "unset",
1998
1873
  'font-size': 18px,
@@ -2018,8 +1893,7 @@ $calendar-sub-header-props: (
2018
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),
2019
1894
  'foreground-color': var(--retro-scheme-foreground),
2020
1895
  'line-height': 22px
2021
- );
2022
-
1896
+ );
2023
1897
  $calendar-years-view-props: (
2024
1898
  'font-family': "unset",
2025
1899
  'font-size': "unset",
@@ -2037,8 +1911,7 @@ $calendar-years-view-props: (
2037
1911
  'transition-mode': "unset",
2038
1912
  'transition-property': unset,
2039
1913
  'translate': "unset"
2040
- );
2041
-
1914
+ );
2042
1915
  $camera-props: (
2043
1916
  'font-family': "unset",
2044
1917
  'font-size': "unset",
@@ -2059,8 +1932,7 @@ $camera-props: (
2059
1932
  'background-color': unset,
2060
1933
  'border-radius': unset,
2061
1934
  'foreground-color': unset
2062
- );
2063
-
1935
+ );
2064
1936
  $card-props: (
2065
1937
  'font-family': var(--retro-font-family),
2066
1938
  'font-size': var(--retro-typography-body1-font-size),
@@ -2090,8 +1962,7 @@ $card-props: (
2090
1962
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
2091
1963
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
2092
1964
  'shadow-spread': var(--retro-elevation-bold-spread-0)
2093
- );
2094
-
1965
+ );
2095
1966
  $card-actions-props: (
2096
1967
  'font-family': unset,
2097
1968
  'font-size': unset,
@@ -2109,8 +1980,7 @@ $card-actions-props: (
2109
1980
  'transition-mode': unset,
2110
1981
  'transition-property': unset,
2111
1982
  'translate': unset
2112
- );
2113
-
1983
+ );
2114
1984
  $card-content-props: (
2115
1985
  'font-family': unset,
2116
1986
  'font-size': unset,
@@ -2128,8 +1998,7 @@ $card-content-props: (
2128
1998
  'transition-mode': unset,
2129
1999
  'transition-property': unset,
2130
2000
  'translate': unset
2131
- );
2132
-
2001
+ );
2133
2002
  $card-footer-props: (
2134
2003
  'font-family': unset,
2135
2004
  'font-size': unset,
@@ -2147,8 +2016,7 @@ $card-footer-props: (
2147
2016
  'transition-mode': unset,
2148
2017
  'transition-property': unset,
2149
2018
  'translate': unset
2150
- );
2151
-
2019
+ );
2152
2020
  $card-header-props: (
2153
2021
  'font-family': unset,
2154
2022
  'font-size': unset,
@@ -2166,8 +2034,7 @@ $card-header-props: (
2166
2034
  'transition-mode': unset,
2167
2035
  'transition-property': unset,
2168
2036
  'translate': unset
2169
- );
2170
-
2037
+ );
2171
2038
  $card-sub-title-props: (
2172
2039
  'font-family': var(--retro-font-family),
2173
2040
  'font-size': var(--retro-typography-subtitle1-font-size),
@@ -2188,8 +2055,7 @@ $card-sub-title-props: (
2188
2055
  'background-color': var(--retro-scheme-transparent),
2189
2056
  'border-color': var(--retro-scheme-contrast),
2190
2057
  'foreground-color': var(--retro-scheme-middlelight)
2191
- );
2192
-
2058
+ );
2193
2059
  $card-title-props: (
2194
2060
  'font-family': var(--retro-font-family),
2195
2061
  'font-size': var(--retro-typography-headline6-font-size),
@@ -2210,8 +2076,7 @@ $card-title-props: (
2210
2076
  'background-color': var(--retro-scheme-transparent),
2211
2077
  'border-color': var(--retro-scheme-contrast),
2212
2078
  'foreground-color': var(--retro-scheme-foreground)
2213
- );
2214
-
2079
+ );
2215
2080
  $carousel-props: (
2216
2081
  'font-family': "unset",
2217
2082
  'font-size': "unset",
@@ -2229,8 +2094,7 @@ $carousel-props: (
2229
2094
  'transition-mode': "unset",
2230
2095
  'transition-property': unset,
2231
2096
  'translate': "unset"
2232
- );
2233
-
2097
+ );
2234
2098
  $carousel2-props: (
2235
2099
  'font-family': "unset",
2236
2100
  'font-size': "unset",
@@ -2248,8 +2112,7 @@ $carousel2-props: (
2248
2112
  'transition-mode': "unset",
2249
2113
  'transition-property': unset,
2250
2114
  'translate': "unset"
2251
- );
2252
-
2115
+ );
2253
2116
  $carousel-item-props: (
2254
2117
  'font-family': "unset",
2255
2118
  'font-size': "unset",
@@ -2267,8 +2130,7 @@ $carousel-item-props: (
2267
2130
  'transition-mode': "unset",
2268
2131
  'transition-property': unset,
2269
2132
  'translate': "unset"
2270
- );
2271
-
2133
+ );
2272
2134
  $carousel-item2-props: (
2273
2135
  'font-family': "unset",
2274
2136
  'font-size': "unset",
@@ -2286,8 +2148,7 @@ $carousel-item2-props: (
2286
2148
  'transition-mode': "unset",
2287
2149
  'transition-property': unset,
2288
2150
  'translate': "unset"
2289
- );
2290
-
2151
+ );
2291
2152
  $cell-props: (
2292
2153
  'font-family': var(--retro-font-family),
2293
2154
  'font-size': var(--retro-typography-body1-font-size),
@@ -2312,8 +2173,7 @@ $cell-props: (
2312
2173
  'sub-font-text-decoration': var(--retro-typography-body2-text-decoration),
2313
2174
  'sub-font-text-transform': var(--retro-typography-body2-text-transform),
2314
2175
  'sub-font-weight': var(--retro-typography-body2-font-weight)
2315
- );
2316
-
2176
+ );
2317
2177
  $cell-group-props: (
2318
2178
  'font-family': var(--retro-font-family),
2319
2179
  'font-size': var(--retro-typography-overline-font-size),
@@ -2342,8 +2202,7 @@ $cell-group-props: (
2342
2202
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
2343
2203
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
2344
2204
  'shadow-spread': var(--retro-elevation-bold-spread-0)
2345
- );
2346
-
2205
+ );
2347
2206
  $chart-props: (
2348
2207
  'font-family': var(--retro-typography-headline6-font-family),
2349
2208
  'font-size': var(--retro-typography-headline6-font-size),
@@ -2363,8 +2222,7 @@ $chart-props: (
2363
2222
  'translate': "unset",
2364
2223
  'background-color': var(--retro-scheme-background),
2365
2224
  'foreground-color': var(--retro-scheme-foreground)
2366
- );
2367
-
2225
+ );
2368
2226
  $chat-props: (
2369
2227
  'font-family': unset,
2370
2228
  'font-size': unset,
@@ -2390,8 +2248,7 @@ $chat-props: (
2390
2248
  'focus-ring-outward-offset': unset,
2391
2249
  'foreground-color': unset,
2392
2250
  'shadow': unset
2393
- );
2394
-
2251
+ );
2395
2252
  $chat-header-props: (
2396
2253
  'font-family': "unset",
2397
2254
  'font-size': "unset",
@@ -2410,8 +2267,7 @@ $chat-header-props: (
2410
2267
  'transition-property': unset,
2411
2268
  'translate': "unset",
2412
2269
  'height': unset
2413
- );
2414
-
2270
+ );
2415
2271
  $chat-input-props: (
2416
2272
  'font-family': "unset",
2417
2273
  'font-size': "unset",
@@ -2430,8 +2286,7 @@ $chat-input-props: (
2430
2286
  'transition-property': unset,
2431
2287
  'translate': "unset",
2432
2288
  'emoji-background-color': unset
2433
- );
2434
-
2289
+ );
2435
2290
  $chat-marker-props: (
2436
2291
  'font-family': unset,
2437
2292
  'font-size': unset,
@@ -2456,8 +2311,7 @@ $chat-marker-props: (
2456
2311
  'border-width': unset,
2457
2312
  'foreground-color': unset,
2458
2313
  'shadow': unset
2459
- );
2460
-
2314
+ );
2461
2315
  $chat-message-props: (
2462
2316
  'font-family': unset,
2463
2317
  'font-size': unset,
@@ -2482,8 +2336,7 @@ $chat-message-props: (
2482
2336
  'border-width': unset,
2483
2337
  'foreground-color': unset,
2484
2338
  'shadow': unset
2485
- );
2486
-
2339
+ );
2487
2340
  $chat-message-avatar-props: (
2488
2341
  'font-family': "unset",
2489
2342
  'font-size': "unset",
@@ -2501,8 +2354,7 @@ $chat-message-avatar-props: (
2501
2354
  'transition-mode': "unset",
2502
2355
  'transition-property': unset,
2503
2356
  'translate': "unset"
2504
- );
2505
-
2357
+ );
2506
2358
  $chat-message-divider-props: (
2507
2359
  'font-family': "unset",
2508
2360
  'font-size': "unset",
@@ -2520,8 +2372,7 @@ $chat-message-divider-props: (
2520
2372
  'transition-mode': "unset",
2521
2373
  'transition-property': unset,
2522
2374
  'translate': "unset"
2523
- );
2524
-
2375
+ );
2525
2376
  $check-box-props: (
2526
2377
  'font-family': var(--retro-font-family),
2527
2378
  'font-size': var(--retro-typography-body1-font-size),
@@ -2546,8 +2397,7 @@ $check-box-props: (
2546
2397
  'border-width': var(--retro-layout-thickness),
2547
2398
  'foreground-color': var(--retro-scheme-foreground),
2548
2399
  'shadow': var(--retro-elevation-none)
2549
- );
2550
-
2400
+ );
2551
2401
  $check-box-group-props: (
2552
2402
  'font-family': "unset",
2553
2403
  'font-size': "unset",
@@ -2572,8 +2422,7 @@ $check-box-group-props: (
2572
2422
  'border-width': unset,
2573
2423
  'foreground-color': unset,
2574
2424
  'shadow': unset
2575
- );
2576
-
2425
+ );
2577
2426
  $checkmark-props: (
2578
2427
  'font-family': "unset",
2579
2428
  'font-size': "unset",
@@ -2602,8 +2451,7 @@ $checkmark-props: (
2602
2451
  'shadow': unset,
2603
2452
  'thickness': unset,
2604
2453
  'width': unset
2605
- );
2606
-
2454
+ );
2607
2455
  $chip-props: (
2608
2456
  'font-family': var(--retro-font-family),
2609
2457
  'font-size': var(--retro-typography-body2-font-size),
@@ -2633,8 +2481,7 @@ $chip-props: (
2633
2481
  'shadow-offset-x': var(--retro-elevation-light-offset-x-0),
2634
2482
  'shadow-offset-y': var(--retro-elevation-light-offset-y-0),
2635
2483
  'shadow-spread': var(--retro-elevation-light-spread-0)
2636
- );
2637
-
2484
+ );
2638
2485
  $chip-box-props: (
2639
2486
  'font-family': "unset",
2640
2487
  'font-size': "unset",
@@ -2660,8 +2507,7 @@ $chip-box-props: (
2660
2507
  'foreground-color': unset,
2661
2508
  'height': unset,
2662
2509
  'shadow': unset
2663
- );
2664
-
2510
+ );
2665
2511
  $choice-props: (
2666
2512
  'font-family': unset,
2667
2513
  'font-size': unset,
@@ -2689,8 +2535,7 @@ $choice-props: (
2689
2535
  'focus-ring-outward-offset': unset,
2690
2536
  'foreground-color': unset,
2691
2537
  'shadow': unset
2692
- );
2693
-
2538
+ );
2694
2539
  $choice-group-props: (
2695
2540
  'font-family': "unset",
2696
2541
  'font-size': "unset",
@@ -2715,8 +2560,7 @@ $choice-group-props: (
2715
2560
  'border-width': unset,
2716
2561
  'foreground-color': unset,
2717
2562
  'shadow': unset
2718
- );
2719
-
2563
+ );
2720
2564
  $choice-group-header-props: (
2721
2565
  'font-family': "unset",
2722
2566
  'font-size': "unset",
@@ -2741,8 +2585,7 @@ $choice-group-header-props: (
2741
2585
  'border-width': unset,
2742
2586
  'foreground-color': unset,
2743
2587
  'shadow': unset
2744
- );
2745
-
2588
+ );
2746
2589
  $code-props: (
2747
2590
  'font-family': "unset",
2748
2591
  'font-size': "unset",
@@ -2761,8 +2604,7 @@ $code-props: (
2761
2604
  'transition-property': unset,
2762
2605
  'translate': "unset",
2763
2606
  'foreground-color': unset
2764
- );
2765
-
2607
+ );
2766
2608
  $color-area-props: (
2767
2609
  'font-family': "unset",
2768
2610
  'font-size': "unset",
@@ -2780,8 +2622,7 @@ $color-area-props: (
2780
2622
  'transition-mode': "unset",
2781
2623
  'transition-property': unset,
2782
2624
  'translate': "unset"
2783
- );
2784
-
2625
+ );
2785
2626
  $color-box-props: (
2786
2627
  'font-family': unset,
2787
2628
  'font-size': unset,
@@ -2807,8 +2648,7 @@ $color-box-props: (
2807
2648
  'foreground-color': unset,
2808
2649
  'height': unset,
2809
2650
  'shadow': unset
2810
- );
2811
-
2651
+ );
2812
2652
  $color-picker-props: (
2813
2653
  'font-family': unset,
2814
2654
  'font-size': unset,
@@ -2833,8 +2673,7 @@ $color-picker-props: (
2833
2673
  'border-width': unset,
2834
2674
  'foreground-color': unset,
2835
2675
  'size': unset
2836
- );
2837
-
2676
+ );
2838
2677
  $color-slider-props: (
2839
2678
  'font-family': "unset",
2840
2679
  'font-size': "unset",
@@ -2859,8 +2698,7 @@ $color-slider-props: (
2859
2698
  'border-width': unset,
2860
2699
  'foreground-color': unset,
2861
2700
  'shadow': unset
2862
- );
2863
-
2701
+ );
2864
2702
  $color-swatch-props: (
2865
2703
  'font-family': var(--retro-font-family),
2866
2704
  'font-size': var(--retro-typography-body1-font-size),
@@ -2885,8 +2723,7 @@ $color-swatch-props: (
2885
2723
  'border-width': var(--retro-layout-thickness),
2886
2724
  'foreground-color': var(--retro-scheme-foreground),
2887
2725
  'size': 24px
2888
- );
2889
-
2726
+ );
2890
2727
  $color-swatch-group-props: (
2891
2728
  'font-family': unset,
2892
2729
  'font-size': unset,
@@ -2911,8 +2748,7 @@ $color-swatch-group-props: (
2911
2748
  'border-width': unset,
2912
2749
  'foreground-color': unset,
2913
2750
  'shadow': unset
2914
- );
2915
-
2751
+ );
2916
2752
  $color-thumb-props: (
2917
2753
  'font-family': unset,
2918
2754
  'font-size': unset,
@@ -2937,8 +2773,7 @@ $color-thumb-props: (
2937
2773
  'border-width': unset,
2938
2774
  'foreground-color': unset,
2939
2775
  'size': unset
2940
- );
2941
-
2776
+ );
2942
2777
  $combo-props: (
2943
2778
  'font-family': "unset",
2944
2779
  'font-size': "unset",
@@ -2956,8 +2791,7 @@ $combo-props: (
2956
2791
  'transition-mode': "unset",
2957
2792
  'transition-property': unset,
2958
2793
  'translate': "unset"
2959
- );
2960
-
2794
+ );
2961
2795
  $combo-item-props: (
2962
2796
  'font-family': unset,
2963
2797
  'font-size': unset,
@@ -2982,8 +2816,7 @@ $combo-item-props: (
2982
2816
  'border-width': unset,
2983
2817
  'foreground-color': unset,
2984
2818
  'shadow': unset
2985
- );
2986
-
2819
+ );
2987
2820
  $comment-props: (
2988
2821
  'font-family': "unset",
2989
2822
  'font-size': "unset",
@@ -3003,8 +2836,7 @@ $comment-props: (
3003
2836
  'translate': "unset",
3004
2837
  'inner-gap': unset,
3005
2838
  'nested-indent': unset
3006
- );
3007
-
2839
+ );
3008
2840
  $compound-button-props: (
3009
2841
  'font-family': var(--retro-font-family),
3010
2842
  'font-size': var(--retro-typography-button-font-size),
@@ -3033,8 +2865,7 @@ $compound-button-props: (
3033
2865
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3034
2866
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3035
2867
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3036
- );
3037
-
2868
+ );
3038
2869
  $content-props: (
3039
2870
  'font-family': "unset",
3040
2871
  'font-size': "unset",
@@ -3052,8 +2883,7 @@ $content-props: (
3052
2883
  'transition-mode': "unset",
3053
2884
  'transition-property': unset,
3054
2885
  'translate': "unset"
3055
- );
3056
-
2886
+ );
3057
2887
  $cookies-consent-props: (
3058
2888
  'font-family': "unset",
3059
2889
  'font-size': "unset",
@@ -3071,8 +2901,7 @@ $cookies-consent-props: (
3071
2901
  'transition-mode': "unset",
3072
2902
  'transition-property': unset,
3073
2903
  'translate': "unset"
3074
- );
3075
-
2904
+ );
3076
2905
  $data-list-props: (
3077
2906
  'font-family': "unset",
3078
2907
  'font-size': "unset",
@@ -3090,8 +2919,7 @@ $data-list-props: (
3090
2919
  'transition-mode': "unset",
3091
2920
  'transition-property': unset,
3092
2921
  'translate': "unset"
3093
- );
3094
-
2922
+ );
3095
2923
  $data-table-props: (
3096
2924
  'font-family': "unset",
3097
2925
  'font-size': "unset",
@@ -3109,8 +2937,7 @@ $data-table-props: (
3109
2937
  'transition-mode': "unset",
3110
2938
  'transition-property': unset,
3111
2939
  'translate': "unset"
3112
- );
3113
-
2940
+ );
3114
2941
  $date-box-props: (
3115
2942
  'font-family': var(--retro-font-family),
3116
2943
  'font-size': var(--retro-typography-body1-font-size),
@@ -3141,8 +2968,7 @@ $date-box-props: (
3141
2968
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3142
2969
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3143
2970
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3144
- );
3145
-
2971
+ );
3146
2972
  $date-time-box-props: (
3147
2973
  'font-family': unset,
3148
2974
  'font-size': unset,
@@ -3171,8 +2997,7 @@ $date-time-box-props: (
3171
2997
  'foreground-color': unset,
3172
2998
  'height': unset,
3173
2999
  'shadow': unset
3174
- );
3175
-
3000
+ );
3176
3001
  $dialog-props: (
3177
3002
  'font-family': var(--retro-font-family),
3178
3003
  'font-size': var(--retro-typography-body1-font-size),
@@ -3202,8 +3027,7 @@ $dialog-props: (
3202
3027
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
3203
3028
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
3204
3029
  'shadow-spread': var(--retro-elevation-bold-spread-0)
3205
- );
3206
-
3030
+ );
3207
3031
  $dialog-actions-props: (
3208
3032
  'font-family': "unset",
3209
3033
  'font-size': "unset",
@@ -3221,8 +3045,7 @@ $dialog-actions-props: (
3221
3045
  'transition-mode': "unset",
3222
3046
  'transition-property': unset,
3223
3047
  'translate': "unset"
3224
- );
3225
-
3048
+ );
3226
3049
  $dialog-content-props: (
3227
3050
  'font-family': "unset",
3228
3051
  'font-size': "unset",
@@ -3240,8 +3063,7 @@ $dialog-content-props: (
3240
3063
  'transition-mode': "unset",
3241
3064
  'transition-property': unset,
3242
3065
  'translate': "unset"
3243
- );
3244
-
3066
+ );
3245
3067
  $dialog-footer-props: (
3246
3068
  'font-family': "unset",
3247
3069
  'font-size': "unset",
@@ -3259,8 +3081,7 @@ $dialog-footer-props: (
3259
3081
  'transition-mode': "unset",
3260
3082
  'transition-property': unset,
3261
3083
  'translate': "unset"
3262
- );
3263
-
3084
+ );
3264
3085
  $dialog-header-props: (
3265
3086
  'font-family': "unset",
3266
3087
  'font-size': "unset",
@@ -3278,8 +3099,7 @@ $dialog-header-props: (
3278
3099
  'transition-mode': "unset",
3279
3100
  'transition-property': unset,
3280
3101
  'translate': "unset"
3281
- );
3282
-
3102
+ );
3283
3103
  $dialog-header-sub-text-props: (
3284
3104
  'font-family': var(--retro-font-family),
3285
3105
  'font-size': var(--retro-typography-subtitle2-font-size),
@@ -3300,8 +3120,7 @@ $dialog-header-sub-text-props: (
3300
3120
  'background-color': var(--retro-scheme-background),
3301
3121
  'border-color': var(--retro-scheme-contrast),
3302
3122
  'foreground-color': var(--retro-scheme-middlelight)
3303
- );
3304
-
3123
+ );
3305
3124
  $dialog-header-text-props: (
3306
3125
  'font-family': var(--retro-font-family),
3307
3126
  'font-size': var(--retro-typography-headline6-font-size),
@@ -3322,8 +3141,7 @@ $dialog-header-text-props: (
3322
3141
  'background-color': var(--retro-scheme-background),
3323
3142
  'border-color': var(--retro-scheme-contrast),
3324
3143
  'foreground-color': var(--retro-scheme-foreground)
3325
- );
3326
-
3144
+ );
3327
3145
  $dialog-host-props: (
3328
3146
  'font-family': "unset",
3329
3147
  'font-size': "unset",
@@ -3341,8 +3159,7 @@ $dialog-host-props: (
3341
3159
  'transition-mode': "unset",
3342
3160
  'transition-property': unset,
3343
3161
  'translate': "unset"
3344
- );
3345
-
3162
+ );
3346
3163
  $disclosure-props: (
3347
3164
  'font-family': unset,
3348
3165
  'font-size': unset,
@@ -3360,8 +3177,7 @@ $disclosure-props: (
3360
3177
  'transition-mode': unset,
3361
3178
  'transition-property': unset,
3362
3179
  'translate': unset
3363
- );
3364
-
3180
+ );
3365
3181
  $divider-props: (
3366
3182
  'font-family': var(--retro-font-family),
3367
3183
  'font-size': 12px,
@@ -3383,8 +3199,7 @@ $divider-props: (
3383
3199
  'foreground-color': var(--retro-scheme-foreground),
3384
3200
  'shadow': var(--retro-elevation-none),
3385
3201
  'thickness': var(--retro-layout-thickness)
3386
- );
3387
-
3202
+ );
3388
3203
  $dot-props: (
3389
3204
  'font-family': var(--retro-font-family),
3390
3205
  'font-size': 16px,
@@ -3410,8 +3225,7 @@ $dot-props: (
3410
3225
  'foreground-color': var(--retro-color-neutral-50),
3411
3226
  'shadow': unset,
3412
3227
  'size': 16px
3413
- );
3414
-
3228
+ );
3415
3229
  $drawer-props: (
3416
3230
  'font-family': var(--retro-font-family),
3417
3231
  'font-size': 16px,
@@ -3438,8 +3252,7 @@ $drawer-props: (
3438
3252
  'height': 100%,
3439
3253
  'shadow': var(--retro-elevation-none),
3440
3254
  'width': 320px
3441
- );
3442
-
3255
+ );
3443
3256
  $drawer-container-props: (
3444
3257
  'font-family': "unset",
3445
3258
  'font-size': "unset",
@@ -3457,8 +3270,7 @@ $drawer-container-props: (
3457
3270
  'transition-mode': "unset",
3458
3271
  'transition-property': unset,
3459
3272
  'translate': "unset"
3460
- );
3461
-
3273
+ );
3462
3274
  $drawer-content-props: (
3463
3275
  'font-family': "unset",
3464
3276
  'font-size': "unset",
@@ -3476,8 +3288,7 @@ $drawer-content-props: (
3476
3288
  'transition-mode': "unset",
3477
3289
  'transition-property': unset,
3478
3290
  'translate': "unset"
3479
- );
3480
-
3291
+ );
3481
3292
  $drop-down-button-props: (
3482
3293
  'font-family': var(--retro-typography-button-font-family),
3483
3294
  'font-size': var(--retro-typography-button-font-size),
@@ -3506,8 +3317,7 @@ $drop-down-button-props: (
3506
3317
  'shadow': var(--retro-elevation-semilight),
3507
3318
  'transform': none,
3508
3319
  'width': auto
3509
- );
3510
-
3320
+ );
3511
3321
  $drop-zone-props: (
3512
3322
  'font-family': "unset",
3513
3323
  'font-size': "unset",
@@ -3525,8 +3335,7 @@ $drop-zone-props: (
3525
3335
  'transition-mode': "unset",
3526
3336
  'transition-property': unset,
3527
3337
  'translate': "unset"
3528
- );
3529
-
3338
+ );
3530
3339
  $dropdown-props: (
3531
3340
  'font-family': "unset",
3532
3341
  'font-size': "unset",
@@ -3544,8 +3353,7 @@ $dropdown-props: (
3544
3353
  'transition-mode': "unset",
3545
3354
  'transition-property': unset,
3546
3355
  'translate': "unset"
3547
- );
3548
-
3356
+ );
3549
3357
  $elevation-props: (
3550
3358
  'font-family': "unset",
3551
3359
  'font-size': "unset",
@@ -3563,8 +3371,7 @@ $elevation-props: (
3563
3371
  'transition-mode': "unset",
3564
3372
  'transition-property': unset,
3565
3373
  'translate': "unset"
3566
- );
3567
-
3374
+ );
3568
3375
  $emoji-props: (
3569
3376
  'font-family': "unset",
3570
3377
  'font-size': "unset",
@@ -3583,8 +3390,7 @@ $emoji-props: (
3583
3390
  'transition-property': unset,
3584
3391
  'translate': "unset",
3585
3392
  'background-color': unset
3586
- );
3587
-
3393
+ );
3588
3394
  $empty-state-props: (
3589
3395
  'font-family': "unset",
3590
3396
  'font-size': "unset",
@@ -3593,11 +3399,11 @@ $empty-state-props: (
3593
3399
  'font-letter-spacing': "unset",
3594
3400
  'font-text-decoration': "unset",
3595
3401
  'font-text-transform': "unset",
3596
- 'padding-top': "unset",
3597
- 'padding-right': "unset",
3598
- 'padding-bottom': "unset",
3599
- 'padding-left': "unset",
3600
- 'gap': "unset",
3402
+ 'padding-top': calc(var(--retro-layout-space) * 2),
3403
+ 'padding-right': calc(var(--retro-layout-space) * 2),
3404
+ 'padding-bottom': calc(var(--retro-layout-space) * 2),
3405
+ 'padding-left': calc(var(--retro-layout-space) * 2),
3406
+ 'gap': var(--retro-layout-space),
3601
3407
  'transition-duration': "unset",
3602
3408
  'transition-mode': "unset",
3603
3409
  'transition-property': unset,
@@ -3610,8 +3416,7 @@ $empty-state-props: (
3610
3416
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
3611
3417
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
3612
3418
  'header-font-weight': var(--retro-typography-body1-font-weight)
3613
- );
3614
-
3419
+ );
3615
3420
  $error-props: (
3616
3421
  'font-family': unset,
3617
3422
  'font-size': unset,
@@ -3636,8 +3441,7 @@ $error-props: (
3636
3441
  'border-width': unset,
3637
3442
  'foreground-color': unset,
3638
3443
  'shadow': unset
3639
- );
3640
-
3444
+ );
3641
3445
  $error-state-props: (
3642
3446
  'font-family': "unset",
3643
3447
  'font-size': "unset",
@@ -3646,15 +3450,16 @@ $error-state-props: (
3646
3450
  'font-letter-spacing': "unset",
3647
3451
  'font-text-decoration': "unset",
3648
3452
  'font-text-transform': "unset",
3649
- 'padding-top': "unset",
3650
- 'padding-right': "unset",
3651
- 'padding-bottom': "unset",
3652
- 'padding-left': "unset",
3653
- 'gap': "unset",
3453
+ 'padding-top': calc(var(--retro-layout-space) * 2),
3454
+ 'padding-right': calc(var(--retro-layout-space) * 2),
3455
+ 'padding-bottom': calc(var(--retro-layout-space) * 2),
3456
+ 'padding-left': calc(var(--retro-layout-space) * 2),
3457
+ 'gap': var(--retro-layout-space),
3654
3458
  'transition-duration': "unset",
3655
3459
  'transition-mode': "unset",
3656
3460
  'transition-property': unset,
3657
3461
  'translate': "unset",
3462
+ 'foreground-color': unset,
3658
3463
  'header-font-family': var(--retro-font-family),
3659
3464
  'header-font-letter-spacing': var(--retro-typography-body1-letter-spacing),
3660
3465
  'header-font-line-height': var(--retro-typography-body1-line-height),
@@ -3662,8 +3467,7 @@ $error-state-props: (
3662
3467
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
3663
3468
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
3664
3469
  'header-font-weight': var(--retro-typography-body1-font-weight)
3665
- );
3666
-
3470
+ );
3667
3471
  $expandable-props: (
3668
3472
  'font-family': "unset",
3669
3473
  'font-size': "unset",
@@ -3681,8 +3485,7 @@ $expandable-props: (
3681
3485
  'transition-mode': "unset",
3682
3486
  'transition-property': unset,
3683
3487
  'translate': "unset"
3684
- );
3685
-
3488
+ );
3686
3489
  $expander-props: (
3687
3490
  'font-family': var(--retro-font-family),
3688
3491
  'font-size': var(--retro-typography-body1-font-size),
@@ -3712,8 +3515,7 @@ $expander-props: (
3712
3515
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3713
3516
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3714
3517
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3715
- );
3716
-
3518
+ );
3717
3519
  $expander-group-props: (
3718
3520
  'font-family': var(--retro-font-family),
3719
3521
  'font-size': var(--retro-typography-body1-font-size),
@@ -3738,8 +3540,7 @@ $expander-group-props: (
3738
3540
  'border-width': 0px,
3739
3541
  'foreground-color': var(--retro-scheme-foreground),
3740
3542
  'shadow': var(--retro-elevation-none)
3741
- );
3742
-
3543
+ );
3743
3544
  $expander-header-props: (
3744
3545
  'font-family': var(--retro-font-family),
3745
3546
  'font-size': var(--retro-typography-subtitle1-font-size),
@@ -3760,8 +3561,7 @@ $expander-header-props: (
3760
3561
  'background-color': var(--retro-scheme-transparent),
3761
3562
  'border-color': var(--retro-scheme-highlight),
3762
3563
  'foreground-color': var(--retro-scheme-foreground)
3763
- );
3764
-
3564
+ );
3765
3565
  $expander-sub-header-props: (
3766
3566
  'font-family': var(--retro-font-family),
3767
3567
  'font-size': var(--retro-typography-subtitle2-font-size),
@@ -3782,8 +3582,7 @@ $expander-sub-header-props: (
3782
3582
  'background-color': var(--retro-scheme-transparent),
3783
3583
  'border-color': var(--retro-scheme-highlight),
3784
3584
  'foreground-color': var(--retro-scheme-middlelight)
3785
- );
3786
-
3585
+ );
3787
3586
  $file-picker-props: (
3788
3587
  'font-family': "unset",
3789
3588
  'font-size': "unset",
@@ -3808,8 +3607,7 @@ $file-picker-props: (
3808
3607
  'border-width': unset,
3809
3608
  'foreground-color': unset,
3810
3609
  'shadow': unset
3811
- );
3812
-
3610
+ );
3813
3611
  $file-upload-props: (
3814
3612
  'font-family': "unset",
3815
3613
  'font-size': "unset",
@@ -3834,8 +3632,7 @@ $file-upload-props: (
3834
3632
  'border-width': unset,
3835
3633
  'foreground-color': unset,
3836
3634
  'shadow': unset
3837
- );
3838
-
3635
+ );
3839
3636
  $file-upload-item-props: (
3840
3637
  'font-family': "unset",
3841
3638
  'font-size': "unset",
@@ -3860,8 +3657,7 @@ $file-upload-item-props: (
3860
3657
  'border-width': unset,
3861
3658
  'foreground-color': unset,
3862
3659
  'shadow': unset
3863
- );
3864
-
3660
+ );
3865
3661
  $flip-props: (
3866
3662
  'font-family': "unset",
3867
3663
  'font-size': "unset",
@@ -3879,8 +3675,7 @@ $flip-props: (
3879
3675
  'transition-mode': "unset",
3880
3676
  'transition-property': unset,
3881
3677
  'translate': "unset"
3882
- );
3883
-
3678
+ );
3884
3679
  $floating-props: (
3885
3680
  'font-family': var(--retro-font-family),
3886
3681
  'font-size': var(--retro-typography-body1-font-size),
@@ -3908,8 +3703,7 @@ $floating-props: (
3908
3703
  'border-width': var(--retro-layout-thickness),
3909
3704
  'foreground-color': var(--retro-scheme-foreground),
3910
3705
  'shadow': var(--retro-elevation-light)
3911
- );
3912
-
3706
+ );
3913
3707
  $floating-action-button-props: (
3914
3708
  'font-family': var(--retro-typography-button-font-family),
3915
3709
  'font-size': var(--retro-typography-button-font-size),
@@ -3938,8 +3732,7 @@ $floating-action-button-props: (
3938
3732
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
3939
3733
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
3940
3734
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
3941
- );
3942
-
3735
+ );
3943
3736
  $floating-action-button-group-props: (
3944
3737
  'font-family': unset,
3945
3738
  'font-size': unset,
@@ -3957,8 +3750,7 @@ $floating-action-button-group-props: (
3957
3750
  'transition-mode': unset,
3958
3751
  'transition-property': unset,
3959
3752
  'translate': "unset"
3960
- );
3961
-
3753
+ );
3962
3754
  $floating-trigger-props: (
3963
3755
  'font-family': "unset",
3964
3756
  'font-size': "unset",
@@ -3976,8 +3768,7 @@ $floating-trigger-props: (
3976
3768
  'transition-mode': "unset",
3977
3769
  'transition-property': unset,
3978
3770
  'translate': "unset"
3979
- );
3980
-
3771
+ );
3981
3772
  $focus-ring-props: (
3982
3773
  'font-family': "unset",
3983
3774
  'font-size': "unset",
@@ -4009,8 +3800,7 @@ $focus-ring-props: (
4009
3800
  'width': unset,
4010
3801
  'x': unset,
4011
3802
  'y': unset
4012
- );
4013
-
3803
+ );
4014
3804
  $footer-props: (
4015
3805
  'font-family': "unset",
4016
3806
  'font-size': "unset",
@@ -4035,8 +3825,7 @@ $footer-props: (
4035
3825
  'border-width': var(--retro-layout-thickness),
4036
3826
  'foreground-color': var(--retro-scheme-foreground),
4037
3827
  'inset': calc(var(--retro-layout-space) * 2)
4038
- );
4039
-
3828
+ );
4040
3829
  $footer-item-props: (
4041
3830
  'font-family': "unset",
4042
3831
  'font-size': "unset",
@@ -4054,8 +3843,7 @@ $footer-item-props: (
4054
3843
  'transition-mode': "unset",
4055
3844
  'transition-property': unset,
4056
3845
  'translate': "unset"
4057
- );
4058
-
3846
+ );
4059
3847
  $footer-item-group-props: (
4060
3848
  'font-family': "unset",
4061
3849
  'font-size': "unset",
@@ -4073,8 +3861,7 @@ $footer-item-group-props: (
4073
3861
  'transition-mode': "unset",
4074
3862
  'transition-property': unset,
4075
3863
  'translate': "unset"
4076
- );
4077
-
3864
+ );
4078
3865
  $form-props: (
4079
3866
  'font-family': unset,
4080
3867
  'font-size': unset,
@@ -4093,8 +3880,7 @@ $form-props: (
4093
3880
  'transition-property': unset,
4094
3881
  'translate': unset,
4095
3882
  'font-text-trans': unset
4096
- );
4097
-
3883
+ );
4098
3884
  $form-field-props: (
4099
3885
  'font-family': unset,
4100
3886
  'font-size': unset,
@@ -4112,8 +3898,7 @@ $form-field-props: (
4112
3898
  'transition-mode': unset,
4113
3899
  'transition-property': unset,
4114
3900
  'translate': unset
4115
- );
4116
-
3901
+ );
4117
3902
  $grid-props: (
4118
3903
  'font-family': "unset",
4119
3904
  'font-size': "unset",
@@ -4131,8 +3916,7 @@ $grid-props: (
4131
3916
  'transition-mode': "unset",
4132
3917
  'transition-property': unset,
4133
3918
  'translate': "unset"
4134
- );
4135
-
3919
+ );
4136
3920
  $grid-item-props: (
4137
3921
  'font-family': "unset",
4138
3922
  'font-size': "unset",
@@ -4150,8 +3934,7 @@ $grid-item-props: (
4150
3934
  'transition-mode': "unset",
4151
3935
  'transition-property': unset,
4152
3936
  'translate': "unset"
4153
- );
4154
-
3937
+ );
4155
3938
  $helmet-props: (
4156
3939
  'font-family': "unset",
4157
3940
  'font-size': "unset",
@@ -4169,8 +3952,7 @@ $helmet-props: (
4169
3952
  'transition-mode': "unset",
4170
3953
  'transition-property': unset,
4171
3954
  'translate': "unset"
4172
- );
4173
-
3955
+ );
4174
3956
  $hint-props: (
4175
3957
  'font-family': unset,
4176
3958
  'font-size': unset,
@@ -4195,8 +3977,7 @@ $hint-props: (
4195
3977
  'border-width': unset,
4196
3978
  'foreground-color': unset,
4197
3979
  'shadow': unset
4198
- );
4199
-
3980
+ );
4200
3981
  $icon-props: (
4201
3982
  'font-family': unset,
4202
3983
  'font-size': unset,
@@ -4222,8 +4003,7 @@ $icon-props: (
4222
4003
  'foreground-color': unset,
4223
4004
  'shadow': unset,
4224
4005
  'size': unset
4225
- );
4226
-
4006
+ );
4227
4007
  $image-props: (
4228
4008
  'font-family': unset,
4229
4009
  'font-size': unset,
@@ -4256,8 +4036,7 @@ $image-props: (
4256
4036
  'legend-font-text-transform': unset,
4257
4037
  'legend-font-weight': unset,
4258
4038
  'shadow': unset
4259
- );
4260
-
4039
+ );
4261
4040
  $ink-bar-props: (
4262
4041
  'font-family': "unset",
4263
4042
  'font-size': "unset",
@@ -4280,8 +4059,7 @@ $ink-bar-props: (
4280
4059
  'border-radius': calc(var(--ink-bar-thickness) / 2),
4281
4060
  'foreground-color': unset,
4282
4061
  'thickness': calc(var(--retro-layout-thickness) * 2)
4283
- );
4284
-
4062
+ );
4285
4063
  $jumbtron-props: (
4286
4064
  'font-family': unset,
4287
4065
  'font-size': unset,
@@ -4306,8 +4084,7 @@ $jumbtron-props: (
4306
4084
  'border-width': unset,
4307
4085
  'foreground-color': unset,
4308
4086
  'shadow': unset
4309
- );
4310
-
4087
+ );
4311
4088
  $jumbtron-header-props: (
4312
4089
  'font-family': unset,
4313
4090
  'font-size': unset,
@@ -4328,8 +4105,7 @@ $jumbtron-header-props: (
4328
4105
  'background-color': unset,
4329
4106
  'border-color': unset,
4330
4107
  'foreground-color': unset
4331
- );
4332
-
4108
+ );
4333
4109
  $jumbtron-sub-header-props: (
4334
4110
  'font-family': unset,
4335
4111
  'font-size': unset,
@@ -4350,8 +4126,7 @@ $jumbtron-sub-header-props: (
4350
4126
  'background-color': unset,
4351
4127
  'border-color': unset,
4352
4128
  'foreground-color': unset
4353
- );
4354
-
4129
+ );
4355
4130
  $kbd-props: (
4356
4131
  'font-family': unset,
4357
4132
  'font-size': unset,
@@ -4376,8 +4151,7 @@ $kbd-props: (
4376
4151
  'border-width': unset,
4377
4152
  'foreground-color': unset,
4378
4153
  'shadow': unset
4379
- );
4380
-
4154
+ );
4381
4155
  $kbd-shortcut-props: (
4382
4156
  'font-family': "unset",
4383
4157
  'font-size': "unset",
@@ -4395,8 +4169,7 @@ $kbd-shortcut-props: (
4395
4169
  'transition-mode': "unset",
4396
4170
  'transition-property': unset,
4397
4171
  'translate': "unset"
4398
- );
4399
-
4172
+ );
4400
4173
  $light-chain-props: (
4401
4174
  'font-family': "unset",
4402
4175
  'font-size': "unset",
@@ -4414,8 +4187,7 @@ $light-chain-props: (
4414
4187
  'transition-mode': "unset",
4415
4188
  'transition-property': unset,
4416
4189
  'translate': "unset"
4417
- );
4418
-
4190
+ );
4419
4191
  $list-props: (
4420
4192
  'font-family': unset,
4421
4193
  'font-size': unset,
@@ -4440,8 +4212,7 @@ $list-props: (
4440
4212
  'border-width': unset,
4441
4213
  'foreground-color': unset,
4442
4214
  'shadow': unset
4443
- );
4444
-
4215
+ );
4445
4216
  $list-item-props: (
4446
4217
  'font-family': unset,
4447
4218
  'font-size': unset,
@@ -4466,8 +4237,7 @@ $list-item-props: (
4466
4237
  'border-width': unset,
4467
4238
  'foreground-color': unset,
4468
4239
  'shadow': unset
4469
- );
4470
-
4240
+ );
4471
4241
  $list-item-group-props: (
4472
4242
  'font-family': unset,
4473
4243
  'font-size': unset,
@@ -4492,8 +4262,7 @@ $list-item-group-props: (
4492
4262
  'border-width': unset,
4493
4263
  'foreground-color': unset,
4494
4264
  'shadow': unset
4495
- );
4496
-
4265
+ );
4497
4266
  $marquee-props: (
4498
4267
  'font-family': "unset",
4499
4268
  'font-size': "unset",
@@ -4513,8 +4282,7 @@ $marquee-props: (
4513
4282
  'translate': "unset",
4514
4283
  'direction': unset,
4515
4284
  'speed': unset
4516
- );
4517
-
4285
+ );
4518
4286
  $masonry-props: (
4519
4287
  'font-family': "unset",
4520
4288
  'font-size': "unset",
@@ -4533,8 +4301,7 @@ $masonry-props: (
4533
4301
  'transition-property': unset,
4534
4302
  'translate': "unset",
4535
4303
  'columns': unset
4536
- );
4537
-
4304
+ );
4538
4305
  $menu-props: (
4539
4306
  'font-family': unset,
4540
4307
  'font-size': unset,
@@ -4559,8 +4326,7 @@ $menu-props: (
4559
4326
  'border-width': unset,
4560
4327
  'foreground-color': unset,
4561
4328
  'shadow': unset
4562
- );
4563
-
4329
+ );
4564
4330
  $menu-item-props: (
4565
4331
  'font-family': var(--retro-font-family),
4566
4332
  'font-size': var(--retro-typography-body1-font-size),
@@ -4584,9 +4350,12 @@ $menu-item-props: (
4584
4350
  'border-style': solid,
4585
4351
  'border-width': 0px,
4586
4352
  'foreground-color': var(--retro-scheme-foreground),
4587
- 'shadow': var(--retro-elevation-none)
4588
- );
4589
-
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
+ );
4590
4359
  $menu-item-group-props: (
4591
4360
  'font-family': unset,
4592
4361
  'font-size': unset,
@@ -4618,8 +4387,7 @@ $menu-item-group-props: (
4618
4387
  'header-font-text-transform': unset,
4619
4388
  'header-font-weight': unset,
4620
4389
  'shadow': unset
4621
- );
4622
-
4390
+ );
4623
4391
  $message-box-props: (
4624
4392
  'font-family': "unset",
4625
4393
  'font-size': "unset",
@@ -4637,8 +4405,7 @@ $message-box-props: (
4637
4405
  'transition-mode': "unset",
4638
4406
  'transition-property': unset,
4639
4407
  'translate': "unset"
4640
- );
4641
-
4408
+ );
4642
4409
  $meter-bar-props: (
4643
4410
  'font-family': "unset",
4644
4411
  'font-size': "unset",
@@ -4656,8 +4423,7 @@ $meter-bar-props: (
4656
4423
  'transition-mode': "unset",
4657
4424
  'transition-property': unset,
4658
4425
  'translate': "unset"
4659
- );
4660
-
4426
+ );
4661
4427
  $meter-ring-props: (
4662
4428
  'font-family': "unset",
4663
4429
  'font-size': "unset",
@@ -4675,8 +4441,7 @@ $meter-ring-props: (
4675
4441
  'transition-mode': "unset",
4676
4442
  'transition-property': unset,
4677
4443
  'translate': "unset"
4678
- );
4679
-
4444
+ );
4680
4445
  $number-props: (
4681
4446
  'font-family': unset,
4682
4447
  'font-size': unset,
@@ -4695,8 +4460,7 @@ $number-props: (
4695
4460
  'transition-property': unset,
4696
4461
  'translate': "unset",
4697
4462
  'alignment': unset
4698
- );
4699
-
4463
+ );
4700
4464
  $number-box-props: (
4701
4465
  'font-family': unset,
4702
4466
  'font-size': unset,
@@ -4723,8 +4487,7 @@ $number-box-props: (
4723
4487
  'foreground-color': unset,
4724
4488
  'height': unset,
4725
4489
  'shadow': unset
4726
- );
4727
-
4490
+ );
4728
4491
  $number-counter-props: (
4729
4492
  'font-family': unset,
4730
4493
  'font-size': unset,
@@ -4748,8 +4511,7 @@ $number-counter-props: (
4748
4511
  'n': unset,
4749
4512
  'timing': unset,
4750
4513
  'to': unset
4751
- );
4752
-
4514
+ );
4753
4515
  $page-props: (
4754
4516
  'font-family': "unset",
4755
4517
  'font-size': "unset",
@@ -4767,8 +4529,7 @@ $page-props: (
4767
4529
  'transition-mode': "unset",
4768
4530
  'transition-property': unset,
4769
4531
  'translate': "unset"
4770
- );
4771
-
4532
+ );
4772
4533
  $page-content-props: (
4773
4534
  'font-family': "unset",
4774
4535
  'font-size': "unset",
@@ -4790,8 +4551,7 @@ $page-content-props: (
4790
4551
  'left': unset,
4791
4552
  'max-width': unset,
4792
4553
  'width': unset
4793
- );
4794
-
4554
+ );
4795
4555
  $page-header-props: (
4796
4556
  'font-family': var(--retro-font-family),
4797
4557
  'font-size': var(--retro-typography-headline4-font-size),
@@ -4813,8 +4573,7 @@ $page-header-props: (
4813
4573
  'border-color': unset,
4814
4574
  'foreground-color': var(--retro-scheme-foreground),
4815
4575
  'inset': calc(var(--retro-layout-space) * 2)
4816
- );
4817
-
4576
+ );
4818
4577
  $page-menu-props: (
4819
4578
  'font-family': var(--retro-font-family),
4820
4579
  'font-size': 24px,
@@ -4841,8 +4600,7 @@ $page-menu-props: (
4841
4600
  'height': 64px,
4842
4601
  'line-height': 28px,
4843
4602
  'shadow': var(--retro-elevation-none)
4844
- );
4845
-
4603
+ );
4846
4604
  $page-pre-content-props: (
4847
4605
  'font-family': "unset",
4848
4606
  'font-size': "unset",
@@ -4861,8 +4619,7 @@ $page-pre-content-props: (
4861
4619
  'transition-property': unset,
4862
4620
  'translate': "unset",
4863
4621
  'inset': calc(var(--retro-layout-space) * 2)
4864
- );
4865
-
4622
+ );
4866
4623
  $page-pre-header-props: (
4867
4624
  'font-family': "unset",
4868
4625
  'font-size': "unset",
@@ -4881,8 +4638,7 @@ $page-pre-header-props: (
4881
4638
  'transition-property': unset,
4882
4639
  'translate': "unset",
4883
4640
  'inset': calc(var(--retro-layout-space) * 2)
4884
- );
4885
-
4641
+ );
4886
4642
  $paginator-props: (
4887
4643
  'font-family': "unset",
4888
4644
  'font-size': "unset",
@@ -4901,8 +4657,7 @@ $paginator-props: (
4901
4657
  'transition-property': unset,
4902
4658
  'translate': "unset",
4903
4659
  'background-color': unset
4904
- );
4905
-
4660
+ );
4906
4661
  $password-box-props: (
4907
4662
  'font-family': var(--retro-font-family),
4908
4663
  'font-size': var(--retro-typography-body1-font-size),
@@ -4933,8 +4688,7 @@ $password-box-props: (
4933
4688
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
4934
4689
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
4935
4690
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
4936
- );
4937
-
4691
+ );
4938
4692
  $pattern-props: (
4939
4693
  'font-family': "unset",
4940
4694
  'font-size': "unset",
@@ -4953,8 +4707,7 @@ $pattern-props: (
4953
4707
  'transition-property': unset,
4954
4708
  'translate': "unset",
4955
4709
  'background-color': var(--retro-color-neutral-400)
4956
- );
4957
-
4710
+ );
4958
4711
  $persona-props: (
4959
4712
  'font-family': unset,
4960
4713
  'font-size': unset,
@@ -4979,8 +4732,7 @@ $persona-props: (
4979
4732
  'border-width': unset,
4980
4733
  'foreground-color': unset,
4981
4734
  'shadow': unset
4982
- );
4983
-
4735
+ );
4984
4736
  $perspective-props: (
4985
4737
  'font-family': unset,
4986
4738
  'font-size': unset,
@@ -4998,8 +4750,7 @@ $perspective-props: (
4998
4750
  'transition-mode': unset,
4999
4751
  'transition-property': unset,
5000
4752
  'translate': unset
5001
- );
5002
-
4753
+ );
5003
4754
  $pin-box-props: (
5004
4755
  'font-family': var(--retro-font-family),
5005
4756
  'font-size': 16px,
@@ -5029,8 +4780,7 @@ $pin-box-props: (
5029
4780
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5030
4781
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5031
4782
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5032
- );
5033
-
4783
+ );
5034
4784
  $popup-props: (
5035
4785
  'font-family': unset,
5036
4786
  'font-size': unset,
@@ -5059,8 +4809,7 @@ $popup-props: (
5059
4809
  'shadow-offset-x': unset,
5060
4810
  'shadow-offset-y': unset,
5061
4811
  'shadow-spread': unset
5062
- );
5063
-
4812
+ );
5064
4813
  $portal-props: (
5065
4814
  'font-family': "unset",
5066
4815
  'font-size': "unset",
@@ -5078,8 +4827,7 @@ $portal-props: (
5078
4827
  'transition-mode': "unset",
5079
4828
  'transition-property': unset,
5080
4829
  'translate': "unset"
5081
- );
5082
-
4830
+ );
5083
4831
  $portal-projection-props: (
5084
4832
  'font-family': "unset",
5085
4833
  'font-size': "unset",
@@ -5097,8 +4845,7 @@ $portal-projection-props: (
5097
4845
  'transition-mode': "unset",
5098
4846
  'transition-property': unset,
5099
4847
  'translate': "unset"
5100
- );
5101
-
4848
+ );
5102
4849
  $progress-bar-props: (
5103
4850
  'font-family': "unset",
5104
4851
  'font-size': "unset",
@@ -5123,8 +4870,7 @@ $progress-bar-props: (
5123
4870
  'right-circle': unset,
5124
4871
  'segment-width': unset,
5125
4872
  'segment-gap': unset
5126
- );
5127
-
4873
+ );
5128
4874
  $progress-ring-props: (
5129
4875
  'font-family': unset,
5130
4876
  'font-size': unset,
@@ -5150,8 +4896,7 @@ $progress-ring-props: (
5150
4896
  'fill-color': unset,
5151
4897
  'foreground-color': unset,
5152
4898
  'shadow': unset
5153
- );
5154
-
4899
+ );
5155
4900
  $qr-code-props: (
5156
4901
  'font-family': "unset",
5157
4902
  'font-size': "unset",
@@ -5171,8 +4916,7 @@ $qr-code-props: (
5171
4916
  'translate': "unset",
5172
4917
  'background-color': unset,
5173
4918
  'foreground-color': unset
5174
- );
5175
-
4919
+ );
5176
4920
  $radio-props: (
5177
4921
  'font-family': unset,
5178
4922
  'font-size': unset,
@@ -5202,8 +4946,7 @@ $radio-props: (
5202
4946
  'focus-ring-outward-offset': unset,
5203
4947
  'foreground-color': unset,
5204
4948
  'shadow': unset
5205
- );
5206
-
4949
+ );
5207
4950
  $radio-group-props: (
5208
4951
  'font-family': "unset",
5209
4952
  'font-size': "unset",
@@ -5228,8 +4971,7 @@ $radio-group-props: (
5228
4971
  'border-width': unset,
5229
4972
  'foreground-color': unset,
5230
4973
  'shadow': unset
5231
- );
5232
-
4974
+ );
5233
4975
  $rating-props: (
5234
4976
  'font-family': "unset",
5235
4977
  'font-size': "unset",
@@ -5254,8 +4996,7 @@ $rating-props: (
5254
4996
  'border-width': unset,
5255
4997
  'foreground-color': unset,
5256
4998
  'shadow': unset
5257
- );
5258
-
4999
+ );
5259
5000
  $repeat-button-props: (
5260
5001
  'font-family': var(--retro-typography-button-font-family),
5261
5002
  'font-size': var(--retro-typography-button-font-size),
@@ -5284,8 +5025,7 @@ $repeat-button-props: (
5284
5025
  'progress-thickness': var(--retro-layout-thickness),
5285
5026
  'shadow': var(--retro-elevation-none),
5286
5027
  'width': auto
5287
- );
5288
-
5028
+ );
5289
5029
  $resize-adorner-props: (
5290
5030
  'font-family': "unset",
5291
5031
  'font-size': "unset",
@@ -5309,8 +5049,7 @@ $resize-adorner-props: (
5309
5049
  'border-width': unset,
5310
5050
  'thumb-background-color': unset,
5311
5051
  'thumb-border-radius': unset
5312
- );
5313
-
5052
+ );
5314
5053
  $ribbon-props: (
5315
5054
  'font-family': unset,
5316
5055
  'font-size': unset,
@@ -5336,8 +5075,7 @@ $ribbon-props: (
5336
5075
  'font': unset,
5337
5076
  'foreground-color': unset,
5338
5077
  'shadow': unset
5339
- );
5340
-
5078
+ );
5341
5079
  $rich-text-box-props: (
5342
5080
  'font-family': unset,
5343
5081
  'font-size': unset,
@@ -5365,8 +5103,7 @@ $rich-text-box-props: (
5365
5103
  'height': unset,
5366
5104
  'shadow': unset,
5367
5105
  'toolbox-border-color': unset
5368
- );
5369
-
5106
+ );
5370
5107
  $rich-text-box-toolbox-props: (
5371
5108
  'font-family': "unset",
5372
5109
  'font-size': "unset",
@@ -5392,8 +5129,7 @@ $rich-text-box-toolbox-props: (
5392
5129
  'foreground-color': unset,
5393
5130
  'orientation': unset,
5394
5131
  'shadow': unset
5395
- );
5396
-
5132
+ );
5397
5133
  $ripple-props: (
5398
5134
  'font-family': "unset",
5399
5135
  'font-size': "unset",
@@ -5412,8 +5148,7 @@ $ripple-props: (
5412
5148
  'transition-property': unset,
5413
5149
  'translate': "unset",
5414
5150
  'background-color': unset
5415
- );
5416
-
5151
+ );
5417
5152
  $router-props: (
5418
5153
  'font-family': "unset",
5419
5154
  'font-size': "unset",
@@ -5431,8 +5166,7 @@ $router-props: (
5431
5166
  'transition-mode': "unset",
5432
5167
  'transition-property': unset,
5433
5168
  'translate': "unset"
5434
- );
5435
-
5169
+ );
5436
5170
  $router-anchor-props: (
5437
5171
  'font-family': "unset",
5438
5172
  'font-size': "unset",
@@ -5453,8 +5187,7 @@ $router-anchor-props: (
5453
5187
  'background-color': var(--retro-scheme-transparent),
5454
5188
  'border-color': var(--retro-scheme-contrast),
5455
5189
  'foreground-color': var(--retro-scheme-foreground)
5456
- );
5457
-
5190
+ );
5458
5191
  $router-link-props: (
5459
5192
  'font-family': "unset",
5460
5193
  'font-size': "unset",
@@ -5472,8 +5205,7 @@ $router-link-props: (
5472
5205
  'transition-mode': "unset",
5473
5206
  'transition-property': unset,
5474
5207
  'translate': "unset"
5475
- );
5476
-
5208
+ );
5477
5209
  $router-outlet-props: (
5478
5210
  'font-family': "unset",
5479
5211
  'font-size': "unset",
@@ -5491,8 +5223,7 @@ $router-outlet-props: (
5491
5223
  'transition-mode': "unset",
5492
5224
  'transition-property': unset,
5493
5225
  'translate': "unset"
5494
- );
5495
-
5226
+ );
5496
5227
  $scale-props: (
5497
5228
  'font-family': unset,
5498
5229
  'font-size': unset,
@@ -5510,8 +5241,7 @@ $scale-props: (
5510
5241
  'transition-mode': unset,
5511
5242
  'transition-property': unset,
5512
5243
  'translate': unset
5513
- );
5514
-
5244
+ );
5515
5245
  $scroll-props: (
5516
5246
  'font-family': "unset",
5517
5247
  'font-size': "unset",
@@ -5529,8 +5259,7 @@ $scroll-props: (
5529
5259
  'transition-mode': "unset",
5530
5260
  'transition-property': unset,
5531
5261
  'translate': "unset"
5532
- );
5533
-
5262
+ );
5534
5263
  $search-box-props: (
5535
5264
  'font-family': var(--retro-font-family),
5536
5265
  'font-size': var(--retro-typography-body1-font-size),
@@ -5561,8 +5290,7 @@ $search-box-props: (
5561
5290
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5562
5291
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5563
5292
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5564
- );
5565
-
5293
+ );
5566
5294
  $segment-props: (
5567
5295
  'font-family': "unset",
5568
5296
  'font-size': "unset",
@@ -5592,8 +5320,7 @@ $segment-props: (
5592
5320
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
5593
5321
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
5594
5322
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
5595
- );
5596
-
5323
+ );
5597
5324
  $segment-item-props: (
5598
5325
  'font-family': unset,
5599
5326
  'font-size': unset,
@@ -5628,8 +5355,7 @@ $segment-item-props: (
5628
5355
  'color-hover': unset,
5629
5356
  'padding-end': unset,
5630
5357
  'padding-start': unset
5631
- );
5632
-
5358
+ );
5633
5359
  $select-props: (
5634
5360
  'font-family': unset,
5635
5361
  'font-size': unset,
@@ -5654,8 +5380,7 @@ $select-props: (
5654
5380
  'border-width': unset,
5655
5381
  'foreground-color': unset,
5656
5382
  'shadow': unset
5657
- );
5658
-
5383
+ );
5659
5384
  $select-item-props: (
5660
5385
  'font-family': unset,
5661
5386
  'font-size': unset,
@@ -5680,8 +5405,7 @@ $select-item-props: (
5680
5405
  'border-width': unset,
5681
5406
  'foreground-color': unset,
5682
5407
  'shadow': unset
5683
- );
5684
-
5408
+ );
5685
5409
  $select-item-group-props: (
5686
5410
  'font-family': unset,
5687
5411
  'font-size': unset,
@@ -5706,8 +5430,7 @@ $select-item-group-props: (
5706
5430
  'border-width': unset,
5707
5431
  'foreground-color': unset,
5708
5432
  'shadow': unset
5709
- );
5710
-
5433
+ );
5711
5434
  $signature-pad-props: (
5712
5435
  'font-family': unset,
5713
5436
  'font-size': unset,
@@ -5732,8 +5455,7 @@ $signature-pad-props: (
5732
5455
  'border-width': unset,
5733
5456
  'foreground-color': unset,
5734
5457
  'shadow': unset
5735
- );
5736
-
5458
+ );
5737
5459
  $skeleton-props: (
5738
5460
  'font-family': "unset",
5739
5461
  'font-size': "unset",
@@ -5757,8 +5479,7 @@ $skeleton-props: (
5757
5479
  'border-style': unset,
5758
5480
  'border-width': unset,
5759
5481
  'foreground-color': unset
5760
- );
5761
-
5482
+ );
5762
5483
  $slider-props: (
5763
5484
  'font-family': unset,
5764
5485
  'font-size': unset,
@@ -5819,8 +5540,7 @@ $slider-props: (
5819
5540
  'tooltip-transition-mode': unset,
5820
5541
  'tooltip-transition-property': unset,
5821
5542
  'track-size': unset
5822
- );
5823
-
5543
+ );
5824
5544
  $slider2-props: (
5825
5545
  'font-family': "unset",
5826
5546
  'font-size': "unset",
@@ -5838,8 +5558,7 @@ $slider2-props: (
5838
5558
  'transition-mode': "unset",
5839
5559
  'transition-property': unset,
5840
5560
  'translate': "unset"
5841
- );
5842
-
5561
+ );
5843
5562
  $slider2thumb-props: (
5844
5563
  'font-family': "unset",
5845
5564
  'font-size': "unset",
@@ -5858,8 +5577,7 @@ $slider2thumb-props: (
5858
5577
  'transition-property': unset,
5859
5578
  'translate': "unset",
5860
5579
  'size': unset
5861
- );
5862
-
5580
+ );
5863
5581
  $spacer-props: (
5864
5582
  'font-family': "unset",
5865
5583
  'font-size': "unset",
@@ -5877,8 +5595,7 @@ $spacer-props: (
5877
5595
  'transition-mode': "unset",
5878
5596
  'transition-property': unset,
5879
5597
  'translate': "unset"
5880
- );
5881
-
5598
+ );
5882
5599
  $split-props: (
5883
5600
  'font-family': "unset",
5884
5601
  'font-size': "unset",
@@ -5906,8 +5623,7 @@ $split-props: (
5906
5623
  'thumb-border-color': var(--retro-scheme-highlight),
5907
5624
  'thumb-border-radius': var(--retro-layout-radius),
5908
5625
  'thumb-foreground-color': var(--retro-scheme-foreground)
5909
- );
5910
-
5626
+ );
5911
5627
  $split-button-props: (
5912
5628
  'font-family': var(--retro-typography-button-font-family),
5913
5629
  'font-size': var(--retro-typography-button-font-size),
@@ -5936,8 +5652,7 @@ $split-button-props: (
5936
5652
  'progress-thickness': var(--retro-layout-thickness),
5937
5653
  'shadow': var(--retro-elevation-none),
5938
5654
  'width': auto
5939
- );
5940
-
5655
+ );
5941
5656
  $stack-props: (
5942
5657
  'font-family': "unset",
5943
5658
  'font-size': "unset",
@@ -5955,8 +5670,7 @@ $stack-props: (
5955
5670
  'transition-mode': "unset",
5956
5671
  'transition-property': unset,
5957
5672
  'translate': "unset"
5958
- );
5959
-
5673
+ );
5960
5674
  $sticky-props: (
5961
5675
  'font-family': "unset",
5962
5676
  'font-size': "unset",
@@ -5976,8 +5690,7 @@ $sticky-props: (
5976
5690
  'translate': "unset",
5977
5691
  'left': unset,
5978
5692
  'top': unset
5979
- );
5980
-
5693
+ );
5981
5694
  $success-state-props: (
5982
5695
  'font-family': "unset",
5983
5696
  'font-size': "unset",
@@ -5986,15 +5699,16 @@ $success-state-props: (
5986
5699
  'font-letter-spacing': "unset",
5987
5700
  'font-text-decoration': "unset",
5988
5701
  'font-text-transform': "unset",
5989
- 'padding-top': "unset",
5990
- 'padding-right': "unset",
5991
- 'padding-bottom': "unset",
5992
- 'padding-left': "unset",
5993
- 'gap': "unset",
5702
+ 'padding-top': calc(var(--retro-layout-space) * 2),
5703
+ 'padding-right': calc(var(--retro-layout-space) * 2),
5704
+ 'padding-bottom': calc(var(--retro-layout-space) * 2),
5705
+ 'padding-left': calc(var(--retro-layout-space) * 2),
5706
+ 'gap': var(--retro-layout-space),
5994
5707
  'transition-duration': "unset",
5995
5708
  'transition-mode': "unset",
5996
5709
  'transition-property': unset,
5997
5710
  'translate': "unset",
5711
+ 'foreground-color': unset,
5998
5712
  'header-font-family': var(--retro-font-family),
5999
5713
  'header-font-letter-spacing': var(--retro-typography-body1-letter-spacing),
6000
5714
  'header-font-line-height': var(--retro-typography-body1-line-height),
@@ -6002,8 +5716,7 @@ $success-state-props: (
6002
5716
  'header-font-text-decoration': var(--retro-typography-body1-text-decoration),
6003
5717
  'header-font-text-transform': var(--retro-typography-body1-text-transform),
6004
5718
  'header-font-weight': var(--retro-typography-body1-font-weight)
6005
- );
6006
-
5719
+ );
6007
5720
  $summary-props: (
6008
5721
  'font-family': "unset",
6009
5722
  'font-size': "unset",
@@ -6021,8 +5734,7 @@ $summary-props: (
6021
5734
  'transition-mode': "unset",
6022
5735
  'transition-property': unset,
6023
5736
  'translate': "unset"
6024
- );
6025
-
5737
+ );
6026
5738
  $swipe-props: (
6027
5739
  'font-family': "unset",
6028
5740
  'font-size': "unset",
@@ -6040,8 +5752,7 @@ $swipe-props: (
6040
5752
  'transition-mode': "unset",
6041
5753
  'transition-property': unset,
6042
5754
  'translate': "unset"
6043
- );
6044
-
5755
+ );
6045
5756
  $tab-props: (
6046
5757
  'font-family': var(--retro-font-family),
6047
5758
  'font-size': var(--retro-typography-body1-font-size),
@@ -6078,8 +5789,7 @@ $tab-props: (
6078
5789
  'strip-padding-left': 0,
6079
5790
  'strip-padding-right': 0,
6080
5791
  'strip-padding-top': 0
6081
- );
6082
-
5792
+ );
6083
5793
  $tab-item-props: (
6084
5794
  'font-family': "unset",
6085
5795
  'font-size': "unset",
@@ -6100,8 +5810,7 @@ $tab-item-props: (
6100
5810
  'border-radius': var(--retro-layout-radius),
6101
5811
  'border-style': solid,
6102
5812
  'border-width': var(--retro-layout-space)
6103
- );
6104
-
5813
+ );
6105
5814
  $tab-panel-props: (
6106
5815
  'font-family': "unset",
6107
5816
  'font-size': "unset",
@@ -6120,8 +5829,7 @@ $tab-panel-props: (
6120
5829
  'transition-property': unset,
6121
5830
  'translate': "unset",
6122
5831
  'background-color': var(--retro-scheme-background)
6123
- );
6124
-
5832
+ );
6125
5833
  $tab-strip-props: (
6126
5834
  'font-family': var(--retro-font-family),
6127
5835
  'font-size': var(--retro-typography-button-font-size),
@@ -6145,8 +5853,7 @@ $tab-strip-props: (
6145
5853
  'border-style': solid,
6146
5854
  'border-width': 0,
6147
5855
  'foreground-color': unset
6148
- );
6149
-
5856
+ );
6150
5857
  $tab-strip-item-props: (
6151
5858
  'font-family': var(--retro-font-family),
6152
5859
  'font-size': var(--retro-typography-button-font-size),
@@ -6173,8 +5880,7 @@ $tab-strip-item-props: (
6173
5880
  'shadow': var(--retro-elevation-none),
6174
5881
  'size': 56px,
6175
5882
  'thickness': 4px
6176
- );
6177
-
5883
+ );
6178
5884
  $table-props: (
6179
5885
  'font-family': var(--retro-font-family),
6180
5886
  'font-size': var(--retro-typography-body1-font-size),
@@ -6199,8 +5905,7 @@ $table-props: (
6199
5905
  'border-width': var(--retro-layout-thickness),
6200
5906
  'foreground-color': var(--retro-scheme-foreground),
6201
5907
  'shadow': var(--retro-elevation-bold)
6202
- );
6203
-
5908
+ );
6204
5909
  $table-body-props: (
6205
5910
  'font-family': var(--retro-font-family),
6206
5911
  'font-size': var(--retro-typography-body1-font-size),
@@ -6225,8 +5930,7 @@ $table-body-props: (
6225
5930
  'border-width': 0px,
6226
5931
  'foreground-color': var(--retro-scheme-foreground),
6227
5932
  'shadow': var(--retro-elevation-none)
6228
- );
6229
-
5933
+ );
6230
5934
  $table-cell-props: (
6231
5935
  'font-family': var(--retro-font-family),
6232
5936
  'font-size': var(--retro-typography-body1-font-size),
@@ -6250,8 +5954,32 @@ $table-cell-props: (
6250
5954
  'border-width': 0px,
6251
5955
  'foreground-color': var(--retro-color-neutral-50),
6252
5956
  'shadow': var(--retro-elevation-none)
6253
- );
6254
-
5957
+ );
5958
+ $table-footer-props: (
5959
+ 'font-family': var(--retro-font-family),
5960
+ 'font-size': var(--retro-typography-body2-font-size),
5961
+ 'font-line-height': "unset",
5962
+ 'font-weight': bold,
5963
+ 'font-letter-spacing': "unset",
5964
+ 'font-text-decoration': "unset",
5965
+ 'font-text-transform': "unset",
5966
+ 'padding-top': calc(var(--retro-layout-space) / 2),
5967
+ 'padding-right': var(--retro-layout-space),
5968
+ 'padding-bottom': calc(var(--retro-layout-space) / 2),
5969
+ 'padding-left': var(--retro-layout-space),
5970
+ 'gap': var(--retro-layout-space),
5971
+ 'transition-duration': .2s,
5972
+ 'transition-mode': ease,
5973
+ 'transition-property': all,
5974
+ 'translate': "unset",
5975
+ 'background-color': var(--retro-scheme-background),
5976
+ 'border-color': var(--retro-scheme-contrast),
5977
+ 'border-radius': var(--retro-layout-radius),
5978
+ 'border-style': solid,
5979
+ 'border-width': 0px,
5980
+ 'foreground-color': var(--retro-scheme-foreground),
5981
+ 'shadow': var(--retro-elevation-none)
5982
+ );
6255
5983
  $table-header-props: (
6256
5984
  'font-family': var(--retro-font-family),
6257
5985
  'font-size': var(--retro-typography-body2-font-size),
@@ -6276,8 +6004,7 @@ $table-header-props: (
6276
6004
  'border-width': 0px,
6277
6005
  'foreground-color': var(--retro-scheme-foreground),
6278
6006
  'shadow': var(--retro-elevation-none)
6279
- );
6280
-
6007
+ );
6281
6008
  $table-row-props: (
6282
6009
  'font-family': var(--retro-font-family),
6283
6010
  'font-size': var(--retro-typography-body1-font-size),
@@ -6302,8 +6029,7 @@ $table-row-props: (
6302
6029
  'border-width': 0px,
6303
6030
  'foreground-color': var(--retro-color-neutral-50),
6304
6031
  'shadow': var(--retro-elevation-none)
6305
- );
6306
-
6032
+ );
6307
6033
  $text-props: (
6308
6034
  'font-family': var(--retro-font-family),
6309
6035
  'font-size': var(--retro-typography-body1-font-size),
@@ -6330,8 +6056,7 @@ $text-props: (
6330
6056
  'font-transform': var(--retro-typography-body1-text-transform),
6331
6057
  'foreground-color': var(--retro-scheme-foreground),
6332
6058
  'shadow': var(--retro-elevation-none)
6333
- );
6334
-
6059
+ );
6335
6060
  $text-box-props: (
6336
6061
  'font-family': var(--retro-font-family),
6337
6062
  'font-size': var(--retro-typography-body1-font-size),
@@ -6362,8 +6087,7 @@ $text-box-props: (
6362
6087
  'shadow-offset-x': var(--retro-elevation-semilight-offset-x-0),
6363
6088
  'shadow-offset-y': var(--retro-elevation-semilight-offset-y-0),
6364
6089
  'shadow-spread': var(--retro-elevation-semilight-spread-0)
6365
- );
6366
-
6090
+ );
6367
6091
  $text-format-props: (
6368
6092
  'font-family': "unset",
6369
6093
  'font-size': "unset",
@@ -6381,8 +6105,7 @@ $text-format-props: (
6381
6105
  'transition-mode': "unset",
6382
6106
  'transition-property': unset,
6383
6107
  'translate': "unset"
6384
- );
6385
-
6108
+ );
6386
6109
  $tick-bar-props: (
6387
6110
  'font-family': unset,
6388
6111
  'font-size': unset,
@@ -6411,8 +6134,7 @@ $tick-bar-props: (
6411
6134
  'tick-size': unset,
6412
6135
  'tick-text-gap': unset,
6413
6136
  'tick-width': unset
6414
- );
6415
-
6137
+ );
6416
6138
  $tile-list-props: (
6417
6139
  'font-family': "unset",
6418
6140
  'font-size': "unset",
@@ -6431,8 +6153,7 @@ $tile-list-props: (
6431
6153
  'transition-property': unset,
6432
6154
  'translate': "unset",
6433
6155
  'gutter-size': unset
6434
- );
6435
-
6156
+ );
6436
6157
  $tile-list-item-props: (
6437
6158
  'font-family': "unset",
6438
6159
  'font-size': "unset",
@@ -6457,8 +6178,7 @@ $tile-list-item-props: (
6457
6178
  'dragover-border-color': unset,
6458
6179
  'header-bg-color': unset,
6459
6180
  'header-padding': unset
6460
- );
6461
-
6181
+ );
6462
6182
  $time-box-props: (
6463
6183
  'font-family': unset,
6464
6184
  'font-size': unset,
@@ -6481,14 +6201,12 @@ $time-box-props: (
6481
6201
  'border-radius': unset,
6482
6202
  'border-style': unset,
6483
6203
  'border-width': unset,
6484
- 'calnedar-item-background-color': unset,
6485
6204
  'color': unset,
6486
6205
  'foreground-color': unset,
6487
6206
  'height': unset,
6488
6207
  'menu-item-border-radius': unset,
6489
6208
  'shadow': unset
6490
- );
6491
-
6209
+ );
6492
6210
  $title-bar-props: (
6493
6211
  'font-family': var(--retro-font-family),
6494
6212
  'font-size': var(--retro-typography-headline4-font-size),
@@ -6506,8 +6224,7 @@ $title-bar-props: (
6506
6224
  'transition-mode': unset,
6507
6225
  'transition-property': unset,
6508
6226
  'translate': unset
6509
- );
6510
-
6227
+ );
6511
6228
  $title-layout-props: (
6512
6229
  'font-family': "unset",
6513
6230
  'font-size': "unset",
@@ -6526,8 +6243,7 @@ $title-layout-props: (
6526
6243
  'transition-property': unset,
6527
6244
  'translate': "unset",
6528
6245
  'background-color': unset
6529
- );
6530
-
6246
+ );
6531
6247
  $toast-props: (
6532
6248
  'font-family': unset,
6533
6249
  'font-size': unset,
@@ -6554,8 +6270,7 @@ $toast-props: (
6554
6270
  'foreground-color': unset,
6555
6271
  'progress-ring-fill-color': unset,
6556
6272
  'shadow': unset
6557
- );
6558
-
6273
+ );
6559
6274
  $toggle-button-props: (
6560
6275
  'font-family': var(--retro-font-family),
6561
6276
  'font-size': var(--retro-typography-button-font-size),
@@ -6583,8 +6298,7 @@ $toggle-button-props: (
6583
6298
  'line-height': calc(var(--toggle-button-font-line-height) - 4px),
6584
6299
  'shadow': var(--retro-elevation-semilight),
6585
6300
  'width': auto
6586
- );
6587
-
6301
+ );
6588
6302
  $toggle-switch-props: (
6589
6303
  'font-family': unset,
6590
6304
  'font-size': unset,
@@ -6607,8 +6321,7 @@ $toggle-switch-props: (
6607
6321
  'border-style': solid,
6608
6322
  'border-width': var(--retro-layout-thickness),
6609
6323
  'shadow': var(--elevation-light-semilight)
6610
- );
6611
-
6324
+ );
6612
6325
  $toggletip-props: (
6613
6326
  'font-family': "unset",
6614
6327
  'font-size': "unset",
@@ -6627,8 +6340,7 @@ $toggletip-props: (
6627
6340
  'transition-property': unset,
6628
6341
  'translate': "unset",
6629
6342
  'background-color': unset
6630
- );
6631
-
6343
+ );
6632
6344
  $toolbar-props: (
6633
6345
  'font-family': var(--retro-font-family),
6634
6346
  'font-size': 24px,
@@ -6659,8 +6371,7 @@ $toolbar-props: (
6659
6371
  'shadow-offset-x': var(--retro-elevation-bold-offset-x-0),
6660
6372
  'shadow-offset-y': var(--retro-elevation-bold-offset-y-0),
6661
6373
  'shadow-spread': var(--retro-elevation-bold-spread-0)
6662
- );
6663
-
6374
+ );
6664
6375
  $tooltip-props: (
6665
6376
  'font-family': unset,
6666
6377
  'font-size': unset,
@@ -6686,8 +6397,7 @@ $tooltip-props: (
6686
6397
  'foreground-color': unset,
6687
6398
  'max-width': unset,
6688
6399
  'shadow': unset
6689
- );
6690
-
6400
+ );
6691
6401
  $tree-props: (
6692
6402
  'font-family': unset,
6693
6403
  'font-size': unset,
@@ -6705,8 +6415,7 @@ $tree-props: (
6705
6415
  'transition-mode': "unset",
6706
6416
  'transition-property': unset,
6707
6417
  'translate': "unset"
6708
- );
6709
-
6418
+ );
6710
6419
  $tree-item-props: (
6711
6420
  'font-family': unset,
6712
6421
  'font-size': unset,
@@ -6730,9 +6439,11 @@ $tree-item-props: (
6730
6439
  'border-style': unset,
6731
6440
  'border-width': unset,
6732
6441
  'foreground-color': unset,
6733
- 'shadow': unset
6734
- );
6735
-
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
+ );
6736
6447
  $up-down-spinner-props: (
6737
6448
  'font-family': "unset",
6738
6449
  'font-size': "unset",
@@ -6750,8 +6461,7 @@ $up-down-spinner-props: (
6750
6461
  'transition-mode': "unset",
6751
6462
  'transition-property': unset,
6752
6463
  'translate': "unset"
6753
- );
6754
-
6464
+ );
6755
6465
  $video-props: (
6756
6466
  'font-family': unset,
6757
6467
  'font-size': unset,
@@ -6784,8 +6494,7 @@ $video-props: (
6784
6494
  'legend-font-text-transform': unset,
6785
6495
  'legend-font-weight': unset,
6786
6496
  'shadow': unset
6787
- );
6788
-
6497
+ );
6789
6498
  $virtualize-props: (
6790
6499
  'font-family': "unset",
6791
6500
  'font-size': "unset",
@@ -6803,8 +6512,7 @@ $virtualize-props: (
6803
6512
  'transition-mode': "unset",
6804
6513
  'transition-property': unset,
6805
6514
  'translate': "unset"
6806
- );
6807
-
6515
+ );
6808
6516
  $wizard-props: (
6809
6517
  'font-family': "unset",
6810
6518
  'font-size': "unset",
@@ -6823,8 +6531,7 @@ $wizard-props: (
6823
6531
  'transition-property': unset,
6824
6532
  'translate': "unset",
6825
6533
  'border-color': unset
6826
- );
6827
-
6534
+ );
6828
6535
  $wizard-step-props: (
6829
6536
  'font-family': "unset",
6830
6537
  'font-size': "unset",
@@ -6842,8 +6549,7 @@ $wizard-step-props: (
6842
6549
  'transition-mode': "unset",
6843
6550
  'transition-property': unset,
6844
6551
  'translate': "unset"
6845
- );
6846
-
6552
+ );
6847
6553
  $wrap-props: (
6848
6554
  'font-family': "unset",
6849
6555
  'font-size': "unset",