@oneli8/tokens 1.0.0-beta.2 → 1.0.0-beta.3
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/README.md +75 -69
- package/dist/figma/variables.json +3682 -0
- package/dist/status/components.json +158 -0
- package/dist/tailwind/preset.mjs +335 -0
- package/dist/tailwind/theme.css +303 -0
- package/dist/tokens.css +597 -0
- package/dist/tokens.d.ts +391 -0
- package/dist/tokens.js +387 -0
- package/package.json +43 -17
- package/src/tokens.json +1936 -0
- package/build/css/tokens.css +0 -840
- package/build/figma/variables.json +0 -7472
- package/build/manifest.json +0 -22
- package/build/status/components.json +0 -235
- package/build/tailwind/preset.mjs +0 -257
- package/build/tailwind/theme.css +0 -124
- package/build/typescript/index.d.ts +0 -10
- package/build/typescript/index.js +0 -6876
- package/schema/component-status.schema.json +0 -32
- package/schema/token-file.schema.json +0 -31
- package/scripts/build.mjs +0 -191
- package/scripts/test.mjs +0 -96
- package/src/component.json +0 -262
- package/src/primitive.json +0 -211
- package/src/semantic.json +0 -1299
- package/src/themes.json +0 -823
- package/status/components.json +0 -16
package/src/themes.json
DELETED
|
@@ -1,823 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../schema/token-file.schema.json",
|
|
3
|
-
"$description": "Independent Oneli8 mode axes. Compact typography is the semantic default.",
|
|
4
|
-
"$extensions": {
|
|
5
|
-
"oneli8.axes": {
|
|
6
|
-
"colorScheme":["light","dark"],
|
|
7
|
-
"primaryFamily":["blue","orange","green"],
|
|
8
|
-
"typographyViewport":["compact","medium","expanded"],
|
|
9
|
-
"accessibilityPreferences":["reducedMotion","reducedTransparency","increasedContrast","largerText"],
|
|
10
|
-
"direction":["ltr","rtl"]
|
|
11
|
-
},
|
|
12
|
-
"oneli8.rule":"Axes remain independent; adapters must not author a Cartesian product of modes."
|
|
13
|
-
},
|
|
14
|
-
"colorScheme": {
|
|
15
|
-
"light": {
|
|
16
|
-
"$description": "Canonical Light values are the Semantic defaults.",
|
|
17
|
-
"overrides": {}
|
|
18
|
-
},
|
|
19
|
-
"dark": {
|
|
20
|
-
"$description": "Approved Dark semantic color mappings.",
|
|
21
|
-
"overrides": {
|
|
22
|
-
"color.background.canvas": {
|
|
23
|
-
"$type": "color",
|
|
24
|
-
"$value": "{color.neutral.930}",
|
|
25
|
-
"$description": "Dark root background."
|
|
26
|
-
},
|
|
27
|
-
"color.background.subtle": {
|
|
28
|
-
"$type": "color",
|
|
29
|
-
"$value": "{color.neutral.840}",
|
|
30
|
-
"$description": "Dark quiet background."
|
|
31
|
-
},
|
|
32
|
-
"color.background.inverse": {
|
|
33
|
-
"$type": "color",
|
|
34
|
-
"$value": "{color.neutral.030}",
|
|
35
|
-
"$description": "Dark-mode inverse region."
|
|
36
|
-
},
|
|
37
|
-
"color.surface.default": {
|
|
38
|
-
"$type": "color",
|
|
39
|
-
"$value": "{color.neutral.840}",
|
|
40
|
-
"$description": "Dark cards, menus, controls, and panels."
|
|
41
|
-
},
|
|
42
|
-
"color.surface.raised": {
|
|
43
|
-
"$type": "color",
|
|
44
|
-
"$value": "{color.neutral.720}",
|
|
45
|
-
"$description": "Dark floating surface."
|
|
46
|
-
},
|
|
47
|
-
"color.surface.sunken": {
|
|
48
|
-
"$type": "color",
|
|
49
|
-
"$value": "{color.neutral.930}",
|
|
50
|
-
"$description": "Dark recessed surface."
|
|
51
|
-
},
|
|
52
|
-
"color.surface.selected": {
|
|
53
|
-
"$type": "color",
|
|
54
|
-
"$value": "{color.primary.120}",
|
|
55
|
-
"$description": "Dark persistent selection surface qualified by the active Primary family."
|
|
56
|
-
},
|
|
57
|
-
"color.surface.disabled": {
|
|
58
|
-
"$type": "color",
|
|
59
|
-
"$value": "{color.blue.840}",
|
|
60
|
-
"$description": "Dark disabled surface."
|
|
61
|
-
},
|
|
62
|
-
"color.text.primary": {
|
|
63
|
-
"$type": "color",
|
|
64
|
-
"$value": "{color.neutral.030}",
|
|
65
|
-
"$description": "Dark essential content."
|
|
66
|
-
},
|
|
67
|
-
"color.text.secondary": {
|
|
68
|
-
"$type": "color",
|
|
69
|
-
"$value": "{color.neutral.120}",
|
|
70
|
-
"$description": "Dark supporting content."
|
|
71
|
-
},
|
|
72
|
-
"color.text.muted": {
|
|
73
|
-
"$type": "color",
|
|
74
|
-
"$value": "{color.neutral.240}",
|
|
75
|
-
"$description": "Dark low-emphasis content."
|
|
76
|
-
},
|
|
77
|
-
"color.text.disabled": {
|
|
78
|
-
"$type": "color",
|
|
79
|
-
"$value": "{color.neutral.240}",
|
|
80
|
-
"$description": "Dark disabled labels."
|
|
81
|
-
},
|
|
82
|
-
"color.text.inverse": {
|
|
83
|
-
"$type": "color",
|
|
84
|
-
"$value": "{color.neutral.930}",
|
|
85
|
-
"$description": "Content on a light inverse region."
|
|
86
|
-
},
|
|
87
|
-
"color.text.link.default": {
|
|
88
|
-
"$type": "color",
|
|
89
|
-
"$value": "{color.primary.120}",
|
|
90
|
-
"$description": "Dark navigational text at rest."
|
|
91
|
-
},
|
|
92
|
-
"color.text.link.hover": {
|
|
93
|
-
"$type": "color",
|
|
94
|
-
"$value": "{color.primary.090}",
|
|
95
|
-
"$description": "Dark navigational text on Hover."
|
|
96
|
-
},
|
|
97
|
-
"color.text.link.pressed": {
|
|
98
|
-
"$type": "color",
|
|
99
|
-
"$value": "{color.primary.060}",
|
|
100
|
-
"$description": "Dark navigational text while Pressed."
|
|
101
|
-
},
|
|
102
|
-
"color.text.link.visited": {
|
|
103
|
-
"$type": "color",
|
|
104
|
-
"$value": "{color.violet.120}",
|
|
105
|
-
"$description": "Dark optional Visited orientation cue."
|
|
106
|
-
},
|
|
107
|
-
"color.icon.primary": {
|
|
108
|
-
"$type": "color",
|
|
109
|
-
"$value": "{color.neutral.030}",
|
|
110
|
-
"$description": "Dark essential icons."
|
|
111
|
-
},
|
|
112
|
-
"color.icon.secondary": {
|
|
113
|
-
"$type": "color",
|
|
114
|
-
"$value": "{color.neutral.120}",
|
|
115
|
-
"$description": "Dark supporting icons."
|
|
116
|
-
},
|
|
117
|
-
"color.icon.muted": {
|
|
118
|
-
"$type": "color",
|
|
119
|
-
"$value": "{color.neutral.240}",
|
|
120
|
-
"$description": "Dark quiet icons."
|
|
121
|
-
},
|
|
122
|
-
"color.icon.disabled": {
|
|
123
|
-
"$type": "color",
|
|
124
|
-
"$value": "{color.neutral.360}",
|
|
125
|
-
"$description": "Dark inactive icon cue."
|
|
126
|
-
},
|
|
127
|
-
"color.icon.inverse": {
|
|
128
|
-
"$type": "color",
|
|
129
|
-
"$value": "{color.neutral.930}",
|
|
130
|
-
"$description": "Dark-mode inverse icon."
|
|
131
|
-
},
|
|
132
|
-
"color.border.subtle": {
|
|
133
|
-
"$type": "color",
|
|
134
|
-
"$value": "{color.neutral.720}",
|
|
135
|
-
"$description": "Dark decorative separation."
|
|
136
|
-
},
|
|
137
|
-
"color.border.default": {
|
|
138
|
-
"$type": "color",
|
|
139
|
-
"$value": "{color.neutral.240}",
|
|
140
|
-
"$description": "Dark essential boundary."
|
|
141
|
-
},
|
|
142
|
-
"color.border.strong": {
|
|
143
|
-
"$type": "color",
|
|
144
|
-
"$value": "{color.neutral.120}",
|
|
145
|
-
"$description": "Dark emphasized boundary."
|
|
146
|
-
},
|
|
147
|
-
"color.border.disabled": {
|
|
148
|
-
"$type": "color",
|
|
149
|
-
"$value": "{color.neutral.240}",
|
|
150
|
-
"$description": "Dark disabled boundary."
|
|
151
|
-
},
|
|
152
|
-
"color.focus.inner": {
|
|
153
|
-
"$type": "color",
|
|
154
|
-
"$value": "{color.primary.930}",
|
|
155
|
-
"$description": "Dark appearance focus shadow from the active qualified family."
|
|
156
|
-
},
|
|
157
|
-
"color.focus.outer": {
|
|
158
|
-
"$type": "color",
|
|
159
|
-
"$value": "{color.primary.030}",
|
|
160
|
-
"$description": "Dark appearance focus highlight from the active qualified family."
|
|
161
|
-
},
|
|
162
|
-
"color.actionPrimary.default": {
|
|
163
|
-
"$type": "color",
|
|
164
|
-
"$value": "{color.primary.120}",
|
|
165
|
-
"$description": "Dark Primary action default surface."
|
|
166
|
-
},
|
|
167
|
-
"color.actionPrimary.hover": {
|
|
168
|
-
"$type": "color",
|
|
169
|
-
"$value": "{color.primary.090}",
|
|
170
|
-
"$description": "Dark Primary action hover surface."
|
|
171
|
-
},
|
|
172
|
-
"color.actionPrimary.pressed": {
|
|
173
|
-
"$type": "color",
|
|
174
|
-
"$value": "{color.primary.060}",
|
|
175
|
-
"$description": "Dark Primary action pressed surface."
|
|
176
|
-
},
|
|
177
|
-
"color.actionPrimary.content": {
|
|
178
|
-
"$type": "color",
|
|
179
|
-
"$value": "{color.primary.930}",
|
|
180
|
-
"$description": "Dark Primary action foreground."
|
|
181
|
-
},
|
|
182
|
-
"color.actionPrimary.disabled": {
|
|
183
|
-
"$type": "color",
|
|
184
|
-
"$value": "{color.blue.840}",
|
|
185
|
-
"$description": "Dark Primary action disabled surface."
|
|
186
|
-
},
|
|
187
|
-
"color.actionPrimary.disabledContent": {
|
|
188
|
-
"$type": "color",
|
|
189
|
-
"$value": "{color.neutral.240}",
|
|
190
|
-
"$description": "Dark Primary action disabled foreground."
|
|
191
|
-
},
|
|
192
|
-
"color.actionSecondary.surfaceDefault": {
|
|
193
|
-
"$type": "color",
|
|
194
|
-
"$value": "transparent",
|
|
195
|
-
"$description": "Dark Secondary default surface."
|
|
196
|
-
},
|
|
197
|
-
"color.actionSecondary.surfaceHover": {
|
|
198
|
-
"$type": "color",
|
|
199
|
-
"$value": "{color.primary.930}",
|
|
200
|
-
"$description": "Dark Secondary hover surface."
|
|
201
|
-
},
|
|
202
|
-
"color.actionSecondary.surfacePressed": {
|
|
203
|
-
"$type": "color",
|
|
204
|
-
"$value": "{color.primary.840}",
|
|
205
|
-
"$description": "Dark Secondary pressed surface."
|
|
206
|
-
},
|
|
207
|
-
"color.actionSecondary.surfaceDisabled": {
|
|
208
|
-
"$type": "color",
|
|
209
|
-
"$value": "transparent",
|
|
210
|
-
"$description": "Dark Secondary disabled surface."
|
|
211
|
-
},
|
|
212
|
-
"color.actionSecondary.contentDefault": {
|
|
213
|
-
"$type": "color",
|
|
214
|
-
"$value": "{color.primary.120}",
|
|
215
|
-
"$description": "Dark Secondary default content and border."
|
|
216
|
-
},
|
|
217
|
-
"color.actionSecondary.contentHover": {
|
|
218
|
-
"$type": "color",
|
|
219
|
-
"$value": "{color.primary.120}",
|
|
220
|
-
"$description": "Dark Secondary hover content and border."
|
|
221
|
-
},
|
|
222
|
-
"color.actionSecondary.contentPressed": {
|
|
223
|
-
"$type": "color",
|
|
224
|
-
"$value": "{color.primary.090}",
|
|
225
|
-
"$description": "Dark Secondary pressed content and border."
|
|
226
|
-
},
|
|
227
|
-
"color.actionSecondary.contentDisabled": {
|
|
228
|
-
"$type": "color",
|
|
229
|
-
"$value": "{color.neutral.240}",
|
|
230
|
-
"$description": "Dark Secondary disabled content and border."
|
|
231
|
-
},
|
|
232
|
-
"color.actionQuiet.surfaceDefault": {
|
|
233
|
-
"$type": "color",
|
|
234
|
-
"$value": "transparent",
|
|
235
|
-
"$description": "Dark Quiet default surface."
|
|
236
|
-
},
|
|
237
|
-
"color.actionQuiet.surfaceHover": {
|
|
238
|
-
"$type": "color",
|
|
239
|
-
"$value": "{color.primary.930}",
|
|
240
|
-
"$description": "Dark Quiet hover surface."
|
|
241
|
-
},
|
|
242
|
-
"color.actionQuiet.surfacePressed": {
|
|
243
|
-
"$type": "color",
|
|
244
|
-
"$value": "{color.primary.840}",
|
|
245
|
-
"$description": "Dark Quiet pressed surface."
|
|
246
|
-
},
|
|
247
|
-
"color.actionQuiet.surfaceDisabled": {
|
|
248
|
-
"$type": "color",
|
|
249
|
-
"$value": "transparent",
|
|
250
|
-
"$description": "Dark Quiet disabled surface."
|
|
251
|
-
},
|
|
252
|
-
"color.actionQuiet.contentDefault": {
|
|
253
|
-
"$type": "color",
|
|
254
|
-
"$value": "{color.primary.120}",
|
|
255
|
-
"$description": "Dark Quiet default content."
|
|
256
|
-
},
|
|
257
|
-
"color.actionQuiet.contentHover": {
|
|
258
|
-
"$type": "color",
|
|
259
|
-
"$value": "{color.primary.120}",
|
|
260
|
-
"$description": "Dark Quiet hover content."
|
|
261
|
-
},
|
|
262
|
-
"color.actionQuiet.contentPressed": {
|
|
263
|
-
"$type": "color",
|
|
264
|
-
"$value": "{color.primary.090}",
|
|
265
|
-
"$description": "Dark Quiet pressed content."
|
|
266
|
-
},
|
|
267
|
-
"color.actionQuiet.contentDisabled": {
|
|
268
|
-
"$type": "color",
|
|
269
|
-
"$value": "{color.neutral.240}",
|
|
270
|
-
"$description": "Dark Quiet disabled content."
|
|
271
|
-
},
|
|
272
|
-
"color.iconButton.secondaryHoverSurface": {
|
|
273
|
-
"$type": "color",
|
|
274
|
-
"$value": "{color.primary.720}",
|
|
275
|
-
"$description": "Dark Icon Button Secondary hover surface with visible separation from the canvas."
|
|
276
|
-
},
|
|
277
|
-
"color.iconButton.quietHoverSurface": {
|
|
278
|
-
"$type": "color",
|
|
279
|
-
"$value": "{color.primary.720}",
|
|
280
|
-
"$description": "Dark Icon Button Quiet hover surface with visible separation from the canvas."
|
|
281
|
-
},
|
|
282
|
-
"color.actionDestructive.default": {
|
|
283
|
-
"$type": "color",
|
|
284
|
-
"$value": "{color.red.120}",
|
|
285
|
-
"$description": "Dark Destructive default surface."
|
|
286
|
-
},
|
|
287
|
-
"color.actionDestructive.hover": {
|
|
288
|
-
"$type": "color",
|
|
289
|
-
"$value": "{color.red.090}",
|
|
290
|
-
"$description": "Dark Destructive hover surface."
|
|
291
|
-
},
|
|
292
|
-
"color.actionDestructive.pressed": {
|
|
293
|
-
"$type": "color",
|
|
294
|
-
"$value": "{color.red.060}",
|
|
295
|
-
"$description": "Dark Destructive pressed surface."
|
|
296
|
-
},
|
|
297
|
-
"color.actionDestructive.content": {
|
|
298
|
-
"$type": "color",
|
|
299
|
-
"$value": "{color.red.930}",
|
|
300
|
-
"$description": "Dark Destructive foreground."
|
|
301
|
-
},
|
|
302
|
-
"color.actionDestructive.disabled": {
|
|
303
|
-
"$type": "color",
|
|
304
|
-
"$value": "{color.blue.840}",
|
|
305
|
-
"$description": "Dark Destructive disabled surface."
|
|
306
|
-
},
|
|
307
|
-
"color.actionDestructive.disabledContent": {
|
|
308
|
-
"$type": "color",
|
|
309
|
-
"$value": "{color.neutral.240}",
|
|
310
|
-
"$description": "Dark Destructive disabled foreground."
|
|
311
|
-
},
|
|
312
|
-
"color.feedbackInformative.surface": {
|
|
313
|
-
"$type": "color",
|
|
314
|
-
"$value": "{color.cyan.120}",
|
|
315
|
-
"$description": "Dark filled informative surface."
|
|
316
|
-
},
|
|
317
|
-
"color.feedbackInformative.content": {
|
|
318
|
-
"$type": "color",
|
|
319
|
-
"$value": "{color.cyan.930}",
|
|
320
|
-
"$description": "Dark filled informative foreground."
|
|
321
|
-
},
|
|
322
|
-
"color.feedbackInformative.inlineContent": {
|
|
323
|
-
"$type": "color",
|
|
324
|
-
"$value": "{color.blue.120}",
|
|
325
|
-
"$description": "Dark inline informative content."
|
|
326
|
-
},
|
|
327
|
-
"color.feedbackPositive.surface": {
|
|
328
|
-
"$type": "color",
|
|
329
|
-
"$value": "{color.green.120}",
|
|
330
|
-
"$description": "Dark filled positive surface."
|
|
331
|
-
},
|
|
332
|
-
"color.feedbackPositive.content": {
|
|
333
|
-
"$type": "color",
|
|
334
|
-
"$value": "{color.green.930}",
|
|
335
|
-
"$description": "Dark filled positive foreground."
|
|
336
|
-
},
|
|
337
|
-
"color.feedbackPositive.inlineContent": {
|
|
338
|
-
"$type": "color",
|
|
339
|
-
"$value": "{color.green.120}",
|
|
340
|
-
"$description": "Dark inline positive content."
|
|
341
|
-
},
|
|
342
|
-
"color.feedbackCaution.surface": {
|
|
343
|
-
"$type": "color",
|
|
344
|
-
"$value": "{color.yellow.120}",
|
|
345
|
-
"$description": "Dark filled caution surface."
|
|
346
|
-
},
|
|
347
|
-
"color.feedbackCaution.content": {
|
|
348
|
-
"$type": "color",
|
|
349
|
-
"$value": "{color.yellow.930}",
|
|
350
|
-
"$description": "Dark filled caution foreground."
|
|
351
|
-
},
|
|
352
|
-
"color.feedbackCaution.inlineContent": {
|
|
353
|
-
"$type": "color",
|
|
354
|
-
"$value": "{color.yellow.120}",
|
|
355
|
-
"$description": "Dark inline caution content."
|
|
356
|
-
},
|
|
357
|
-
"color.feedbackCritical.surface": {
|
|
358
|
-
"$type": "color",
|
|
359
|
-
"$value": "{color.red.120}",
|
|
360
|
-
"$description": "Dark filled critical surface."
|
|
361
|
-
},
|
|
362
|
-
"color.feedbackCritical.content": {
|
|
363
|
-
"$type": "color",
|
|
364
|
-
"$value": "{color.red.930}",
|
|
365
|
-
"$description": "Dark filled critical foreground."
|
|
366
|
-
},
|
|
367
|
-
"color.feedbackCritical.inlineContent": {
|
|
368
|
-
"$type": "color",
|
|
369
|
-
"$value": "{color.red.120}",
|
|
370
|
-
"$description": "Dark inline critical content."
|
|
371
|
-
},
|
|
372
|
-
"color.selection.surface": {
|
|
373
|
-
"$type": "color",
|
|
374
|
-
"$value": "{color.primary.120}",
|
|
375
|
-
"$description": "Dark persistent selected surface qualified by the active Primary family."
|
|
376
|
-
},
|
|
377
|
-
"color.selection.content": {
|
|
378
|
-
"$type": "color",
|
|
379
|
-
"$value": "{color.primary.930}",
|
|
380
|
-
"$description": "Dark selected content qualified by the active Primary family."
|
|
381
|
-
},
|
|
382
|
-
"elevation.surface.flat": {
|
|
383
|
-
"$type": "shadow",
|
|
384
|
-
"$value": [],
|
|
385
|
-
"$description": "Dark mode has no Flat shadow."
|
|
386
|
-
},
|
|
387
|
-
"elevation.surface.raised": {
|
|
388
|
-
"$type": "shadow",
|
|
389
|
-
"$value": [
|
|
390
|
-
{
|
|
391
|
-
"color": "{color.cyan.840}",
|
|
392
|
-
"offsetX": "{dimension.scale.000}",
|
|
393
|
-
"offsetY": "{dimension.scale.003}",
|
|
394
|
-
"blur": "{dimension.scale.006}",
|
|
395
|
-
"spread": "{dimension.scale.000}",
|
|
396
|
-
"alpha": 0.36
|
|
397
|
-
}
|
|
398
|
-
],
|
|
399
|
-
"$description": "Dark Raised ambient-lift cue."
|
|
400
|
-
},
|
|
401
|
-
"elevation.surface.floating": {
|
|
402
|
-
"$type": "shadow",
|
|
403
|
-
"$value": [
|
|
404
|
-
{
|
|
405
|
-
"color": "{color.cyan.840}",
|
|
406
|
-
"offsetX": "{dimension.scale.000}",
|
|
407
|
-
"offsetY": "{dimension.scale.006}",
|
|
408
|
-
"blur": "{dimension.scale.018}",
|
|
409
|
-
"spread": {
|
|
410
|
-
"value": -3,
|
|
411
|
-
"unit": "px"
|
|
412
|
-
},
|
|
413
|
-
"alpha": 0.48
|
|
414
|
-
}
|
|
415
|
-
],
|
|
416
|
-
"$description": "Dark Floating ambient-lift cue."
|
|
417
|
-
},
|
|
418
|
-
"elevation.surface.overlay": {
|
|
419
|
-
"$type": "shadow",
|
|
420
|
-
"$value": [
|
|
421
|
-
{
|
|
422
|
-
"color": "{color.cyan.840}",
|
|
423
|
-
"offsetX": "{dimension.scale.000}",
|
|
424
|
-
"offsetY": "{dimension.scale.012}",
|
|
425
|
-
"blur": "{dimension.scale.036}",
|
|
426
|
-
"spread": {
|
|
427
|
-
"value": -6,
|
|
428
|
-
"unit": "px"
|
|
429
|
-
},
|
|
430
|
-
"alpha": 0.6
|
|
431
|
-
}
|
|
432
|
-
],
|
|
433
|
-
"$description": "Dark Overlay ambient-lift cue."
|
|
434
|
-
},
|
|
435
|
-
"elevation.surface.blocking": {
|
|
436
|
-
"$type": "shadow",
|
|
437
|
-
"$value": [
|
|
438
|
-
{
|
|
439
|
-
"color": "{color.cyan.840}",
|
|
440
|
-
"offsetX": "{dimension.scale.000}",
|
|
441
|
-
"offsetY": "{dimension.scale.024}",
|
|
442
|
-
"blur": "{dimension.scale.072}",
|
|
443
|
-
"spread": {
|
|
444
|
-
"value": -12,
|
|
445
|
-
"unit": "px"
|
|
446
|
-
},
|
|
447
|
-
"alpha": 0.72
|
|
448
|
-
}
|
|
449
|
-
],
|
|
450
|
-
"$description": "Dark Blocking ambient-lift cue."
|
|
451
|
-
},
|
|
452
|
-
"material.control.gem.primary.start": {
|
|
453
|
-
"$type": "color",
|
|
454
|
-
"$value": "{color.primary.600}",
|
|
455
|
-
"$description": "Deep Gem Primary leading stop in Dark appearance."
|
|
456
|
-
},
|
|
457
|
-
"material.control.gem.primary.mid": {
|
|
458
|
-
"$type": "color",
|
|
459
|
-
"$value": "{color.primary.720}",
|
|
460
|
-
"$description": "Deep Gem Primary middle stop in Dark appearance."
|
|
461
|
-
},
|
|
462
|
-
"material.control.gem.primary.end": {
|
|
463
|
-
"$type": "color",
|
|
464
|
-
"$value": "{color.primary.840}",
|
|
465
|
-
"$description": "Deep Gem Primary trailing stop in Dark appearance."
|
|
466
|
-
},
|
|
467
|
-
"material.control.gem.primary.hoverStart": {
|
|
468
|
-
"$type": "color",
|
|
469
|
-
"$value": "{color.primary.720}",
|
|
470
|
-
"$description": "Deep Gem Primary Hover leading stop in Dark appearance."
|
|
471
|
-
},
|
|
472
|
-
"material.control.gem.primary.hoverMid": {
|
|
473
|
-
"$type": "color",
|
|
474
|
-
"$value": "{color.primary.840}",
|
|
475
|
-
"$description": "Deep Gem Primary Hover middle stop in Dark appearance."
|
|
476
|
-
},
|
|
477
|
-
"material.control.gem.primary.hoverEnd": {
|
|
478
|
-
"$type": "color",
|
|
479
|
-
"$value": "{color.primary.930}",
|
|
480
|
-
"$description": "Deep Gem Primary Hover trailing stop in Dark appearance."
|
|
481
|
-
},
|
|
482
|
-
"material.gem.color.quiet.environmentalFace": {
|
|
483
|
-
"$type": "color",
|
|
484
|
-
"$value": {
|
|
485
|
-
"color": "{color.neutral.930}",
|
|
486
|
-
"alpha": 0.48
|
|
487
|
-
},
|
|
488
|
-
"$extensions": {
|
|
489
|
-
"oneli8.composite": "color-alpha"
|
|
490
|
-
},
|
|
491
|
-
"$description": "Quiet Dark Gem environmental face; transparent canonical slab material."
|
|
492
|
-
},
|
|
493
|
-
"material.gem.color.quiet.stabilizedFace": {
|
|
494
|
-
"$type": "color",
|
|
495
|
-
"$value": {
|
|
496
|
-
"color": "{color.neutral.840}",
|
|
497
|
-
"alpha": 0.72
|
|
498
|
-
},
|
|
499
|
-
"$extensions": {
|
|
500
|
-
"oneli8.composite": "color-alpha"
|
|
501
|
-
},
|
|
502
|
-
"$description": "Quiet Dark Gem stabilized plane."
|
|
503
|
-
},
|
|
504
|
-
"material.gem.color.quiet.opaqueEquivalent": {
|
|
505
|
-
"$type": "color",
|
|
506
|
-
"$value": "{color.neutral.840}",
|
|
507
|
-
"$description": "Quiet Dark Gem opaque equivalent."
|
|
508
|
-
},
|
|
509
|
-
"material.gem.color.cutEdge.high": {
|
|
510
|
-
"$type": "color",
|
|
511
|
-
"$value": {
|
|
512
|
-
"color": "{color.neutral.120}",
|
|
513
|
-
"alpha": 0.42
|
|
514
|
-
},
|
|
515
|
-
"$extensions": {
|
|
516
|
-
"oneli8.composite": "color-alpha"
|
|
517
|
-
},
|
|
518
|
-
"$description": "Dark directional bevel high stop."
|
|
519
|
-
},
|
|
520
|
-
"material.gem.color.cutEdge.mid": {
|
|
521
|
-
"$type": "color",
|
|
522
|
-
"$value": {
|
|
523
|
-
"color": "{color.blue.120}",
|
|
524
|
-
"alpha": 0.2
|
|
525
|
-
},
|
|
526
|
-
"$extensions": {
|
|
527
|
-
"oneli8.composite": "color-alpha"
|
|
528
|
-
},
|
|
529
|
-
"$description": "Dark directional bevel middle stop."
|
|
530
|
-
},
|
|
531
|
-
"material.gem.color.cutEdge.low": {
|
|
532
|
-
"$type": "color",
|
|
533
|
-
"$value": {
|
|
534
|
-
"color": "{color.neutral.120}",
|
|
535
|
-
"alpha": 0.03
|
|
536
|
-
},
|
|
537
|
-
"$extensions": {
|
|
538
|
-
"oneli8.composite": "color-alpha"
|
|
539
|
-
},
|
|
540
|
-
"$description": "Dark directional bevel fade."
|
|
541
|
-
},
|
|
542
|
-
"material.gem.color.cutEdge.shadow": {
|
|
543
|
-
"$type": "color",
|
|
544
|
-
"$value": {
|
|
545
|
-
"color": "{color.cyan.930}",
|
|
546
|
-
"alpha": 0.36
|
|
547
|
-
},
|
|
548
|
-
"$extensions": {
|
|
549
|
-
"oneli8.composite": "color-alpha"
|
|
550
|
-
},
|
|
551
|
-
"$description": "Dark directional bevel shadow."
|
|
552
|
-
},
|
|
553
|
-
"material.gem.color.innerThinCut.face": {
|
|
554
|
-
"$type": "color",
|
|
555
|
-
"$value": {
|
|
556
|
-
"color": "{color.neutral.840}",
|
|
557
|
-
"alpha": 0.72
|
|
558
|
-
},
|
|
559
|
-
"$extensions": {
|
|
560
|
-
"oneli8.composite": "color-alpha"
|
|
561
|
-
},
|
|
562
|
-
"$description": "Dark quiet inner face."
|
|
563
|
-
},
|
|
564
|
-
"material.gem.color.innerThinCut.high": {
|
|
565
|
-
"$type": "color",
|
|
566
|
-
"$value": {
|
|
567
|
-
"color": "{color.neutral.120}",
|
|
568
|
-
"alpha": 0.27
|
|
569
|
-
},
|
|
570
|
-
"$extensions": {
|
|
571
|
-
"oneli8.composite": "color-alpha"
|
|
572
|
-
},
|
|
573
|
-
"$description": "Dark inner Thin-Cut highlight."
|
|
574
|
-
},
|
|
575
|
-
"material.gem.color.innerThinCut.mid": {
|
|
576
|
-
"$type": "color",
|
|
577
|
-
"$value": {
|
|
578
|
-
"color": "{color.blue.120}",
|
|
579
|
-
"alpha": 0.12
|
|
580
|
-
},
|
|
581
|
-
"$extensions": {
|
|
582
|
-
"oneli8.composite": "color-alpha"
|
|
583
|
-
},
|
|
584
|
-
"$description": "Dark inner Thin-Cut middle tint."
|
|
585
|
-
},
|
|
586
|
-
"material.gem.color.innerThinCut.low": {
|
|
587
|
-
"$type": "color",
|
|
588
|
-
"$value": {
|
|
589
|
-
"color": "{color.neutral.120}",
|
|
590
|
-
"alpha": 0.03
|
|
591
|
-
},
|
|
592
|
-
"$extensions": {
|
|
593
|
-
"oneli8.composite": "color-alpha"
|
|
594
|
-
},
|
|
595
|
-
"$description": "Dark inner Thin-Cut fade."
|
|
596
|
-
},
|
|
597
|
-
"material.gem.color.facet.cool": {
|
|
598
|
-
"$type": "color",
|
|
599
|
-
"$value": {
|
|
600
|
-
"color": "{color.blue.120}",
|
|
601
|
-
"alpha": 0.14
|
|
602
|
-
},
|
|
603
|
-
"$extensions": {
|
|
604
|
-
"oneli8.composite": "color-alpha"
|
|
605
|
-
},
|
|
606
|
-
"$description": "Dark optional cool facet tint."
|
|
607
|
-
},
|
|
608
|
-
"material.gem.color.facet.warm": {
|
|
609
|
-
"$type": "color",
|
|
610
|
-
"$value": {
|
|
611
|
-
"color": "{color.orange.120}",
|
|
612
|
-
"alpha": 0.09
|
|
613
|
-
},
|
|
614
|
-
"$extensions": {
|
|
615
|
-
"oneli8.composite": "color-alpha"
|
|
616
|
-
},
|
|
617
|
-
"$description": "Dark optional warm facet tint."
|
|
618
|
-
}
|
|
619
|
-
}
|
|
620
|
-
}
|
|
621
|
-
},
|
|
622
|
-
"primaryFamily": {
|
|
623
|
-
"blue": {
|
|
624
|
-
"$description": "Blue Primary family aliases; composes with Light or Dark.",
|
|
625
|
-
"overrides": {
|
|
626
|
-
"color.primary.030": {
|
|
627
|
-
"$type": "color",
|
|
628
|
-
"$value": "{color.blue.030}",
|
|
629
|
-
"$description": "blue Primary-family 030 alias."
|
|
630
|
-
},
|
|
631
|
-
"color.primary.060": {
|
|
632
|
-
"$type": "color",
|
|
633
|
-
"$value": "{color.blue.060}",
|
|
634
|
-
"$description": "blue Primary-family 060 alias."
|
|
635
|
-
},
|
|
636
|
-
"color.primary.090": {
|
|
637
|
-
"$type": "color",
|
|
638
|
-
"$value": "{color.blue.090}",
|
|
639
|
-
"$description": "blue Primary-family 090 alias."
|
|
640
|
-
},
|
|
641
|
-
"color.primary.120": {
|
|
642
|
-
"$type": "color",
|
|
643
|
-
"$value": "{color.blue.120}",
|
|
644
|
-
"$description": "blue Primary-family 120 alias."
|
|
645
|
-
},
|
|
646
|
-
"color.primary.240": {
|
|
647
|
-
"$type": "color",
|
|
648
|
-
"$value": "{color.blue.240}",
|
|
649
|
-
"$description": "blue Primary-family 240 alias."
|
|
650
|
-
},
|
|
651
|
-
"color.primary.360": {
|
|
652
|
-
"$type": "color",
|
|
653
|
-
"$value": "{color.blue.360}",
|
|
654
|
-
"$description": "blue Primary-family 360 alias."
|
|
655
|
-
},
|
|
656
|
-
"color.primary.480": {
|
|
657
|
-
"$type": "color",
|
|
658
|
-
"$value": "{color.blue.480}",
|
|
659
|
-
"$description": "blue Primary-family 480 alias."
|
|
660
|
-
},
|
|
661
|
-
"color.primary.600": {
|
|
662
|
-
"$type": "color",
|
|
663
|
-
"$value": "{color.blue.600}",
|
|
664
|
-
"$description": "blue Primary-family 600 alias."
|
|
665
|
-
},
|
|
666
|
-
"color.primary.720": {
|
|
667
|
-
"$type": "color",
|
|
668
|
-
"$value": "{color.blue.720}",
|
|
669
|
-
"$description": "blue Primary-family 720 alias."
|
|
670
|
-
},
|
|
671
|
-
"color.primary.840": {
|
|
672
|
-
"$type": "color",
|
|
673
|
-
"$value": "{color.blue.840}",
|
|
674
|
-
"$description": "blue Primary-family 840 alias."
|
|
675
|
-
},
|
|
676
|
-
"color.primary.930": {
|
|
677
|
-
"$type": "color",
|
|
678
|
-
"$value": "{color.blue.930}",
|
|
679
|
-
"$description": "blue Primary-family 930 alias."
|
|
680
|
-
}
|
|
681
|
-
}
|
|
682
|
-
},
|
|
683
|
-
"orange": {
|
|
684
|
-
"$description": "Orange Primary family aliases; composes with Light or Dark.",
|
|
685
|
-
"overrides": {
|
|
686
|
-
"color.primary.030": {
|
|
687
|
-
"$type": "color",
|
|
688
|
-
"$value": "{color.orange.030}",
|
|
689
|
-
"$description": "orange Primary-family 030 alias."
|
|
690
|
-
},
|
|
691
|
-
"color.primary.060": {
|
|
692
|
-
"$type": "color",
|
|
693
|
-
"$value": "{color.orange.060}",
|
|
694
|
-
"$description": "orange Primary-family 060 alias."
|
|
695
|
-
},
|
|
696
|
-
"color.primary.090": {
|
|
697
|
-
"$type": "color",
|
|
698
|
-
"$value": "{color.orange.090}",
|
|
699
|
-
"$description": "orange Primary-family 090 alias."
|
|
700
|
-
},
|
|
701
|
-
"color.primary.120": {
|
|
702
|
-
"$type": "color",
|
|
703
|
-
"$value": "{color.orange.120}",
|
|
704
|
-
"$description": "orange Primary-family 120 alias."
|
|
705
|
-
},
|
|
706
|
-
"color.primary.240": {
|
|
707
|
-
"$type": "color",
|
|
708
|
-
"$value": "{color.orange.240}",
|
|
709
|
-
"$description": "orange Primary-family 240 alias."
|
|
710
|
-
},
|
|
711
|
-
"color.primary.360": {
|
|
712
|
-
"$type": "color",
|
|
713
|
-
"$value": "{color.orange.360}",
|
|
714
|
-
"$description": "orange Primary-family 360 alias."
|
|
715
|
-
},
|
|
716
|
-
"color.primary.480": {
|
|
717
|
-
"$type": "color",
|
|
718
|
-
"$value": "{color.orange.480}",
|
|
719
|
-
"$description": "orange Primary-family 480 alias."
|
|
720
|
-
},
|
|
721
|
-
"color.primary.600": {
|
|
722
|
-
"$type": "color",
|
|
723
|
-
"$value": "{color.orange.600}",
|
|
724
|
-
"$description": "orange Primary-family 600 alias."
|
|
725
|
-
},
|
|
726
|
-
"color.primary.720": {
|
|
727
|
-
"$type": "color",
|
|
728
|
-
"$value": "{color.orange.720}",
|
|
729
|
-
"$description": "orange Primary-family 720 alias."
|
|
730
|
-
},
|
|
731
|
-
"color.primary.840": {
|
|
732
|
-
"$type": "color",
|
|
733
|
-
"$value": "{color.orange.840}",
|
|
734
|
-
"$description": "orange Primary-family 840 alias."
|
|
735
|
-
},
|
|
736
|
-
"color.primary.930": {
|
|
737
|
-
"$type": "color",
|
|
738
|
-
"$value": "{color.orange.930}",
|
|
739
|
-
"$description": "orange Primary-family 930 alias."
|
|
740
|
-
}
|
|
741
|
-
}
|
|
742
|
-
},
|
|
743
|
-
"green": {
|
|
744
|
-
"$description": "Green Primary family aliases; composes with Light or Dark.",
|
|
745
|
-
"overrides": {
|
|
746
|
-
"color.primary.030": {
|
|
747
|
-
"$type": "color",
|
|
748
|
-
"$value": "{color.green.030}",
|
|
749
|
-
"$description": "green Primary-family 030 alias."
|
|
750
|
-
},
|
|
751
|
-
"color.primary.060": {
|
|
752
|
-
"$type": "color",
|
|
753
|
-
"$value": "{color.green.060}",
|
|
754
|
-
"$description": "green Primary-family 060 alias."
|
|
755
|
-
},
|
|
756
|
-
"color.primary.090": {
|
|
757
|
-
"$type": "color",
|
|
758
|
-
"$value": "{color.green.090}",
|
|
759
|
-
"$description": "green Primary-family 090 alias."
|
|
760
|
-
},
|
|
761
|
-
"color.primary.120": {
|
|
762
|
-
"$type": "color",
|
|
763
|
-
"$value": "{color.green.120}",
|
|
764
|
-
"$description": "green Primary-family 120 alias."
|
|
765
|
-
},
|
|
766
|
-
"color.primary.240": {
|
|
767
|
-
"$type": "color",
|
|
768
|
-
"$value": "{color.green.240}",
|
|
769
|
-
"$description": "green Primary-family 240 alias."
|
|
770
|
-
},
|
|
771
|
-
"color.primary.360": {
|
|
772
|
-
"$type": "color",
|
|
773
|
-
"$value": "{color.green.360}",
|
|
774
|
-
"$description": "green Primary-family 360 alias."
|
|
775
|
-
},
|
|
776
|
-
"color.primary.480": {
|
|
777
|
-
"$type": "color",
|
|
778
|
-
"$value": "{color.green.480}",
|
|
779
|
-
"$description": "green Primary-family 480 alias."
|
|
780
|
-
},
|
|
781
|
-
"color.primary.600": {
|
|
782
|
-
"$type": "color",
|
|
783
|
-
"$value": "{color.green.600}",
|
|
784
|
-
"$description": "green Primary-family 600 alias."
|
|
785
|
-
},
|
|
786
|
-
"color.primary.720": {
|
|
787
|
-
"$type": "color",
|
|
788
|
-
"$value": "{color.green.720}",
|
|
789
|
-
"$description": "green Primary-family 720 alias."
|
|
790
|
-
},
|
|
791
|
-
"color.primary.840": {
|
|
792
|
-
"$type": "color",
|
|
793
|
-
"$value": "{color.green.840}",
|
|
794
|
-
"$description": "green Primary-family 840 alias."
|
|
795
|
-
},
|
|
796
|
-
"color.primary.930": {
|
|
797
|
-
"$type": "color",
|
|
798
|
-
"$value": "{color.green.930}",
|
|
799
|
-
"$description": "green Primary-family 930 alias."
|
|
800
|
-
}
|
|
801
|
-
}
|
|
802
|
-
}
|
|
803
|
-
},
|
|
804
|
-
"typographyViewport": {
|
|
805
|
-
"compact":{"$description":"Default semantic typography values; no override required.","overrides":{}},
|
|
806
|
-
"medium":{"$description":"Medium viewport typography mapping selected by the consuming layout adapter.","overrides":{
|
|
807
|
-
"typography.display.large":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.090}","fontWeight":"{font.weight.bold}","letterSpacing":"{font.tracking.tight}","lineHeight":"{font.line.096}"}},
|
|
808
|
-
"typography.display.medium":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.066}","fontWeight":"{font.weight.bold}","letterSpacing":"{font.tracking.snug}","lineHeight":"{font.line.072}"}},
|
|
809
|
-
"typography.display.small":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.051}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.displaySoft}","lineHeight":"{font.line.060}"}},
|
|
810
|
-
"typography.title.large":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.051}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.titleTight}","lineHeight":"{font.line.060}"}},
|
|
811
|
-
"typography.title.medium":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.039}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.titleSoft}","lineHeight":"{font.line.048}"}},
|
|
812
|
-
"typography.title.small":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.030}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.normal}","lineHeight":"{font.line.039}"}}
|
|
813
|
-
}},
|
|
814
|
-
"expanded":{"$description":"Expanded viewport typography mapping selected by the consuming layout adapter.","overrides":{
|
|
815
|
-
"typography.display.large":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.120}","fontWeight":"{font.weight.bold}","letterSpacing":"{font.tracking.tighter}","lineHeight":"{font.line.126}"}},
|
|
816
|
-
"typography.display.medium":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.090}","fontWeight":"{font.weight.bold}","letterSpacing":"{font.tracking.tight}","lineHeight":"{font.line.096}"}},
|
|
817
|
-
"typography.display.small":{"$type":"typography","$value":{"fontFamily":"{font.family.display}","fontSize":"{font.size.066}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.snug}","lineHeight":"{font.line.072}"}},
|
|
818
|
-
"typography.title.large":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.051}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.titleTight}","lineHeight":"{font.line.060}"}},
|
|
819
|
-
"typography.title.medium":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.039}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.titleSoft}","lineHeight":"{font.line.048}"}},
|
|
820
|
-
"typography.title.small":{"$type":"typography","$value":{"fontFamily":"{font.family.functional}","fontSize":"{font.size.030}","fontWeight":"{font.weight.semibold}","letterSpacing":"{font.tracking.normal}","lineHeight":"{font.line.039}"}}
|
|
821
|
-
}}
|
|
822
|
-
}
|
|
823
|
-
}
|