@breadstone/mosaik-themes 0.0.12-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. package/Index.d.ts +25 -0
  2. package/Index.d.ts.map +1 -0
  3. package/Index.js +16 -0
  4. package/Index.js.map +1 -0
  5. package/LICENSE +21 -0
  6. package/Themes/___bootstrap-tokens.css +80 -0
  7. package/Themes/___cosmopolitan-tokens.css +208 -0
  8. package/Themes/___default-tokens.css +8 -0
  9. package/Themes/___fluent-tokens.css +19 -0
  10. package/Themes/___joy-tokens.css +496 -0
  11. package/Themes/___material-tokens.css +11 -0
  12. package/Themes/___retro-tokens.css +386 -0
  13. package/Themes/bootstrap-tokens.scss +78 -0
  14. package/Themes/bootstrap.scss +167 -0
  15. package/Themes/cosmopolitan-tokens.scss +206 -0
  16. package/Themes/cosmopolitan.scss +6362 -0
  17. package/Themes/default-tokens.scss +6 -0
  18. package/Themes/default.scss +5589 -0
  19. package/Themes/fluent-tokens.scss +17 -0
  20. package/Themes/fluent.scss +1641 -0
  21. package/Themes/joy-tokens.scss +494 -0
  22. package/Themes/joy.scss +7093 -0
  23. package/Themes/material-tokens.scss +9 -0
  24. package/Themes/material.scss +98 -0
  25. package/Themes/retro-tokens.scss +384 -0
  26. package/Themes/retro.scss +6856 -0
  27. package/Theming/BootstrapTheme.d.ts +10 -0
  28. package/Theming/BootstrapTheme.d.ts.map +1 -0
  29. package/Theming/BootstrapTheme.js +135 -0
  30. package/Theming/BootstrapTheme.js.map +1 -0
  31. package/Theming/CosmopolitanTheme.d.ts +11 -0
  32. package/Theming/CosmopolitanTheme.d.ts.map +1 -0
  33. package/Theming/CosmopolitanTheme.js +124 -0
  34. package/Theming/CosmopolitanTheme.js.map +1 -0
  35. package/Theming/FluentTheme.d.ts +2 -0
  36. package/Theming/FluentTheme.d.ts.map +1 -0
  37. package/Theming/FluentTheme.js +9 -0
  38. package/Theming/FluentTheme.js.map +1 -0
  39. package/Theming/JoyTheme.d.ts +11 -0
  40. package/Theming/JoyTheme.d.ts.map +1 -0
  41. package/Theming/JoyTheme.js +434 -0
  42. package/Theming/JoyTheme.js.map +1 -0
  43. package/Theming/MaterialTheme.d.ts +2 -0
  44. package/Theming/MaterialTheme.d.ts.map +1 -0
  45. package/Theming/MaterialTheme.js +9 -0
  46. package/Theming/MaterialTheme.js.map +1 -0
  47. package/Theming/RetroTheme.d.ts +11 -0
  48. package/Theming/RetroTheme.d.ts.map +1 -0
  49. package/Theming/RetroTheme.js +380 -0
  50. package/Theming/RetroTheme.js.map +1 -0
  51. package/Theming/ThemeFactory.d.ts +38 -0
  52. package/Theming/ThemeFactory.d.ts.map +1 -0
  53. package/Theming/ThemeFactory.js +58 -0
  54. package/Theming/ThemeFactory.js.map +1 -0
  55. package/Theming/ThemeGenerator.d.ts +27 -0
  56. package/Theming/ThemeGenerator.d.ts.map +1 -0
  57. package/Theming/ThemeGenerator.js +179 -0
  58. package/Theming/ThemeGenerator.js.map +1 -0
  59. package/Theming/ThemeObserver.d.ts +56 -0
  60. package/Theming/ThemeObserver.d.ts.map +1 -0
  61. package/Theming/ThemeObserver.js +134 -0
  62. package/Theming/ThemeObserver.js.map +1 -0
  63. package/Theming/Tokens/BootstrapTokens.d.ts +82 -0
  64. package/Theming/Tokens/BootstrapTokens.d.ts.map +1 -0
  65. package/Theming/Tokens/BootstrapTokens.js +82 -0
  66. package/Theming/Tokens/BootstrapTokens.js.map +1 -0
  67. package/Theming/Tokens/CosmopolitanTokens.d.ts +210 -0
  68. package/Theming/Tokens/CosmopolitanTokens.d.ts.map +1 -0
  69. package/Theming/Tokens/CosmopolitanTokens.js +210 -0
  70. package/Theming/Tokens/CosmopolitanTokens.js.map +1 -0
  71. package/Theming/Tokens/DefaultTokens.d.ts +10 -0
  72. package/Theming/Tokens/DefaultTokens.d.ts.map +1 -0
  73. package/Theming/Tokens/DefaultTokens.js +10 -0
  74. package/Theming/Tokens/DefaultTokens.js.map +1 -0
  75. package/Theming/Tokens/FluentTokens.d.ts +21 -0
  76. package/Theming/Tokens/FluentTokens.d.ts.map +1 -0
  77. package/Theming/Tokens/FluentTokens.js +21 -0
  78. package/Theming/Tokens/FluentTokens.js.map +1 -0
  79. package/Theming/Tokens/JoyTokens.d.ts +498 -0
  80. package/Theming/Tokens/JoyTokens.d.ts.map +1 -0
  81. package/Theming/Tokens/JoyTokens.js +498 -0
  82. package/Theming/Tokens/JoyTokens.js.map +1 -0
  83. package/Theming/Tokens/MaterialTokens.d.ts +13 -0
  84. package/Theming/Tokens/MaterialTokens.d.ts.map +1 -0
  85. package/Theming/Tokens/MaterialTokens.js +13 -0
  86. package/Theming/Tokens/MaterialTokens.js.map +1 -0
  87. package/Theming/Tokens/RetroTokens.d.ts +388 -0
  88. package/Theming/Tokens/RetroTokens.d.ts.map +1 -0
  89. package/Theming/Tokens/RetroTokens.js +388 -0
  90. package/Theming/Tokens/RetroTokens.js.map +1 -0
  91. package/Theming/Utils/CssAspectRatio.d.ts +14 -0
  92. package/Theming/Utils/CssAspectRatio.d.ts.map +1 -0
  93. package/Theming/Utils/CssAspectRatio.js +31 -0
  94. package/Theming/Utils/CssAspectRatio.js.map +1 -0
  95. package/Theming/Utils/CssColor.d.ts +21 -0
  96. package/Theming/Utils/CssColor.d.ts.map +1 -0
  97. package/Theming/Utils/CssColor.js +16 -0
  98. package/Theming/Utils/CssColor.js.map +1 -0
  99. package/Theming/Utils/CssLength.d.ts +47 -0
  100. package/Theming/Utils/CssLength.d.ts.map +1 -0
  101. package/Theming/Utils/CssLength.js +116 -0
  102. package/Theming/Utils/CssLength.js.map +1 -0
  103. package/Theming/Utils/CssShadow.d.ts +27 -0
  104. package/Theming/Utils/CssShadow.d.ts.map +1 -0
  105. package/Theming/Utils/CssShadow.js +45 -0
  106. package/Theming/Utils/CssShadow.js.map +1 -0
  107. package/Theming/Utils/CssTime.d.ts +18 -0
  108. package/Theming/Utils/CssTime.d.ts.map +1 -0
  109. package/Theming/Utils/CssTime.js +24 -0
  110. package/Theming/Utils/CssTime.js.map +1 -0
  111. package/Theming/Utils/ITheme.d.ts +27 -0
  112. package/Theming/Utils/ITheme.d.ts.map +1 -0
  113. package/Theming/Utils/ITheme.js +34 -0
  114. package/Theming/Utils/ITheme.js.map +1 -0
  115. package/Theming/Utils/IThemeElevation.d.ts +10 -0
  116. package/Theming/Utils/IThemeElevation.d.ts.map +1 -0
  117. package/Theming/Utils/IThemeElevation.js +3 -0
  118. package/Theming/Utils/IThemeElevation.js.map +1 -0
  119. package/Theming/Utils/IThemeLayout.d.ts +12 -0
  120. package/Theming/Utils/IThemeLayout.d.ts.map +1 -0
  121. package/Theming/Utils/IThemeLayout.js +3 -0
  122. package/Theming/Utils/IThemeLayout.js.map +1 -0
  123. package/Theming/Utils/IThemeMetadata.d.ts +15 -0
  124. package/Theming/Utils/IThemeMetadata.d.ts.map +1 -0
  125. package/Theming/Utils/IThemeMetadata.js +3 -0
  126. package/Theming/Utils/IThemeMetadata.js.map +1 -0
  127. package/Theming/Utils/IThemePalette.d.ts +17 -0
  128. package/Theming/Utils/IThemePalette.d.ts.map +1 -0
  129. package/Theming/Utils/IThemePalette.js +15 -0
  130. package/Theming/Utils/IThemePalette.js.map +1 -0
  131. package/Theming/Utils/IThemeScheme.d.ts +10 -0
  132. package/Theming/Utils/IThemeScheme.d.ts.map +1 -0
  133. package/Theming/Utils/IThemeScheme.js +3 -0
  134. package/Theming/Utils/IThemeScheme.js.map +1 -0
  135. package/Theming/Utils/IThemeTypography.d.ts +10 -0
  136. package/Theming/Utils/IThemeTypography.d.ts.map +1 -0
  137. package/Theming/Utils/IThemeTypography.js +3 -0
  138. package/Theming/Utils/IThemeTypography.js.map +1 -0
  139. package/Theming/Utils/IThemeTypographyFontType.d.ts +16 -0
  140. package/Theming/Utils/IThemeTypographyFontType.d.ts.map +1 -0
  141. package/Theming/Utils/IThemeTypographyFontType.js +3 -0
  142. package/Theming/Utils/IThemeTypographyFontType.js.map +1 -0
  143. package/package.json +29 -0
@@ -0,0 +1,9 @@
1
+ $name: "material";
2
+ $font-family: 'Inter', Roboto, Helvetica, sans-serif;
3
+ $layout-radius: 12px;
4
+ $layout-space: 8px;
5
+ $layout-thickness: 2px;
6
+ $color-light-primary: #6200EE;
7
+ $color-light-secondary: #3700B3;
8
+ $color-light-tertiary: #03DAC6;
9
+ $elevation-none: none;
@@ -0,0 +1,98 @@
1
+ @use 'sass:map';
2
+ @use 'sass:list';
3
+ @use 'sass:meta';
4
+
5
+ @mixin _generate-elevation-vars($map, $prefix, $mode) {
6
+ @each $key, $value in $map {
7
+ @if meta.type-of($value) == 'map' {
8
+ @each $level-key, $level-value in $value {
9
+ @each $part, $val in $level-value {
10
+ #{'--#{$prefix}-elevation-#{$mode}-#{$key}-#{$part}-#{$level-key}'}: #{$val};
11
+ }
12
+ }
13
+ } @else {
14
+ #{'--#{$prefix}-elevation-#{$mode}-#{$key}'}: #{$value};
15
+ }
16
+ }
17
+ }
18
+
19
+ @mixin _generate-elevation-composite($map, $prefix, $mode) {
20
+ @each $key, $value in $map {
21
+ @if meta.type-of($value) == 'map' {
22
+ $layers: ();
23
+ @each $layer-idx, $layer-token in $value {
24
+ $shadow: ();
25
+ @each $part in (offset-x, offset-y, blur, spread, color) {
26
+ $shadow: list.append($shadow, var(--#{$prefix}-elevation-#{$mode}-#{$key}-#{$part}-#{$layer-idx}), $separator: space);
27
+ }
28
+ $layers: list.append($layers, list.join($shadow, (), $separator: space), $separator: comma);
29
+ }
30
+ #{'--#{$prefix}-elevation-#{$mode}-#{$key}'}: #{$layers};
31
+ }
32
+ }
33
+ }
34
+
35
+ @mixin _remap-elevation-vars($map, $prefix, $mode) {
36
+ @each $key, $value in $map {
37
+ @if meta.type-of($value) == 'map' {
38
+ @each $level-key, $level-value in $value {
39
+ @each $part, $val in $level-value {
40
+ #{'--#{$prefix}-elevation-#{$key}-#{$part}-#{$level-key}'}: var(--#{$prefix}-elevation-#{$mode}-#{$key}-#{$part}-#{$level-key});
41
+ }
42
+ }
43
+ #{'--#{$prefix}-elevation-#{$key}'}: var(--#{$prefix}-elevation-#{$mode}-#{$key});
44
+ } @else {
45
+ #{'--#{$prefix}-elevation-#{$key}'}: var(--#{$prefix}-elevation-#{$mode}-#{$key});
46
+ }
47
+ }
48
+ }
49
+
50
+ @function box-shadow($x: 0px, $y: 0px, $blur: 0px, $spread: 0px, $color: rgba(0, 0, 0, 0.5), $inset: false) {
51
+ $shadow: #{$x} #{$y} #{$blur} #{$spread} #{$color};
52
+
53
+ @if $inset {
54
+ $shadow: inset $shadow;
55
+ }
56
+
57
+ @return $shadow;
58
+ }
59
+
60
+ @function box-shadow-with-color($shadows, $new-color) {
61
+ $output: ();
62
+
63
+ @each $shadow in $shadows {
64
+ $parts: ();
65
+ $color: null;
66
+
67
+ // break apart the shadow into components
68
+ @each $part in $shadow {
69
+ @if type-of($part) == 'color' {
70
+ $color: $part;
71
+ } @else {
72
+ $parts: append($parts, $part);
73
+ }
74
+ }
75
+
76
+ // append the new color in place of the original
77
+ $parts: append($parts, $new-color);
78
+ $output: append($output, $parts, comma);
79
+ }
80
+
81
+ @return $output;
82
+ }
83
+
84
+ $name: "material";
85
+ $font-family: 'Inter', Roboto, Helvetica, sans-serif;
86
+ $layout-radius: 12px;
87
+ $layout-space: 8px;
88
+ $layout-thickness: 2px;
89
+ $color-light-primary: #6200EE;
90
+ $color-light-secondary: #3700B3;
91
+ $color-light-tertiary: #03DAC6;
92
+ $elevation-none: none;
93
+
94
+
95
+
96
+ @mixin material-style($radius: $layout-radius, $thickness: $layout-thickness, $space: $layout-space) {
97
+ $theme: 'material';
98
+ }
@@ -0,0 +1,384 @@
1
+ $name: "retro";
2
+ $font-family: Nunito, sans-serif;
3
+ $layout-radius: 0px;
4
+ $layout-space: 10px;
5
+ $layout-thickness: 3px;
6
+ $scheme-light-background: #eaeaea;
7
+ $scheme-light-foreground: #3c454f;
8
+ $scheme-light-highlight: #d1d1d1;
9
+ $scheme-light-middlelight: #8a8a8a;
10
+ $scheme-light-lowlight: #5c5c5c;
11
+ $scheme-light-transparent: rgba(255, 255, 255, 0);
12
+ $scheme-light-semi-transparent: rgba(255, 255, 255, 0.67);
13
+ $scheme-light-disabled: #686868;
14
+ $scheme-light-contrast: #333333;
15
+ $scheme-dark-background: #151515;
16
+ $scheme-dark-foreground: #c3bab0;
17
+ $scheme-dark-highlight: #2e2e2e;
18
+ $scheme-dark-middlelight: #757575;
19
+ $scheme-dark-lowlight: #a3a3a3;
20
+ $scheme-dark-transparent: rgba(255, 255, 255, 0);
21
+ $scheme-dark-semi-transparent: rgba(0, 0, 0, 0.67);
22
+ $scheme-dark-disabled: #474747;
23
+ $scheme-dark-contrast: #ffffff;
24
+ $color-light-primary-0: #ffffff;
25
+ $color-light-primary-50: #f9f9f9;
26
+ $color-light-primary-100: #f2f2f2;
27
+ $color-light-primary-200: #e8e8e8;
28
+ $color-light-primary-300: #d8d8d8;
29
+ $color-light-primary-400: #b4b4b4;
30
+ $color-light-primary-500: #949494;
31
+ $color-light-primary-600: #6c6c6c;
32
+ $color-light-primary-700: #595959;
33
+ $color-light-primary-800: #3a3a3a;
34
+ $color-light-primary-900: #1a1a1a;
35
+ $color-light-secondary-0: #ffffff;
36
+ $color-light-secondary-50: #e1f3ef;
37
+ $color-light-secondary-100: #b5e0d6;
38
+ $color-light-secondary-200: #85cdbc;
39
+ $color-light-secondary-300: #57b9a2;
40
+ $color-light-secondary-400: #38a990;
41
+ $color-light-secondary-500: #24997e;
42
+ $color-light-secondary-600: #208c71;
43
+ $color-light-secondary-700: #1b7c62;
44
+ $color-light-secondary-800: #166c54;
45
+ $color-light-secondary-900: #0d503a;
46
+ $color-light-info-0: #ffffff;
47
+ $color-light-info-50: #e8eaf9;
48
+ $color-light-info-100: #c6c9f1;
49
+ $color-light-info-200: #9fa7e7;
50
+ $color-light-info-300: #7884dd;
51
+ $color-light-info-400: #5968d6;
52
+ $color-light-info-500: #394dcd;
53
+ $color-light-info-600: #3344c2;
54
+ $color-light-info-700: #293ab6;
55
+ $color-light-info-800: #202faa;
56
+ $color-light-info-900: #0a1a97;
57
+ $color-light-warning-0: #ffffff;
58
+ $color-light-warning-50: #fcfce5;
59
+ $color-light-warning-100: #f7f6bf;
60
+ $color-light-warning-200: #f1f294;
61
+ $color-light-warning-300: #ebec67;
62
+ $color-light-warning-400: #e5e741;
63
+ $color-light-warning-500: #dfe300;
64
+ $color-light-warning-600: #d1d100;
65
+ $color-light-warning-700: #bfba00;
66
+ $color-light-warning-800: #aea300;
67
+ $color-light-warning-900: #927c00;
68
+ $color-light-danger-0: #ffffff;
69
+ $color-light-danger-50: #fcecef;
70
+ $color-light-danger-100: #f8d0d5;
71
+ $color-light-danger-200: #e69fa1;
72
+ $color-light-danger-300: #d97b7d;
73
+ $color-light-danger-400: #e35f5f;
74
+ $color-light-danger-500: #e8524a;
75
+ $color-light-danger-600: #d94a47;
76
+ $color-light-danger-700: #c74141;
77
+ $color-light-danger-800: #b93c3a;
78
+ $color-light-danger-900: #ab322f;
79
+ $color-light-success-0: #ffffff;
80
+ $color-light-success-50: #e1f3ef;
81
+ $color-light-success-100: #b5e0d6;
82
+ $color-light-success-200: #85cdbc;
83
+ $color-light-success-300: #57b9a2;
84
+ $color-light-success-400: #38a990;
85
+ $color-light-success-500: #24997e;
86
+ $color-light-success-600: #208c71;
87
+ $color-light-success-700: #1b7c62;
88
+ $color-light-success-800: #166c54;
89
+ $color-light-success-900: #0d503a;
90
+ $color-light-neutral-0: #ffffff;
91
+ $color-light-neutral-50: #f9f9f9;
92
+ $color-light-neutral-100: #f2f2f2;
93
+ $color-light-neutral-200: #e8e8e8;
94
+ $color-light-neutral-300: #d8d8d8;
95
+ $color-light-neutral-400: #b4b4b4;
96
+ $color-light-neutral-500: #949494;
97
+ $color-light-neutral-600: #6c6c6c;
98
+ $color-light-neutral-700: #595959;
99
+ $color-light-neutral-800: #3a3a3a;
100
+ $color-light-neutral-900: #1a1a1a;
101
+ $color-dark-primary-0: #000000;
102
+ $color-dark-primary-50: #1a1a1a;
103
+ $color-dark-primary-100: #3a3a3a;
104
+ $color-dark-primary-200: #595959;
105
+ $color-dark-primary-300: #6c6c6c;
106
+ $color-dark-primary-400: #949494;
107
+ $color-dark-primary-500: #b4b4b4;
108
+ $color-dark-primary-600: #d8d8d8;
109
+ $color-dark-primary-700: #e8e8e8;
110
+ $color-dark-primary-800: #f2f2f2;
111
+ $color-dark-primary-900: #f9f9f9;
112
+ $color-dark-secondary-0: #000000;
113
+ $color-dark-secondary-50: #0d503a;
114
+ $color-dark-secondary-100: #166c54;
115
+ $color-dark-secondary-200: #1b7c62;
116
+ $color-dark-secondary-300: #208c71;
117
+ $color-dark-secondary-400: #24997e;
118
+ $color-dark-secondary-500: #38a990;
119
+ $color-dark-secondary-600: #57b9a2;
120
+ $color-dark-secondary-700: #85cdbc;
121
+ $color-dark-secondary-800: #b5e0d6;
122
+ $color-dark-secondary-900: #e1f3ef;
123
+ $color-dark-info-0: #000000;
124
+ $color-dark-info-50: #0a1a97;
125
+ $color-dark-info-100: #202faa;
126
+ $color-dark-info-200: #293ab6;
127
+ $color-dark-info-300: #3344c2;
128
+ $color-dark-info-400: #394dcd;
129
+ $color-dark-info-500: #5968d6;
130
+ $color-dark-info-600: #7884dd;
131
+ $color-dark-info-700: #9fa7e7;
132
+ $color-dark-info-800: #c6c9f1;
133
+ $color-dark-info-900: #e8eaf9;
134
+ $color-dark-warning-0: #000000;
135
+ $color-dark-warning-50: #927c00;
136
+ $color-dark-warning-100: #aea300;
137
+ $color-dark-warning-200: #bfba00;
138
+ $color-dark-warning-300: #d1d100;
139
+ $color-dark-warning-400: #dfe300;
140
+ $color-dark-warning-500: #e5e741;
141
+ $color-dark-warning-600: #ebec67;
142
+ $color-dark-warning-700: #f1f294;
143
+ $color-dark-warning-800: #f7f6bf;
144
+ $color-dark-warning-900: #fcfce5;
145
+ $color-dark-danger-0: #000000;
146
+ $color-dark-danger-50: #ab322f;
147
+ $color-dark-danger-100: #b93c3a;
148
+ $color-dark-danger-200: #c74141;
149
+ $color-dark-danger-300: #d94a47;
150
+ $color-dark-danger-400: #e8524a;
151
+ $color-dark-danger-500: #e35f5f;
152
+ $color-dark-danger-600: #d97b7d;
153
+ $color-dark-danger-700: #e69fa1;
154
+ $color-dark-danger-800: #f8d0d5;
155
+ $color-dark-danger-900: #fcecef;
156
+ $color-dark-success-0: #000000;
157
+ $color-dark-success-50: #0d503a;
158
+ $color-dark-success-100: #166c54;
159
+ $color-dark-success-200: #1b7c62;
160
+ $color-dark-success-300: #208c71;
161
+ $color-dark-success-400: #24997e;
162
+ $color-dark-success-500: #38a990;
163
+ $color-dark-success-600: #57b9a2;
164
+ $color-dark-success-700: #85cdbc;
165
+ $color-dark-success-800: #b5e0d6;
166
+ $color-dark-success-900: #e1f3ef;
167
+ $color-dark-neutral-0: #000000;
168
+ $color-dark-neutral-50: #1a1a1a;
169
+ $color-dark-neutral-100: #3a3a3a;
170
+ $color-dark-neutral-200: #595959;
171
+ $color-dark-neutral-300: #6c6c6c;
172
+ $color-dark-neutral-400: #949494;
173
+ $color-dark-neutral-500: #b4b4b4;
174
+ $color-dark-neutral-600: #d8d8d8;
175
+ $color-dark-neutral-700: #e8e8e8;
176
+ $color-dark-neutral-800: #f2f2f2;
177
+ $color-dark-neutral-900: #f9f9f9;
178
+ $typography-headline1-font-size: 96px;
179
+ $typography-headline1-line-height: 100px;
180
+ $typography-headline1-font-weight: 300;
181
+ $typography-headline1-letter-spacing: -0.25px;
182
+ $typography-headline1-text-decoration: none;
183
+ $typography-headline1-text-transform: none;
184
+ $typography-headline2-font-size: 60px;
185
+ $typography-headline2-line-height: 64px;
186
+ $typography-headline2-font-weight: 300;
187
+ $typography-headline2-letter-spacing: -0.13333333333333333px;
188
+ $typography-headline2-text-decoration: none;
189
+ $typography-headline2-text-transform: none;
190
+ $typography-headline3-font-size: 48px;
191
+ $typography-headline3-line-height: 52px;
192
+ $typography-headline3-font-weight: 400;
193
+ $typography-headline3-letter-spacing: normal;
194
+ $typography-headline3-text-decoration: none;
195
+ $typography-headline3-text-transform: none;
196
+ $typography-headline4-font-size: 34px;
197
+ $typography-headline4-line-height: 38px;
198
+ $typography-headline4-font-weight: 400;
199
+ $typography-headline4-letter-spacing: 0.11764705882352941px;
200
+ $typography-headline4-text-decoration: none;
201
+ $typography-headline4-text-transform: none;
202
+ $typography-headline5-font-size: 24px;
203
+ $typography-headline5-line-height: 28px;
204
+ $typography-headline5-font-weight: 400;
205
+ $typography-headline5-letter-spacing: normal;
206
+ $typography-headline5-text-decoration: none;
207
+ $typography-headline5-text-transform: none;
208
+ $typography-headline6-font-size: 20px;
209
+ $typography-headline6-line-height: 24px;
210
+ $typography-headline6-font-weight: 500;
211
+ $typography-headline6-letter-spacing: 0.2px;
212
+ $typography-headline6-text-decoration: none;
213
+ $typography-headline6-text-transform: none;
214
+ $typography-subtitle1-font-size: 16px;
215
+ $typography-subtitle1-line-height: 20px;
216
+ $typography-subtitle1-font-weight: 400;
217
+ $typography-subtitle1-letter-spacing: 0.15px;
218
+ $typography-subtitle1-text-decoration: none;
219
+ $typography-subtitle1-text-transform: none;
220
+ $typography-subtitle2-font-size: 14px;
221
+ $typography-subtitle2-line-height: 18px;
222
+ $typography-subtitle2-font-weight: 500;
223
+ $typography-subtitle2-letter-spacing: 0.1142857142857143px;
224
+ $typography-subtitle2-text-decoration: none;
225
+ $typography-subtitle2-text-transform: none;
226
+ $typography-body1-font-size: 16px;
227
+ $typography-body1-line-height: 20px;
228
+ $typography-body1-font-weight: 400;
229
+ $typography-body1-letter-spacing: 0.5px;
230
+ $typography-body1-text-decoration: none;
231
+ $typography-body1-text-transform: none;
232
+ $typography-body2-font-size: 14px;
233
+ $typography-body2-line-height: 18px;
234
+ $typography-body2-font-weight: 400;
235
+ $typography-body2-letter-spacing: 0.2857142857142857px;
236
+ $typography-body2-text-decoration: none;
237
+ $typography-body2-text-transform: none;
238
+ $typography-caption-font-size: 12px;
239
+ $typography-caption-line-height: 16px;
240
+ $typography-caption-font-weight: 400;
241
+ $typography-caption-letter-spacing: 0.5333333333333333px;
242
+ $typography-caption-text-decoration: none;
243
+ $typography-caption-text-transform: none;
244
+ $typography-button-font-size: 14px;
245
+ $typography-button-line-height: 18px;
246
+ $typography-button-font-weight: 700;
247
+ $typography-button-letter-spacing: 1.4285714285714286px;
248
+ $typography-button-text-decoration: none;
249
+ $typography-button-text-transform: none;
250
+ $typography-overline-font-size: 12px;
251
+ $typography-overline-line-height: 16px;
252
+ $typography-overline-font-weight: 500;
253
+ $typography-overline-letter-spacing: 2.6666666666666665px;
254
+ $typography-overline-text-decoration: none;
255
+ $typography-overline-text-transform: none;
256
+ $elevation-none: none;
257
+ $elevation-light-light-offset-x-0: 2px;
258
+ $elevation-light-light-offset-y-0: 2px;
259
+ $elevation-light-light-blur-0: 0px;
260
+ $elevation-light-light-spread-0: 0px;
261
+ $elevation-light-semilight-offset-x-0: 3px;
262
+ $elevation-light-semilight-offset-y-0: 3px;
263
+ $elevation-light-semilight-blur-0: 0px;
264
+ $elevation-light-semilight-spread-0: 0px;
265
+ $elevation-light-regular-offset-x-0: 4px;
266
+ $elevation-light-regular-offset-y-0: 4px;
267
+ $elevation-light-regular-blur-0: 0px;
268
+ $elevation-light-regular-spread-0: 0px;
269
+ $elevation-light-semibold-offset-x-0: 5px;
270
+ $elevation-light-semibold-offset-y-0: 5px;
271
+ $elevation-light-semibold-blur-0: 0px;
272
+ $elevation-light-semibold-spread-0: 0px;
273
+ $elevation-light-bold-offset-x-0: 6px;
274
+ $elevation-light-bold-offset-y-0: 6px;
275
+ $elevation-light-bold-blur-0: 0px;
276
+ $elevation-light-bold-spread-0: 0px;
277
+ $elevation-light-extrabold-offset-x-0: 7px;
278
+ $elevation-light-extrabold-offset-y-0: 7px;
279
+ $elevation-light-extrabold-blur-0: 0px;
280
+ $elevation-light-extrabold-spread-0: 0px;
281
+ $elevation-dark-light-offset-x-0: 2px;
282
+ $elevation-dark-light-offset-y-0: 2px;
283
+ $elevation-dark-light-blur-0: 0px;
284
+ $elevation-dark-light-spread-0: 0px;
285
+ $elevation-dark-semilight-offset-x-0: 3px;
286
+ $elevation-dark-semilight-offset-y-0: 3px;
287
+ $elevation-dark-semilight-blur-0: 0px;
288
+ $elevation-dark-semilight-spread-0: 0px;
289
+ $elevation-dark-regular-offset-x-0: 4px;
290
+ $elevation-dark-regular-offset-y-0: 4px;
291
+ $elevation-dark-regular-blur-0: 0px;
292
+ $elevation-dark-regular-spread-0: 0px;
293
+ $elevation-dark-semibold-offset-x-0: 5px;
294
+ $elevation-dark-semibold-offset-y-0: 5px;
295
+ $elevation-dark-semibold-blur-0: 0px;
296
+ $elevation-dark-semibold-spread-0: 0px;
297
+ $elevation-dark-bold-offset-x-0: 6px;
298
+ $elevation-dark-bold-offset-y-0: 6px;
299
+ $elevation-dark-bold-blur-0: 0px;
300
+ $elevation-dark-bold-spread-0: 0px;
301
+ $elevation-dark-extrabold-offset-x-0: 7px;
302
+ $elevation-dark-extrabold-offset-y-0: 7px;
303
+ $elevation-dark-extrabold-blur-0: 0px;
304
+ $elevation-dark-extrabold-spread-0: 0px;
305
+ $typography-key-headline1: "headline1";
306
+ $typography-key-headline2: "headline2";
307
+ $typography-key-headline3: "headline3";
308
+ $typography-key-headline4: "headline4";
309
+ $typography-key-headline5: "headline5";
310
+ $typography-key-headline6: "headline6";
311
+ $typography-key-subtitle1: "subtitle1";
312
+ $typography-key-subtitle2: "subtitle2";
313
+ $typography-key-body1: "body1";
314
+ $typography-key-body2: "body2";
315
+ $typography-key-caption: "caption";
316
+ $typography-key-button: "button";
317
+ $typography-key-overline: "overline";
318
+ $elevation-key-light: "light";
319
+ $elevation-key-semilight: "semilight";
320
+ $elevation-key-regular: "regular";
321
+ $elevation-key-semibold: "semibold";
322
+ $elevation-key-bold: "bold";
323
+ $elevation-key-extrabold: "extrabold";
324
+ $appearance-default: "default";
325
+ $appearance-outline: "outline";
326
+ $appearance-plain: "plain";
327
+ $appearance-soft: "soft";
328
+ $appearance-solid: "solid";
329
+ $variant-primary: "primary";
330
+ $variant-secondary: "secondary";
331
+ $variant-info: "info";
332
+ $variant-warning: "warning";
333
+ $variant-danger: "danger";
334
+ $variant-success: "success";
335
+ $variant-neutral: "neutral";
336
+ $size-tiny: "tiny";
337
+ $size-small: "small";
338
+ $size-medium: "medium";
339
+ $size-large: "large";
340
+ $size-giant: "giant";
341
+ $duration-short: 200ms;
342
+ $duration-medium: 400ms;
343
+ $duration-long: 600ms;
344
+ $typography-headline1-font-family: $font-family;
345
+ $typography-headline2-font-family: $font-family;
346
+ $typography-headline3-font-family: $font-family;
347
+ $typography-headline4-font-family: $font-family;
348
+ $typography-headline5-font-family: $font-family;
349
+ $typography-headline6-font-family: $font-family;
350
+ $typography-subtitle1-font-family: $font-family;
351
+ $typography-subtitle2-font-family: $font-family;
352
+ $typography-body1-font-family: $font-family;
353
+ $typography-body2-font-family: $font-family;
354
+ $typography-caption-font-family: $font-family;
355
+ $typography-button-font-family: $font-family;
356
+ $typography-overline-font-family: $font-family;
357
+ $elevation-light-light: 2px 2px 0px 0px $scheme-light-contrast;
358
+ $elevation-light-light-color-0: $scheme-light-contrast;
359
+ $elevation-light-semilight: 3px 3px 0px 0px $scheme-light-contrast;
360
+ $elevation-light-semilight-color-0: $scheme-light-contrast;
361
+ $elevation-light-regular: 4px 4px 0px 0px $scheme-light-contrast;
362
+ $elevation-light-regular-color-0: $scheme-light-contrast;
363
+ $elevation-light-semibold: 5px 5px 0px 0px $scheme-light-contrast;
364
+ $elevation-light-semibold-color-0: $scheme-light-contrast;
365
+ $elevation-light-bold: 6px 6px 0px 0px $scheme-light-contrast;
366
+ $elevation-light-bold-color-0: $scheme-light-contrast;
367
+ $elevation-light-extrabold: 7px 7px 0px 0px $scheme-light-contrast;
368
+ $elevation-light-extrabold-color-0: $scheme-light-contrast;
369
+ $elevation-dark-light: 2px 2px 0px 0px $scheme-dark-contrast;
370
+ $elevation-dark-light-color-0: $scheme-dark-contrast;
371
+ $elevation-dark-semilight: 3px 3px 0px 0px $scheme-dark-contrast;
372
+ $elevation-dark-semilight-color-0: $scheme-dark-contrast;
373
+ $elevation-dark-regular: 4px 4px 0px 0px $scheme-dark-contrast;
374
+ $elevation-dark-regular-color-0: $scheme-dark-contrast;
375
+ $elevation-dark-semibold: 5px 5px 0px 0px $scheme-dark-contrast;
376
+ $elevation-dark-semibold-color-0: $scheme-dark-contrast;
377
+ $elevation-dark-bold: 6px 6px 0px 0px $scheme-dark-contrast;
378
+ $elevation-dark-bold-color-0: $scheme-dark-contrast;
379
+ $elevation-dark-extrabold: 7px 7px 0px 0px $scheme-dark-contrast;
380
+ $elevation-dark-extrabold-color-0: $scheme-dark-contrast;
381
+ $elevation-key: $elevation-key-light $elevation-key-semilight $elevation-key-regular $elevation-key-semibold $elevation-key-bold $elevation-key-extrabold;
382
+ $appearance: $appearance-default $appearance-outline $appearance-plain $appearance-soft $appearance-solid;
383
+ $variant: $variant-primary $variant-secondary $variant-info $variant-warning $variant-danger $variant-success $variant-neutral;
384
+ $size: $size-tiny $size-small $size-medium $size-large $size-giant;