@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,30 @@
|
|
|
1
1
|
{
|
|
2
|
+
"g-animation-duration-10": "100ms",
|
|
3
|
+
"g-animation-duration-20": "200ms",
|
|
4
|
+
"g-animation-duration-30": "300ms",
|
|
5
|
+
"g-animation-duration-40": "400ms",
|
|
6
|
+
"g-animation-timing-function-ease": "ease-in-out",
|
|
7
|
+
"g-animation-timing-function-linear": "linear",
|
|
8
|
+
"g-theme-animation-fade-quick": "100ms",
|
|
9
|
+
"g-theme-animation-fade-long": "400ms",
|
|
10
|
+
"g-theme-animation-move-quick": "200ms",
|
|
11
|
+
"g-theme-animation-move-long": "400ms",
|
|
12
|
+
"g-theme-animation-ease": "ease-in-out",
|
|
13
|
+
"g-border-width-1": "0.0625rem",
|
|
14
|
+
"g-border-width-2": "0.125rem",
|
|
15
|
+
"g-border-width-4": "0.25rem",
|
|
16
|
+
"g-theme-border-width-sm": "0.0625rem",
|
|
17
|
+
"g-theme-border-width-md": "0.125rem",
|
|
18
|
+
"g-theme-border-width-lg": "0.25rem",
|
|
19
|
+
"g-border-radius-125": "0.125rem",
|
|
20
|
+
"g-border-radius-250": "0.25rem",
|
|
21
|
+
"g-border-radius-500": "0.5rem",
|
|
22
|
+
"g-border-radius-1000": "1rem",
|
|
23
|
+
"g-border-radius-square": "0",
|
|
24
|
+
"g-border-radius-rounded": "50%",
|
|
25
|
+
"g-theme-border-radius-sm": "0.125rem",
|
|
26
|
+
"g-theme-border-radius-md": "0.5rem",
|
|
27
|
+
"g-theme-border-radius-lg": "1rem",
|
|
2
28
|
"g-color-neutral-100": "oklch(95% 0 0)",
|
|
3
29
|
"g-color-neutral-200": "oklch(90% 0 0)",
|
|
4
30
|
"g-color-neutral-300": "oklch(80% 0 0)",
|
|
@@ -104,40 +130,6 @@
|
|
|
104
130
|
"g-theme-color-content-utility-warning": "oklch(78.68% 0.162 96.43)",
|
|
105
131
|
"g-theme-color-content-utility-success": "oklch(65.44% 0.1981 141.12)",
|
|
106
132
|
"g-theme-color-content-utility-info": "oklch(68.89% 0.125872 220.4932)",
|
|
107
|
-
"g-z-index-0": "0",
|
|
108
|
-
"g-z-index-100": "100",
|
|
109
|
-
"g-z-index-200": "200",
|
|
110
|
-
"g-z-index-300": "300",
|
|
111
|
-
"g-z-index-400": "400",
|
|
112
|
-
"g-z-index-500": "500",
|
|
113
|
-
"g-z-index-top": "99999",
|
|
114
|
-
"g-z-index-bottom": "-100",
|
|
115
|
-
"g-animation-duration-10": "100ms",
|
|
116
|
-
"g-animation-duration-20": "200ms",
|
|
117
|
-
"g-animation-duration-30": "300ms",
|
|
118
|
-
"g-animation-duration-40": "400ms",
|
|
119
|
-
"g-animation-timing-function-ease": "ease-in-out",
|
|
120
|
-
"g-animation-timing-function-linear": "linear",
|
|
121
|
-
"g-theme-animation-fade-quick": "100ms",
|
|
122
|
-
"g-theme-animation-fade-long": "400ms",
|
|
123
|
-
"g-theme-animation-move-quick": "200ms",
|
|
124
|
-
"g-theme-animation-move-long": "400ms",
|
|
125
|
-
"g-theme-animation-ease": "ease-in-out",
|
|
126
|
-
"g-border-radius-125": "0.125rem",
|
|
127
|
-
"g-border-radius-250": "0.25rem",
|
|
128
|
-
"g-border-radius-500": "0.5rem",
|
|
129
|
-
"g-border-radius-1000": "1rem",
|
|
130
|
-
"g-border-radius-square": "0",
|
|
131
|
-
"g-border-radius-rounded": "50%",
|
|
132
|
-
"g-theme-border-radius-sm": "0.125rem",
|
|
133
|
-
"g-theme-border-radius-md": "0.5rem",
|
|
134
|
-
"g-theme-border-radius-lg": "1rem",
|
|
135
|
-
"g-border-width-1": "0.0625rem",
|
|
136
|
-
"g-border-width-2": "0.125rem",
|
|
137
|
-
"g-border-width-4": "0.25rem",
|
|
138
|
-
"g-theme-border-width-sm": "0.0625rem",
|
|
139
|
-
"g-theme-border-width-md": "0.125rem",
|
|
140
|
-
"g-theme-border-width-lg": "0.25rem",
|
|
141
133
|
"g-shadow-sm-x": "0rem",
|
|
142
134
|
"g-shadow-sm-y": "0.25rem",
|
|
143
135
|
"g-shadow-sm-blur": "0.25rem",
|
|
@@ -170,128 +162,114 @@
|
|
|
170
162
|
"g-theme-spacing-xl": "2rem",
|
|
171
163
|
"g-theme-spacing-2xl": "3rem",
|
|
172
164
|
"g-theme-spacing-3xl": "4rem",
|
|
173
|
-
"g-typography-font-family-system": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
174
|
-
"g-typography-font-family-greycliff": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
175
165
|
"g-typography-font-weight-400": "400",
|
|
176
166
|
"g-typography-font-weight-500": "500",
|
|
177
167
|
"g-typography-font-weight-600": "600",
|
|
178
168
|
"g-typography-font-weight-700": "700",
|
|
179
169
|
"g-typography-font-weight-800": "800",
|
|
180
170
|
"g-typography-font-weight-900": "900",
|
|
181
|
-
"g-typography-
|
|
182
|
-
"g-typography-
|
|
183
|
-
"g-typography-
|
|
184
|
-
"g-typography-
|
|
185
|
-
"g-typography-
|
|
186
|
-
"g-typography-
|
|
187
|
-
"g-typography-
|
|
188
|
-
"g-typography-font-size-32": "2rem",
|
|
189
|
-
"g-typography-font-size-40": "2.5rem",
|
|
190
|
-
"g-typography-font-size-48": "3rem",
|
|
191
|
-
"g-typography-font-size-56": "3.5rem",
|
|
192
|
-
"g-typography-font-size-64": "4rem",
|
|
193
|
-
"g-typography-font-size-100": "6.25rem",
|
|
194
|
-
"g-typography-line-height-16": "1rem",
|
|
195
|
-
"g-typography-line-height-20": "1.25rem",
|
|
196
|
-
"g-typography-line-height-24": "1.5rem",
|
|
197
|
-
"g-typography-line-height-28": "1.75rem",
|
|
198
|
-
"g-typography-line-height-32": "2rem",
|
|
199
|
-
"g-typography-line-height-36": "2.25rem",
|
|
200
|
-
"g-typography-line-height-40": "2.5rem",
|
|
201
|
-
"g-typography-line-height-48": "3rem",
|
|
202
|
-
"g-typography-line-height-56": "3.5rem",
|
|
203
|
-
"g-typography-line-height-64": "4rem",
|
|
204
|
-
"g-typography-line-height-72": "4.5rem",
|
|
205
|
-
"g-typography-line-height-110": "6.875rem",
|
|
206
|
-
"g-typography-letter-spacing-0": "0rem",
|
|
207
|
-
"g-typography-letter-spacing-2": "0.125rem",
|
|
208
|
-
"g-typography-letter-spacing-minus-2": "-0.125rem",
|
|
209
|
-
"g-typography-letter-spacing-minus-1-half": "-0.0938rem",
|
|
210
|
-
"g-typography-letter-spacing-minus-1": "-0.0625rem",
|
|
211
|
-
"g-typography-letter-spacing-minus-half": "-0.0313rem",
|
|
212
|
-
"g-typography-letter-spacing-half": "0.0313rem",
|
|
171
|
+
"g-typography-letter-spacing-none": "0rem",
|
|
172
|
+
"g-typography-letter-spacing-sm": "0.0313rem",
|
|
173
|
+
"g-typography-letter-spacing-lg": "0.125rem",
|
|
174
|
+
"g-typography-letter-spacing-neg-sm": "-0.0313rem",
|
|
175
|
+
"g-typography-letter-spacing-neg-md": "-0.0625rem",
|
|
176
|
+
"g-typography-letter-spacing-neg-lg": "-0.0938rem",
|
|
177
|
+
"g-typography-letter-spacing-neg-xl": "-0.125rem",
|
|
213
178
|
"g-typography-text-transform-none": "none",
|
|
214
179
|
"g-typography-text-transform-uppercase": "uppercase",
|
|
215
|
-
"g-
|
|
216
|
-
"g-
|
|
217
|
-
"g-
|
|
218
|
-
"g-
|
|
219
|
-
"g-
|
|
220
|
-
"g-
|
|
221
|
-
"g-
|
|
222
|
-
"g-
|
|
223
|
-
"g-
|
|
224
|
-
"g-
|
|
225
|
-
"g-
|
|
226
|
-
"g-
|
|
227
|
-
"g-
|
|
228
|
-
"g-
|
|
229
|
-
"g-
|
|
230
|
-
"g-theme-typography-
|
|
231
|
-
"g-theme-typography-
|
|
232
|
-
"g-theme-typography-
|
|
233
|
-
"g-theme-typography-
|
|
234
|
-
"g-theme-typography-
|
|
235
|
-
"g-theme-typography-
|
|
236
|
-
"g-theme-typography-
|
|
237
|
-
"g-theme-typography-
|
|
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-label-default-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
261
|
-
"g-theme-typography-label-default-font-weight": "600",
|
|
262
|
-
"g-theme-typography-label-default-font-size": "1rem",
|
|
263
|
-
"g-theme-typography-label-default-line-height": "1.5rem",
|
|
264
|
-
"g-theme-typography-label-default-letter-spacing": "0rem",
|
|
265
|
-
"g-theme-typography-label-sm-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
266
|
-
"g-theme-typography-label-sm-font-weight": "600",
|
|
267
|
-
"g-theme-typography-label-sm-font-size": "0.875rem",
|
|
268
|
-
"g-theme-typography-label-sm-line-height": "1.25rem",
|
|
269
|
-
"g-theme-typography-label-sm-letter-spacing": "0rem",
|
|
180
|
+
"g-typography-font-family-system": "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
181
|
+
"g-typography-font-family-greycliff": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
182
|
+
"g-typography-font-size-xs": "0.75rem",
|
|
183
|
+
"g-typography-font-size-sm": "0.875rem",
|
|
184
|
+
"g-typography-font-size-md": "1rem",
|
|
185
|
+
"g-typography-font-size-lg": "1.125rem",
|
|
186
|
+
"g-typography-font-size-xl": "1.25rem",
|
|
187
|
+
"g-typography-font-size-2xl": "1.5rem",
|
|
188
|
+
"g-typography-font-size-3xl": "1.75rem",
|
|
189
|
+
"g-typography-font-size-4xl": "2rem",
|
|
190
|
+
"g-typography-font-size-5xl": "2.5rem",
|
|
191
|
+
"g-typography-font-size-6xl": "3rem",
|
|
192
|
+
"g-typography-font-size-7xl": "3.5rem",
|
|
193
|
+
"g-typography-font-size-8xl": "4rem",
|
|
194
|
+
"g-typography-font-size-display": "6.25rem",
|
|
195
|
+
"g-theme-typography-h1-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
196
|
+
"g-theme-typography-h1-font-weight": "900",
|
|
197
|
+
"g-theme-typography-h1-font-size": "6.25rem",
|
|
198
|
+
"g-theme-typography-h1-line-height": "1.1",
|
|
199
|
+
"g-theme-typography-h1-letter-spacing": "0rem",
|
|
200
|
+
"g-theme-typography-h2-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
201
|
+
"g-theme-typography-h2-font-weight": "900",
|
|
202
|
+
"g-theme-typography-h2-font-size": "3rem",
|
|
203
|
+
"g-theme-typography-h2-line-height": "1.17",
|
|
204
|
+
"g-theme-typography-h2-letter-spacing": "0.0313rem",
|
|
205
|
+
"g-theme-typography-h3-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
206
|
+
"g-theme-typography-h3-font-weight": "900",
|
|
207
|
+
"g-theme-typography-h3-font-size": "2.5rem",
|
|
208
|
+
"g-theme-typography-h3-line-height": "1.2",
|
|
209
|
+
"g-theme-typography-h3-letter-spacing": "0.0313rem",
|
|
210
|
+
"g-theme-typography-h4-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
211
|
+
"g-theme-typography-h4-font-weight": "900",
|
|
212
|
+
"g-theme-typography-h4-font-size": "2rem",
|
|
213
|
+
"g-theme-typography-h4-line-height": "1.25",
|
|
214
|
+
"g-theme-typography-h4-letter-spacing": "0.0313rem",
|
|
215
|
+
"g-theme-typography-h5-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
216
|
+
"g-theme-typography-h5-font-weight": "900",
|
|
217
|
+
"g-theme-typography-h5-font-size": "1.75rem",
|
|
218
|
+
"g-theme-typography-h5-line-height": "1.29",
|
|
219
|
+
"g-theme-typography-h5-letter-spacing": "0.0313rem",
|
|
220
|
+
"g-theme-typography-h6-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
221
|
+
"g-theme-typography-h6-font-weight": "900",
|
|
222
|
+
"g-theme-typography-h6-font-size": "1.5rem",
|
|
223
|
+
"g-theme-typography-h6-line-height": "1.33",
|
|
224
|
+
"g-theme-typography-h6-letter-spacing": "0.0313rem",
|
|
270
225
|
"g-theme-typography-body-lg-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
271
226
|
"g-theme-typography-body-lg-font-weight": "400",
|
|
272
227
|
"g-theme-typography-body-lg-font-size": "1.25rem",
|
|
273
|
-
"g-theme-typography-body-lg-line-height": "1.
|
|
228
|
+
"g-theme-typography-body-lg-line-height": "1.4",
|
|
274
229
|
"g-theme-typography-body-lg-letter-spacing": "0rem",
|
|
275
|
-
"g-theme-typography-body-
|
|
276
|
-
"g-theme-typography-body-
|
|
277
|
-
"g-theme-typography-body-
|
|
278
|
-
"g-theme-typography-body-
|
|
279
|
-
"g-theme-typography-body-
|
|
230
|
+
"g-theme-typography-body-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
231
|
+
"g-theme-typography-body-font-weight": "500",
|
|
232
|
+
"g-theme-typography-body-font-size": "1rem",
|
|
233
|
+
"g-theme-typography-body-line-height": "1.5",
|
|
234
|
+
"g-theme-typography-body-letter-spacing": "0rem",
|
|
280
235
|
"g-theme-typography-body-sm-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
281
236
|
"g-theme-typography-body-sm-font-weight": "500",
|
|
282
237
|
"g-theme-typography-body-sm-font-size": "0.875rem",
|
|
283
|
-
"g-theme-typography-body-sm-line-height": "1.
|
|
238
|
+
"g-theme-typography-body-sm-line-height": "1.43",
|
|
284
239
|
"g-theme-typography-body-sm-letter-spacing": "0rem",
|
|
285
|
-
"g-theme-typography-
|
|
286
|
-
"g-theme-typography-
|
|
287
|
-
"g-theme-typography-
|
|
288
|
-
"g-theme-typography-
|
|
289
|
-
"g-theme-typography-
|
|
240
|
+
"g-theme-typography-label-lg-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
241
|
+
"g-theme-typography-label-lg-font-weight": "600",
|
|
242
|
+
"g-theme-typography-label-lg-font-size": "1.25rem",
|
|
243
|
+
"g-theme-typography-label-lg-line-height": "1.4",
|
|
244
|
+
"g-theme-typography-label-lg-letter-spacing": "0rem",
|
|
245
|
+
"g-theme-typography-label-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
246
|
+
"g-theme-typography-label-font-weight": "600",
|
|
247
|
+
"g-theme-typography-label-font-size": "1rem",
|
|
248
|
+
"g-theme-typography-label-line-height": "1.5",
|
|
249
|
+
"g-theme-typography-label-letter-spacing": "0rem",
|
|
250
|
+
"g-theme-typography-label-sm-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
251
|
+
"g-theme-typography-label-sm-font-weight": "600",
|
|
252
|
+
"g-theme-typography-label-sm-font-size": "0.875rem",
|
|
253
|
+
"g-theme-typography-label-sm-line-height": "1.43",
|
|
254
|
+
"g-theme-typography-label-sm-letter-spacing": "0rem",
|
|
255
|
+
"g-theme-typography-meta-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
256
|
+
"g-theme-typography-meta-font-weight": "600",
|
|
257
|
+
"g-theme-typography-meta-font-size": "0.875rem",
|
|
258
|
+
"g-theme-typography-meta-line-height": "1.43",
|
|
259
|
+
"g-theme-typography-meta-letter-spacing": "0.125rem",
|
|
290
260
|
"g-theme-typography-meta-sm-font-family": "Greycliff, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
|
|
291
261
|
"g-theme-typography-meta-sm-font-weight": "600",
|
|
292
262
|
"g-theme-typography-meta-sm-font-size": "0.75rem",
|
|
293
|
-
"g-theme-typography-meta-sm-line-height": "
|
|
263
|
+
"g-theme-typography-meta-sm-line-height": "1.33",
|
|
294
264
|
"g-theme-typography-meta-sm-letter-spacing": "0.125rem",
|
|
265
|
+
"g-z-index-0": "0",
|
|
266
|
+
"g-z-index-100": "100",
|
|
267
|
+
"g-z-index-200": "200",
|
|
268
|
+
"g-z-index-300": "300",
|
|
269
|
+
"g-z-index-400": "400",
|
|
270
|
+
"g-z-index-500": "500",
|
|
271
|
+
"g-z-index-top": "99999",
|
|
272
|
+
"g-z-index-bottom": "-100",
|
|
295
273
|
"g-theme-button-color-background-default": "oklch(95% 0.04 279.42)",
|
|
296
274
|
"g-theme-button-color-background-hover": "oklch(90% 0.08 279.42)",
|
|
297
275
|
"g-theme-button-color-background-active": "oklch(90% 0.08 279.42)",
|