@momentum-design/tokens 0.0.53 → 0.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/css/core/complete.css +4 -3
  2. package/dist/css/theme/aaos/day-complete.css +1 -1
  3. package/dist/css/theme/aaos/night-complete.css +1 -1
  4. package/dist/css/theme/webex/common-stable.css +11 -2
  5. package/dist/css/theme/webex/dark-complete.css +3 -3
  6. package/dist/css/theme/webex/dark-stable.css +47 -30
  7. package/dist/css/theme/webex/hc-dark-stable.css +281 -0
  8. package/dist/css/theme/webex/hc-light-stable.css +281 -0
  9. package/dist/css/theme/webex/light-complete.css +1 -1
  10. package/dist/css/theme/webex/light-stable.css +49 -28
  11. package/dist/ios/core/complete.swift +4 -3
  12. package/dist/ios/theme/aaos/day-complete.swift +1 -1
  13. package/dist/ios/theme/aaos/night-complete.swift +1 -1
  14. package/dist/ios/theme/webex/common-stable.swift +11 -2
  15. package/dist/ios/theme/webex/dark-complete.swift +3 -3
  16. package/dist/ios/theme/webex/dark-stable.swift +47 -30
  17. package/dist/ios/theme/webex/hc-dark-stable.swift +287 -0
  18. package/dist/ios/theme/webex/hc-light-stable.swift +287 -0
  19. package/dist/ios/theme/webex/light-complete.swift +1 -1
  20. package/dist/ios/theme/webex/light-stable.swift +49 -28
  21. package/dist/json/core/complete.json +33 -4
  22. package/dist/json/theme/webex/common-stable.json +257 -1
  23. package/dist/json/theme/webex/dark-complete.json +2 -2
  24. package/dist/json/theme/webex/dark-stable.json +3690 -3225
  25. package/dist/json/theme/webex/hc-dark-stable.json +7232 -0
  26. package/dist/json/theme/webex/hc-light-stable.json +7228 -0
  27. package/dist/json/theme/webex/light-stable.json +3635 -3065
  28. package/dist/json-minimal/core/complete.json +3 -2
  29. package/dist/json-minimal/theme/webex/common-stable.json +14 -1
  30. package/dist/json-minimal/theme/webex/dark-complete.json +2 -2
  31. package/dist/json-minimal/theme/webex/dark-stable.json +93 -58
  32. package/dist/json-minimal/theme/webex/hc-dark-stable.json +552 -0
  33. package/dist/json-minimal/theme/webex/hc-light-stable.json +552 -0
  34. package/dist/json-minimal/theme/webex/light-stable.json +89 -54
  35. package/dist/resources/core/complete.xml +4 -3
  36. package/dist/resources/theme/aaos/day-complete.xml +1 -1
  37. package/dist/resources/theme/aaos/night-complete.xml +1 -1
  38. package/dist/resources/theme/webex/common-stable.xml +11 -2
  39. package/dist/resources/theme/webex/dark-complete.xml +3 -3
  40. package/dist/resources/theme/webex/dark-stable.xml +47 -30
  41. package/dist/resources/theme/webex/hc-dark-stable.xml +283 -0
  42. package/dist/resources/theme/webex/hc-light-stable.xml +283 -0
  43. package/dist/resources/theme/webex/light-complete.xml +1 -1
  44. package/dist/resources/theme/webex/light-stable.xml +49 -28
  45. package/dist/scss/core/complete.scss +4 -3
  46. package/dist/scss/theme/aaos/day-complete.scss +1 -1
  47. package/dist/scss/theme/aaos/night-complete.scss +1 -1
  48. package/dist/scss/theme/webex/common-stable.scss +12 -3
  49. package/dist/scss/theme/webex/dark-complete.scss +3 -3
  50. package/dist/scss/theme/webex/dark-stable.scss +47 -30
  51. package/dist/scss/theme/webex/hc-dark-stable.scss +278 -0
  52. package/dist/scss/theme/webex/hc-light-stable.scss +278 -0
  53. package/dist/scss/theme/webex/light-complete.scss +1 -1
  54. package/dist/scss/theme/webex/light-stable.scss +49 -28
  55. package/package.json +1 -1
@@ -41,12 +41,13 @@
41
41
  },
42
42
  "black-alpha": {
43
43
  "0": "#00000000",
44
- "4": "#000000A",
45
- "7": "#0000012",
44
+ "4": "#0000000A",
45
+ "7": "#00000012",
46
46
  "11": "#0000001c",
47
47
  "20": "#00000033",
48
48
  "30": "#0000004d",
49
49
  "40": "#00000066",
50
+ "46": "#00000075",
50
51
  "50": "#00000080",
51
52
  "60": "#00000099",
52
53
  "70": "#000000b3",
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "secondary-dark": {
53
53
  "normal": "#00000000",
54
- "hover": "#0000012",
54
+ "hover": "#00000012",
55
55
  "pressed": "#00000033",
56
56
  "disabled": "#00000000"
57
57
  },
@@ -144,6 +144,19 @@
144
144
  "attention": "#fc8b98",
145
145
  "secure": "#64b4fa"
146
146
  }
147
+ },
148
+ "content": {
149
+ "partner": {
150
+ "doc": "#4285f4",
151
+ "excel": "#00893E",
152
+ "keynote": "#029CFB",
153
+ "onenote": "#B839DB",
154
+ "pdf": "#EE0507",
155
+ "powerpoint": "#D93E17",
156
+ "sheets": "#F4B400",
157
+ "slides": "#0F9D58",
158
+ "word": "#0078D6"
159
+ }
147
160
  }
148
161
  }
149
162
  }
@@ -331,13 +331,13 @@
331
331
  },
332
332
  "secondary": {
333
333
  "default": "#00000000",
334
- "hover": "#0000012",
334
+ "hover": "#00000012",
335
335
  "pressed": "#00000033",
336
336
  "disabled": "#00000033"
337
337
  },
338
338
  "tertiary": {
339
339
  "default": "#00000000",
340
- "hover": "#0000012",
340
+ "hover": "#00000012",
341
341
  "pressed": "#00000033",
342
342
  "disabled": "#00000033"
343
343
  }
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "secondary-dark": {
53
53
  "normal": "#00000000",
54
- "hover": "#0000012",
54
+ "hover": "#00000012",
55
55
  "pressed": "#00000033",
56
56
  "disabled": "#00000000"
57
57
  },
@@ -144,6 +144,19 @@
144
144
  "attention": "#fc8b98",
145
145
  "secure": "#64b4fa"
146
146
  }
147
+ },
148
+ "content": {
149
+ "partner": {
150
+ "doc": "#4285f4",
151
+ "excel": "#00893E",
152
+ "keynote": "#029CFB",
153
+ "onenote": "#B839DB",
154
+ "pdf": "#EE0507",
155
+ "powerpoint": "#D93E17",
156
+ "sheets": "#F4B400",
157
+ "slides": "#0F9D58",
158
+ "word": "#0078D6"
159
+ }
147
160
  }
148
161
  },
149
162
  "text": {
@@ -151,15 +164,8 @@
151
164
  "normal": "#fffffff2",
152
165
  "disabled": "#ffffff66"
153
166
  },
154
- "inverted": {
155
- "normal": "#000000f2",
156
- "disabled": "#00000080"
157
- },
158
167
  "secondary": {
159
- "normal": "#ffffffb3",
160
- "inverted": {
161
- "normal": "#000000b3"
162
- }
168
+ "normal": "#ffffffb3"
163
169
  },
164
170
  "error": {
165
171
  "normal": "#fc8b98",
@@ -252,6 +258,65 @@
252
258
  }
253
259
  }
254
260
  },
261
+ "inverted": {
262
+ "text": {
263
+ "primary": {
264
+ "normal": "#000000f2",
265
+ "disabled": "#00000066"
266
+ },
267
+ "secondary": {
268
+ "normal": "#000000b3"
269
+ },
270
+ "accent": {
271
+ "normal": "#0353a8",
272
+ "hover": "#0a274a"
273
+ }
274
+ },
275
+ "background": {
276
+ "normal": "#ffffff"
277
+ },
278
+ "button": {
279
+ "primary": {
280
+ "normal": "#000000f2",
281
+ "hover": "#000000cc",
282
+ "pressed": "#000000b3",
283
+ "disabled": "#00000033"
284
+ },
285
+ "secondary": {
286
+ "normal": "#00000000",
287
+ "hover": "#00000012",
288
+ "pressed": "#00000033",
289
+ "disabled": "#00000000"
290
+ }
291
+ },
292
+ "outline": {
293
+ "button": {
294
+ "normal": "#00000080"
295
+ },
296
+ "primary": {
297
+ "normal": "#00000075"
298
+ },
299
+ "disabled": {
300
+ "normal": "#00000033"
301
+ },
302
+ "theme": "#1170cf"
303
+ },
304
+ "control": {
305
+ "active": {
306
+ "normal": "#1170cf",
307
+ "hover": "#0353a8",
308
+ "pressed": "#063a75",
309
+ "active": "#063a75",
310
+ "disabled": "#00000033"
311
+ },
312
+ "inactive": {
313
+ "normal": "#8f8f8f",
314
+ "hover": "#0000004d",
315
+ "pressed": "#00000066",
316
+ "disabled": "#00000033"
317
+ }
318
+ }
319
+ },
255
320
  "background": {
256
321
  "primary": {
257
322
  "ghost": "#ffffff00",
@@ -288,9 +353,9 @@
288
353
  },
289
354
  "alert": {
290
355
  "default": {
291
- "normal": "#262626",
292
- "hover": "#262626",
293
- "active": "#3b3b3b"
356
+ "normal": "#3b3b3b",
357
+ "hover": "#3b3b3b",
358
+ "active": "#545454"
294
359
  },
295
360
  "success": {
296
361
  "normal": "#0e2b20",
@@ -378,6 +443,9 @@
378
443
  },
379
444
  "skeleton": {
380
445
  "normal": "linear-gradient(123deg, #ffffff33 14.98%, #ffffff4d 38.98%, #ffffff66 64.82%, #ffffff80);"
446
+ },
447
+ "reaction": {
448
+ "normal": "linear-gradient(180deg, #ffffff 90%, #ffffff 0%)"
381
449
  }
382
450
  },
383
451
  "button": {
@@ -401,11 +469,6 @@
401
469
  "pressed": "#ffffff66"
402
470
  }
403
471
  },
404
- "inverted": {
405
- "normal": "#0f0f0f",
406
- "hover": "#262626",
407
- "pressed": "#3b3b3b"
408
- },
409
472
  "join": {
410
473
  "normal": "#1d805f",
411
474
  "hover": "#185e46",
@@ -424,7 +487,7 @@
424
487
  },
425
488
  "outline": {
426
489
  "primary": {
427
- "normal": "#ffffff80"
490
+ "normal": "#ffffff66"
428
491
  },
429
492
  "theme": {
430
493
  "normal": "#64b4fa"
@@ -483,10 +546,15 @@
483
546
  "hover": "#3492eb",
484
547
  "pressed": "#1170cf",
485
548
  "active": "#1170cf",
486
- "disabled": "#063a75"
549
+ "disabled": "#ffffff33"
550
+ },
551
+ "indicator": {
552
+ "inactive": {
553
+ "normal": "#8f8f8f"
554
+ }
487
555
  },
488
556
  "inactive": {
489
- "normal": "#ffffff33",
557
+ "normal": "#ffffff00",
490
558
  "hover": "#ffffff4d",
491
559
  "pressed": "#ffffff66",
492
560
  "disabled": "#ffffff33"
@@ -495,6 +563,11 @@
495
563
  "overlay": {
496
564
  "meetings": {
497
565
  "normal": "#000000b3"
566
+ },
567
+ "text": {
568
+ "primary": {
569
+ "normal": "#000000f2"
570
+ }
498
571
  }
499
572
  },
500
573
  "indicator": {
@@ -596,44 +669,6 @@
596
669
  "normal": "#3b3b3b"
597
670
  }
598
671
  },
599
- "teaching": {
600
- "background": {
601
- "normal": "#ffffff"
602
- },
603
- "button": {
604
- "primary": {
605
- "normal": "#000000f2",
606
- "hover": "#000000cc",
607
- "pressed": "#000000b3",
608
- "disabled": "#00000033"
609
- },
610
- "secondary": {
611
- "normal": "#00000000",
612
- "hover": "#0000012",
613
- "pressed": "#00000033"
614
- }
615
- },
616
- "outline": {
617
- "button": {
618
- "normal": "#0000004d"
619
- },
620
- "normal": "#00000033",
621
- "disabled": {
622
- "normal": "#00000033"
623
- },
624
- "theme": "#1170cf"
625
- },
626
- "text": {
627
- "accent": {
628
- "normal": "#0353a8",
629
- "hover": "#0a274a",
630
- "disabled": "#00000066"
631
- },
632
- "primary": {
633
- "disabled": "#00000066"
634
- }
635
- }
636
- },
637
672
  "gradientdivider": {
638
673
  "normal": {
639
674
  "0": "#ffffff00",