@grantcodes/style-dictionary 1.3.1 → 1.4.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/CHANGELOG.md +15 -0
- package/assets/fonts/grantina.css +1 -0
- package/assets/logos/grantina/monogram-light-bg.svg +3 -0
- package/assets/logos/grantina/monogram.svg +15 -0
- package/dist/css/grantcodes/dark.css +168 -0
- package/dist/css/grantcodes/grantcodes.css +126 -150
- package/dist/css/grantcodes/tokens.css +126 -150
- package/dist/css/grantina/dark.css +166 -0
- package/dist/css/grantina/grantina.css +363 -0
- package/dist/css/grantina/tokens.css +363 -0
- package/dist/css/todomap/dark.css +120 -0
- package/dist/css/todomap/todomap.css +172 -12
- package/dist/css/todomap/tokens.css +172 -12
- package/dist/css/wireframe/dark.css +180 -0
- package/dist/css/wireframe/tokens.css +145 -206
- package/dist/css/wireframe/wireframe.css +145 -206
- package/dist/js/grantcodes/style-dictionary.d.ts +111 -133
- package/dist/js/grantcodes/style-dictionary.js +117 -141
- package/dist/js/grantina/style-dictionary.d.ts +362 -0
- package/dist/js/grantina/style-dictionary.js +391 -0
- package/dist/js/todomap/style-dictionary.d.ts +164 -10
- package/dist/js/todomap/style-dictionary.js +182 -14
- package/dist/js/wireframe/style-dictionary.d.ts +130 -183
- package/dist/js/wireframe/style-dictionary.js +134 -193
- package/dist/json/grantcodes/tokens.json +114 -136
- package/dist/json/grantina/tokens.json +352 -0
- package/dist/json/todomap/tokens.json +159 -13
- package/dist/json/wireframe/tokens.json +133 -186
- package/package.json +13 -3
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
:root {
|
|
2
|
+
--g-animation-duration-10: 100ms;
|
|
3
|
+
--g-animation-duration-15: 0.15s;
|
|
4
|
+
--g-animation-duration-20: 200ms;
|
|
5
|
+
--g-animation-duration-30: 300ms;
|
|
6
|
+
--g-animation-duration-40: 0.4s;
|
|
7
|
+
--g-animation-timing-function-ease: ease-in-out;
|
|
8
|
+
--g-animation-timing-function-linear: linear;
|
|
9
|
+
--g-animation-easing-default: ease;
|
|
10
|
+
--g-border-width-1: 0.0625rem;
|
|
11
|
+
--g-border-width-2: 0.125rem;
|
|
12
|
+
--g-border-width-4: 0.25rem;
|
|
13
|
+
--g-border-width-8: 0.5rem;
|
|
14
|
+
--g-border-radius-0: 0rem;
|
|
15
|
+
--g-border-radius-2: 0.125rem;
|
|
16
|
+
--g-border-radius-4: 0.25rem;
|
|
17
|
+
--g-border-radius-8: 0.5rem;
|
|
18
|
+
--g-border-radius-16: 1rem;
|
|
19
|
+
--g-border-radius-32: 2rem;
|
|
20
|
+
--g-border-radius-round: 62.4375rem;
|
|
2
21
|
--g-color-neutral-100: oklch(95% 0 0);
|
|
3
22
|
--g-color-neutral-200: oklch(90% 0 0);
|
|
4
23
|
--g-color-neutral-300: oklch(80% 0 0);
|
|
@@ -60,28 +79,6 @@
|
|
|
60
79
|
--g-color-brand-gray-700: oklch(40% 0 0);
|
|
61
80
|
--g-color-brand-gray-800: oklch(30% 0 0);
|
|
62
81
|
--g-color-brand-gray-900: oklch(20% 0 0);
|
|
63
|
-
--g-z-index-0: 0;
|
|
64
|
-
--g-z-index-100: 100;
|
|
65
|
-
--g-z-index-200: 200;
|
|
66
|
-
--g-z-index-300: 300;
|
|
67
|
-
--g-z-index-400: 400;
|
|
68
|
-
--g-z-index-500: 500;
|
|
69
|
-
--g-z-index-top: 99999;
|
|
70
|
-
--g-z-index-bottom: -100;
|
|
71
|
-
--g-animation-duration-15: 0.15s;
|
|
72
|
-
--g-animation-duration-40: 0.4s;
|
|
73
|
-
--g-animation-easing-default: ease;
|
|
74
|
-
--g-border-radius-0: 0rem;
|
|
75
|
-
--g-border-radius-2: 0.125rem;
|
|
76
|
-
--g-border-radius-4: 0.25rem;
|
|
77
|
-
--g-border-radius-8: 0.5rem;
|
|
78
|
-
--g-border-radius-16: 1rem;
|
|
79
|
-
--g-border-radius-32: 2rem;
|
|
80
|
-
--g-border-radius-round: 62.4375rem;
|
|
81
|
-
--g-border-width-1: 0.0625rem;
|
|
82
|
-
--g-border-width-2: 0.125rem;
|
|
83
|
-
--g-border-width-4: 0.25rem;
|
|
84
|
-
--g-border-width-8: 0.5rem;
|
|
85
82
|
--g-shadow-sm-x: 0rem;
|
|
86
83
|
--g-shadow-sm-y: 0.25rem;
|
|
87
84
|
--g-shadow-sm-blur: 0.25rem;
|
|
@@ -107,66 +104,69 @@
|
|
|
107
104
|
--g-spacing-40: 2.5rem;
|
|
108
105
|
--g-spacing-48: 3rem;
|
|
109
106
|
--g-spacing-64: 4rem;
|
|
110
|
-
--g-typography-font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
111
|
-
--g-typography-font-family-helvetica: Helvetica, sans-serif;
|
|
112
107
|
--g-typography-font-weight-400: 400;
|
|
108
|
+
--g-typography-font-weight-500: 500;
|
|
109
|
+
--g-typography-font-weight-600: 600;
|
|
113
110
|
--g-typography-font-weight-700: 700;
|
|
114
|
-
--g-typography-
|
|
115
|
-
--g-typography-
|
|
116
|
-
--g-typography-
|
|
117
|
-
--g-typography-
|
|
118
|
-
--g-typography-
|
|
119
|
-
--g-typography-
|
|
120
|
-
--g-typography-
|
|
121
|
-
--g-typography-font-size-32: 2rem;
|
|
122
|
-
--g-typography-font-size-40: 2.5rem;
|
|
123
|
-
--g-typography-font-size-48: 3rem;
|
|
124
|
-
--g-typography-font-size-56: 3.5rem;
|
|
125
|
-
--g-typography-font-size-64: 4rem;
|
|
126
|
-
--g-typography-font-size-100: 6.25rem;
|
|
127
|
-
--g-typography-line-height-16: 1.00;
|
|
128
|
-
--g-typography-line-height-20: 1.00;
|
|
129
|
-
--g-typography-line-height-24: 1.00;
|
|
130
|
-
--g-typography-line-height-28: 1.00;
|
|
131
|
-
--g-typography-line-height-32: 1.00;
|
|
132
|
-
--g-typography-line-height-36: 2.25;
|
|
133
|
-
--g-typography-line-height-40: 1.00;
|
|
134
|
-
--g-typography-line-height-48: 1.00;
|
|
135
|
-
--g-typography-line-height-56: 1.00;
|
|
136
|
-
--g-typography-line-height-64: 1.00;
|
|
137
|
-
--g-typography-line-height-72: 4.50;
|
|
138
|
-
--g-typography-line-height-110: 6.88;
|
|
139
|
-
--g-typography-letter-spacing-0: 0rem;
|
|
140
|
-
--g-typography-letter-spacing-2: 0.125rem;
|
|
141
|
-
--g-typography-letter-spacing-minus-2: -0.125rem;
|
|
142
|
-
--g-typography-letter-spacing-minus-1-half: -0.0938rem;
|
|
143
|
-
--g-typography-letter-spacing-minus-1: -0.0625rem;
|
|
144
|
-
--g-typography-letter-spacing-minus-half: -0.0313rem;
|
|
145
|
-
--g-typography-letter-spacing-half: 0.0313rem;
|
|
111
|
+
--g-typography-letter-spacing-none: 0rem;
|
|
112
|
+
--g-typography-letter-spacing-sm: 0.0313rem;
|
|
113
|
+
--g-typography-letter-spacing-lg: 0.125rem;
|
|
114
|
+
--g-typography-letter-spacing-neg-sm: -0.0313rem;
|
|
115
|
+
--g-typography-letter-spacing-neg-md: -0.0625rem;
|
|
116
|
+
--g-typography-letter-spacing-neg-lg: -0.0938rem;
|
|
117
|
+
--g-typography-letter-spacing-neg-xl: -0.125rem;
|
|
146
118
|
--g-typography-text-transform-none: none;
|
|
147
119
|
--g-typography-text-transform-uppercase: uppercase;
|
|
148
|
-
--g-
|
|
149
|
-
--g-
|
|
150
|
-
--g-
|
|
151
|
-
--g-
|
|
152
|
-
--g-
|
|
153
|
-
--g-
|
|
154
|
-
--g-
|
|
155
|
-
--g-
|
|
156
|
-
--g-
|
|
157
|
-
--g-
|
|
158
|
-
--g-
|
|
159
|
-
--g-
|
|
160
|
-
--g-
|
|
161
|
-
--g-
|
|
162
|
-
--g-
|
|
163
|
-
--g-
|
|
164
|
-
--g-
|
|
165
|
-
--g-
|
|
166
|
-
--g-
|
|
167
|
-
--g-
|
|
168
|
-
--g-
|
|
169
|
-
--g-
|
|
120
|
+
--g-typography-font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
121
|
+
--g-typography-font-family-helvetica: Helvetica, sans-serif;
|
|
122
|
+
--g-typography-font-size-xs: 0.75rem;
|
|
123
|
+
--g-typography-font-size-sm: 0.875rem;
|
|
124
|
+
--g-typography-font-size-md: 1rem;
|
|
125
|
+
--g-typography-font-size-lg: 1.125rem;
|
|
126
|
+
--g-typography-font-size-xl: 1.25rem;
|
|
127
|
+
--g-typography-font-size-2xl: 1.5rem;
|
|
128
|
+
--g-typography-font-size-3xl: 1.75rem;
|
|
129
|
+
--g-typography-font-size-4xl: 2rem;
|
|
130
|
+
--g-typography-font-size-5xl: 2.5rem;
|
|
131
|
+
--g-typography-font-size-6xl: 3rem;
|
|
132
|
+
--g-typography-font-size-7xl: 3.5rem;
|
|
133
|
+
--g-typography-font-size-8xl: 4rem;
|
|
134
|
+
--g-typography-font-size-display: 6.25rem;
|
|
135
|
+
--g-z-index-0: 0;
|
|
136
|
+
--g-z-index-100: 100;
|
|
137
|
+
--g-z-index-200: 200;
|
|
138
|
+
--g-z-index-300: 300;
|
|
139
|
+
--g-z-index-400: 400;
|
|
140
|
+
--g-z-index-500: 500;
|
|
141
|
+
--g-z-index-top: 99999;
|
|
142
|
+
--g-z-index-bottom: -100;
|
|
143
|
+
--g-theme-typography-h1: 700 6.25rem/1.1 Helvetica, sans-serif;
|
|
144
|
+
--g-theme-typography-h2: 700 3rem/1.17 Helvetica, sans-serif;
|
|
145
|
+
--g-theme-typography-h3: 700 2.5rem/1.2 Helvetica, sans-serif;
|
|
146
|
+
--g-theme-typography-h4: 700 2rem/1.25 Helvetica, sans-serif;
|
|
147
|
+
--g-theme-typography-h5: 700 1.75rem/1.29 Helvetica, sans-serif;
|
|
148
|
+
--g-theme-typography-h6: 700 1.5rem/1.33 Helvetica, sans-serif;
|
|
149
|
+
--g-theme-typography-body-lg: 400 1.25rem/1.4 Helvetica, sans-serif;
|
|
150
|
+
--g-theme-typography-body: 400 1rem/1.5 Helvetica, sans-serif;
|
|
151
|
+
--g-theme-typography-body-sm: 400 0.875rem/1.43 Helvetica, sans-serif;
|
|
152
|
+
--g-theme-typography-label-lg: 700 1.25rem/1.4 Helvetica, sans-serif;
|
|
153
|
+
--g-theme-typography-label: 700 1rem/1.5 Helvetica, sans-serif;
|
|
154
|
+
--g-theme-typography-label-sm: 700 0.875rem/1.43 Helvetica, sans-serif;
|
|
155
|
+
--g-theme-typography-meta: 700 0.875rem/1.43 Helvetica, sans-serif;
|
|
156
|
+
--g-theme-typography-meta-sm: 700 0.75rem/1.33 Helvetica, sans-serif;
|
|
157
|
+
--g-theme-animation-fade-quick: 0.15s;
|
|
158
|
+
--g-theme-animation-fade-long: 0.4s;
|
|
159
|
+
--g-theme-animation-move-quick: 0.15s;
|
|
160
|
+
--g-theme-animation-move-long: 0.4s;
|
|
161
|
+
--g-theme-animation-ease: ease;
|
|
162
|
+
--g-theme-border-width-sm: 0.0625rem;
|
|
163
|
+
--g-theme-border-width-md: 0.125rem;
|
|
164
|
+
--g-theme-border-width-lg: 0.25rem;
|
|
165
|
+
--g-theme-border-width-xl: 0.5rem;
|
|
166
|
+
--g-theme-border-radius-none: 0rem;
|
|
167
|
+
--g-theme-border-radius-sm: 0rem;
|
|
168
|
+
--g-theme-border-radius-md: 0rem;
|
|
169
|
+
--g-theme-border-radius-lg: 0rem;
|
|
170
170
|
--g-theme-color-background-default: oklch(100% 0 0);
|
|
171
171
|
--g-theme-color-background-default-hover: oklch(95% 0 0);
|
|
172
172
|
--g-theme-color-background-subtle: oklch(95% 0 0);
|
|
@@ -215,19 +215,6 @@
|
|
|
215
215
|
--g-theme-color-content-utility-warning: oklch(78.68% 0.162 96.43);
|
|
216
216
|
--g-theme-color-content-utility-success: oklch(65.44% 0.1981 141.12);
|
|
217
217
|
--g-theme-color-content-utility-info: oklch(68.89% 0.125872 220.4932);
|
|
218
|
-
--g-theme-animation-fade-quick: 0.15s;
|
|
219
|
-
--g-theme-animation-fade-long: 0.4s;
|
|
220
|
-
--g-theme-animation-move-quick: 0.15s;
|
|
221
|
-
--g-theme-animation-move-long: 0.4s;
|
|
222
|
-
--g-theme-animation-ease: ease;
|
|
223
|
-
--g-theme-border-radius-none: 0rem;
|
|
224
|
-
--g-theme-border-radius-sm: 0rem;
|
|
225
|
-
--g-theme-border-radius-md: 0rem;
|
|
226
|
-
--g-theme-border-radius-lg: 0rem;
|
|
227
|
-
--g-theme-border-width-sm: 0.0625rem;
|
|
228
|
-
--g-theme-border-width-md: 0.125rem;
|
|
229
|
-
--g-theme-border-width-lg: 0.25rem;
|
|
230
|
-
--g-theme-border-width-xl: 0.5rem;
|
|
231
218
|
--g-theme-spacing-xs: 0.25rem;
|
|
232
219
|
--g-theme-spacing-sm: 0.5rem;
|
|
233
220
|
--g-theme-spacing-md: 1rem;
|
|
@@ -235,132 +222,84 @@
|
|
|
235
222
|
--g-theme-spacing-xl: 2rem;
|
|
236
223
|
--g-theme-spacing-2xl: 3rem;
|
|
237
224
|
--g-theme-spacing-3xl: 4rem;
|
|
238
|
-
--g-theme-typography-
|
|
239
|
-
--g-theme-typography-
|
|
240
|
-
--g-theme-typography-
|
|
241
|
-
--g-theme-typography-
|
|
242
|
-
--g-theme-typography-
|
|
243
|
-
--g-theme-typography-
|
|
244
|
-
--g-theme-typography-
|
|
245
|
-
--g-theme-typography-
|
|
246
|
-
--g-theme-typography-
|
|
247
|
-
--g-theme-typography-
|
|
248
|
-
--g-theme-typography-
|
|
249
|
-
--g-theme-typography-
|
|
250
|
-
--g-theme-typography-
|
|
251
|
-
--g-theme-typography-
|
|
252
|
-
--g-theme-typography-
|
|
253
|
-
--g-theme-typography-
|
|
254
|
-
--g-theme-typography-
|
|
255
|
-
--g-theme-typography-
|
|
256
|
-
--g-theme-typography-
|
|
257
|
-
--g-theme-typography-
|
|
258
|
-
--g-theme-typography-
|
|
259
|
-
--g-theme-typography-
|
|
260
|
-
--g-theme-typography-
|
|
261
|
-
--g-theme-typography-
|
|
262
|
-
--g-theme-typography-
|
|
263
|
-
--g-theme-typography-
|
|
264
|
-
--g-theme-typography-
|
|
265
|
-
--g-theme-typography-
|
|
266
|
-
--g-theme-typography-
|
|
267
|
-
--g-theme-typography-
|
|
268
|
-
--g-theme-typography-
|
|
269
|
-
--g-theme-typography-
|
|
270
|
-
--g-theme-typography-
|
|
271
|
-
--g-theme-typography-
|
|
272
|
-
--g-theme-typography-
|
|
273
|
-
--g-theme-typography-
|
|
274
|
-
--g-theme-typography-headline-default-font-family: Helvetica, sans-serif;
|
|
275
|
-
--g-theme-typography-headline-default-font-weight: 700;
|
|
276
|
-
--g-theme-typography-headline-default-font-size: 2.5rem;
|
|
277
|
-
--g-theme-typography-headline-default-line-height: 1.20;
|
|
278
|
-
--g-theme-typography-headline-default-letter-spacing: 0.0313rem;
|
|
279
|
-
--g-theme-typography-headline-default-text-transform: none;
|
|
280
|
-
--g-theme-typography-headline-default-mobile-font-family: Helvetica, sans-serif;
|
|
281
|
-
--g-theme-typography-headline-default-mobile-font-weight: 700;
|
|
282
|
-
--g-theme-typography-headline-default-mobile-font-size: 2rem;
|
|
283
|
-
--g-theme-typography-headline-default-mobile-line-height: 1.25;
|
|
284
|
-
--g-theme-typography-headline-default-mobile-letter-spacing: 0.0313rem;
|
|
285
|
-
--g-theme-typography-headline-default-mobile-text-transform: none;
|
|
286
|
-
--g-theme-typography-headline-sm-font-family: Helvetica, sans-serif;
|
|
287
|
-
--g-theme-typography-headline-sm-font-weight: 700;
|
|
288
|
-
--g-theme-typography-headline-sm-font-size: 2rem;
|
|
289
|
-
--g-theme-typography-headline-sm-line-height: 1.25;
|
|
290
|
-
--g-theme-typography-headline-sm-letter-spacing: 0.0313rem;
|
|
291
|
-
--g-theme-typography-headline-sm-text-transform: none;
|
|
292
|
-
--g-theme-typography-headline-sm-mobile-font-family: Helvetica, sans-serif;
|
|
293
|
-
--g-theme-typography-headline-sm-mobile-font-weight: 700;
|
|
294
|
-
--g-theme-typography-headline-sm-mobile-font-size: 1.75rem;
|
|
295
|
-
--g-theme-typography-headline-sm-mobile-line-height: 1.29;
|
|
296
|
-
--g-theme-typography-headline-sm-mobile-letter-spacing: 0.0313rem;
|
|
297
|
-
--g-theme-typography-headline-sm-mobile-text-transform: none;
|
|
298
|
-
--g-theme-typography-title-lg-font-family: Helvetica, sans-serif;
|
|
299
|
-
--g-theme-typography-title-lg-font-weight: 700;
|
|
300
|
-
--g-theme-typography-title-lg-font-size: 2rem;
|
|
301
|
-
--g-theme-typography-title-lg-line-height: 1.25;
|
|
302
|
-
--g-theme-typography-title-lg-letter-spacing: -0.0625rem;
|
|
303
|
-
--g-theme-typography-title-lg-text-transform: none;
|
|
304
|
-
--g-theme-typography-title-lg-mobile-font-family: Helvetica, sans-serif;
|
|
305
|
-
--g-theme-typography-title-lg-mobile-font-weight: 700;
|
|
306
|
-
--g-theme-typography-title-lg-mobile-font-size: 1.75rem;
|
|
307
|
-
--g-theme-typography-title-lg-mobile-line-height: 1.29;
|
|
308
|
-
--g-theme-typography-title-lg-mobile-letter-spacing: -0.0313rem;
|
|
309
|
-
--g-theme-typography-title-lg-mobile-text-transform: none;
|
|
310
|
-
--g-theme-typography-title-default-font-family: Helvetica, sans-serif;
|
|
311
|
-
--g-theme-typography-title-default-font-weight: 700;
|
|
312
|
-
--g-theme-typography-title-default-font-size: 1.75rem;
|
|
313
|
-
--g-theme-typography-title-default-line-height: 1.29;
|
|
314
|
-
--g-theme-typography-title-default-letter-spacing: -0.0313rem;
|
|
315
|
-
--g-theme-typography-title-default-text-transform: none;
|
|
316
|
-
--g-theme-typography-title-sm-font-family: Helvetica, sans-serif;
|
|
317
|
-
--g-theme-typography-title-sm-font-weight: 700;
|
|
318
|
-
--g-theme-typography-title-sm-font-size: 1.5rem;
|
|
319
|
-
--g-theme-typography-title-sm-line-height: 1.33;
|
|
320
|
-
--g-theme-typography-title-sm-letter-spacing: -0.0313rem;
|
|
321
|
-
--g-theme-typography-title-sm-text-transform: none;
|
|
322
|
-
--g-theme-typography-label-lg-font-family: Helvetica, sans-serif;
|
|
323
|
-
--g-theme-typography-label-lg-font-weight: 700;
|
|
324
|
-
--g-theme-typography-label-lg-font-size: 1.25rem;
|
|
325
|
-
--g-theme-typography-label-lg-line-height: 1.40;
|
|
326
|
-
--g-theme-typography-label-lg-letter-spacing: 0rem;
|
|
327
|
-
--g-theme-typography-label-lg-text-transform: none;
|
|
328
|
-
--g-theme-typography-label-default-font-family: Helvetica, sans-serif;
|
|
329
|
-
--g-theme-typography-label-default-font-weight: 700;
|
|
330
|
-
--g-theme-typography-label-default-font-size: 1rem;
|
|
331
|
-
--g-theme-typography-label-default-line-height: 1.50;
|
|
332
|
-
--g-theme-typography-label-default-letter-spacing: 0rem;
|
|
333
|
-
--g-theme-typography-label-default-text-transform: none;
|
|
334
|
-
--g-theme-typography-label-sm-font-family: Helvetica, sans-serif;
|
|
335
|
-
--g-theme-typography-label-sm-font-weight: 700;
|
|
336
|
-
--g-theme-typography-label-sm-font-size: 0.875rem;
|
|
337
|
-
--g-theme-typography-label-sm-line-height: 1.43;
|
|
338
|
-
--g-theme-typography-label-sm-letter-spacing: 0rem;
|
|
339
|
-
--g-theme-typography-label-sm-text-transform: none;
|
|
225
|
+
--g-theme-typography-h1-font-family: Helvetica, sans-serif;
|
|
226
|
+
--g-theme-typography-h1-font-weight: 700;
|
|
227
|
+
--g-theme-typography-h1-font-size: 6.25rem;
|
|
228
|
+
--g-theme-typography-h1-line-height: 1.1;
|
|
229
|
+
--g-theme-typography-h1-letter-spacing: -0.125rem;
|
|
230
|
+
--g-theme-typography-h1-text-transform: none;
|
|
231
|
+
--g-theme-typography-h2-font-family: Helvetica, sans-serif;
|
|
232
|
+
--g-theme-typography-h2-font-weight: 700;
|
|
233
|
+
--g-theme-typography-h2-font-size: 3rem;
|
|
234
|
+
--g-theme-typography-h2-line-height: 1.17;
|
|
235
|
+
--g-theme-typography-h2-letter-spacing: 0.0313rem;
|
|
236
|
+
--g-theme-typography-h2-text-transform: none;
|
|
237
|
+
--g-theme-typography-h3-font-family: Helvetica, sans-serif;
|
|
238
|
+
--g-theme-typography-h3-font-weight: 700;
|
|
239
|
+
--g-theme-typography-h3-font-size: 2.5rem;
|
|
240
|
+
--g-theme-typography-h3-line-height: 1.2;
|
|
241
|
+
--g-theme-typography-h3-letter-spacing: 0.0313rem;
|
|
242
|
+
--g-theme-typography-h3-text-transform: none;
|
|
243
|
+
--g-theme-typography-h4-font-family: Helvetica, sans-serif;
|
|
244
|
+
--g-theme-typography-h4-font-weight: 700;
|
|
245
|
+
--g-theme-typography-h4-font-size: 2rem;
|
|
246
|
+
--g-theme-typography-h4-line-height: 1.25;
|
|
247
|
+
--g-theme-typography-h4-letter-spacing: 0.0313rem;
|
|
248
|
+
--g-theme-typography-h4-text-transform: none;
|
|
249
|
+
--g-theme-typography-h5-font-family: Helvetica, sans-serif;
|
|
250
|
+
--g-theme-typography-h5-font-weight: 700;
|
|
251
|
+
--g-theme-typography-h5-font-size: 1.75rem;
|
|
252
|
+
--g-theme-typography-h5-line-height: 1.29;
|
|
253
|
+
--g-theme-typography-h5-letter-spacing: -0.0313rem;
|
|
254
|
+
--g-theme-typography-h5-text-transform: none;
|
|
255
|
+
--g-theme-typography-h6-font-family: Helvetica, sans-serif;
|
|
256
|
+
--g-theme-typography-h6-font-weight: 700;
|
|
257
|
+
--g-theme-typography-h6-font-size: 1.5rem;
|
|
258
|
+
--g-theme-typography-h6-line-height: 1.33;
|
|
259
|
+
--g-theme-typography-h6-letter-spacing: -0.0313rem;
|
|
260
|
+
--g-theme-typography-h6-text-transform: none;
|
|
340
261
|
--g-theme-typography-body-lg-font-family: Helvetica, sans-serif;
|
|
341
262
|
--g-theme-typography-body-lg-font-weight: 400;
|
|
342
263
|
--g-theme-typography-body-lg-font-size: 1.25rem;
|
|
343
|
-
--g-theme-typography-body-lg-line-height: 1.
|
|
264
|
+
--g-theme-typography-body-lg-line-height: 1.4;
|
|
344
265
|
--g-theme-typography-body-lg-letter-spacing: 0rem;
|
|
345
266
|
--g-theme-typography-body-lg-text-transform: none;
|
|
346
|
-
--g-theme-typography-body-
|
|
347
|
-
--g-theme-typography-body-
|
|
348
|
-
--g-theme-typography-body-
|
|
349
|
-
--g-theme-typography-body-
|
|
350
|
-
--g-theme-typography-body-
|
|
351
|
-
--g-theme-typography-body-
|
|
267
|
+
--g-theme-typography-body-font-family: Helvetica, sans-serif;
|
|
268
|
+
--g-theme-typography-body-font-weight: 400;
|
|
269
|
+
--g-theme-typography-body-font-size: 1rem;
|
|
270
|
+
--g-theme-typography-body-line-height: 1.5;
|
|
271
|
+
--g-theme-typography-body-letter-spacing: 0rem;
|
|
272
|
+
--g-theme-typography-body-text-transform: none;
|
|
352
273
|
--g-theme-typography-body-sm-font-family: Helvetica, sans-serif;
|
|
353
274
|
--g-theme-typography-body-sm-font-weight: 400;
|
|
354
275
|
--g-theme-typography-body-sm-font-size: 0.875rem;
|
|
355
276
|
--g-theme-typography-body-sm-line-height: 1.43;
|
|
356
277
|
--g-theme-typography-body-sm-letter-spacing: 0rem;
|
|
357
278
|
--g-theme-typography-body-sm-text-transform: none;
|
|
358
|
-
--g-theme-typography-
|
|
359
|
-
--g-theme-typography-
|
|
360
|
-
--g-theme-typography-
|
|
361
|
-
--g-theme-typography-
|
|
362
|
-
--g-theme-typography-
|
|
363
|
-
--g-theme-typography-
|
|
279
|
+
--g-theme-typography-label-lg-font-family: Helvetica, sans-serif;
|
|
280
|
+
--g-theme-typography-label-lg-font-weight: 700;
|
|
281
|
+
--g-theme-typography-label-lg-font-size: 1.25rem;
|
|
282
|
+
--g-theme-typography-label-lg-line-height: 1.4;
|
|
283
|
+
--g-theme-typography-label-lg-letter-spacing: 0rem;
|
|
284
|
+
--g-theme-typography-label-lg-text-transform: none;
|
|
285
|
+
--g-theme-typography-label-font-family: Helvetica, sans-serif;
|
|
286
|
+
--g-theme-typography-label-font-weight: 700;
|
|
287
|
+
--g-theme-typography-label-font-size: 1rem;
|
|
288
|
+
--g-theme-typography-label-line-height: 1.5;
|
|
289
|
+
--g-theme-typography-label-letter-spacing: 0rem;
|
|
290
|
+
--g-theme-typography-label-text-transform: none;
|
|
291
|
+
--g-theme-typography-label-sm-font-family: Helvetica, sans-serif;
|
|
292
|
+
--g-theme-typography-label-sm-font-weight: 700;
|
|
293
|
+
--g-theme-typography-label-sm-font-size: 0.875rem;
|
|
294
|
+
--g-theme-typography-label-sm-line-height: 1.43;
|
|
295
|
+
--g-theme-typography-label-sm-letter-spacing: 0rem;
|
|
296
|
+
--g-theme-typography-label-sm-text-transform: none;
|
|
297
|
+
--g-theme-typography-meta-font-family: Helvetica, sans-serif;
|
|
298
|
+
--g-theme-typography-meta-font-weight: 700;
|
|
299
|
+
--g-theme-typography-meta-font-size: 0.875rem;
|
|
300
|
+
--g-theme-typography-meta-line-height: 1.43;
|
|
301
|
+
--g-theme-typography-meta-letter-spacing: 0.125rem;
|
|
302
|
+
--g-theme-typography-meta-text-transform: uppercase;
|
|
364
303
|
--g-theme-typography-meta-sm-font-family: Helvetica, sans-serif;
|
|
365
304
|
--g-theme-typography-meta-sm-font-weight: 700;
|
|
366
305
|
--g-theme-typography-meta-sm-font-size: 0.75rem;
|