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