@vector-im/compound-design-tokens 0.0.2 → 0.0.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.
Files changed (53) hide show
  1. package/README.md +2 -1
  2. package/assets/web/css/cpd-common.css +53 -2
  3. package/assets/web/css/cpd-dark-hc-mq.css +238 -81
  4. package/assets/web/css/cpd-dark-hc.css +239 -82
  5. package/assets/web/css/cpd-dark-mq.css +311 -154
  6. package/assets/web/css/cpd-dark.css +312 -155
  7. package/assets/web/css/cpd-light-hc-mq.css +311 -154
  8. package/assets/web/css/cpd-light-hc.css +312 -155
  9. package/assets/web/css/cpd-light-mq.css +171 -14
  10. package/assets/web/css/cpd-light.css +172 -15
  11. package/assets/web/icons/$icons.json +1 -0
  12. package/assets/web/icons/chat.svg +3 -0
  13. package/assets/web/icons/check-circle.svg +3 -0
  14. package/assets/web/icons/check.svg +3 -0
  15. package/assets/web/icons/chevron.svg +3 -0
  16. package/assets/web/icons/close.svg +3 -0
  17. package/assets/web/icons/computer.svg +3 -0
  18. package/assets/web/icons/delete.svg +3 -0
  19. package/assets/web/icons/error.svg +3 -0
  20. package/assets/web/icons/info.svg +3 -0
  21. package/assets/web/icons/lock.svg +3 -0
  22. package/assets/web/icons/mobile.svg +3 -0
  23. package/assets/web/icons/thread.svg +1 -0
  24. package/assets/web/icons/user.svg +3 -0
  25. package/assets/web/icons/visibility-invisible.svg +3 -0
  26. package/assets/web/icons/visibility-visible.svg +3 -0
  27. package/assets/web/icons/web-browser.svg +3 -0
  28. package/assets/web/js/cpdDark.d.ts +457 -0
  29. package/assets/web/js/cpdDark.js +379 -155
  30. package/assets/web/js/cpdDarkHc.d.ts +457 -0
  31. package/assets/web/js/cpdDarkHc.js +306 -82
  32. package/assets/web/js/cpdLight.d.ts +457 -0
  33. package/assets/web/js/cpdLight.js +240 -16
  34. package/assets/web/js/cpdLightHc.d.ts +457 -0
  35. package/assets/web/js/cpdLightHc.js +379 -155
  36. package/icons/$icons.json +1 -0
  37. package/icons/chat.svg +3 -0
  38. package/icons/check-circle.svg +3 -0
  39. package/icons/check.svg +3 -0
  40. package/icons/chevron.svg +3 -0
  41. package/icons/close.svg +3 -0
  42. package/icons/computer.svg +3 -0
  43. package/icons/delete.svg +3 -0
  44. package/icons/error.svg +3 -0
  45. package/icons/info.svg +3 -0
  46. package/icons/lock.svg +3 -0
  47. package/icons/mobile.svg +3 -0
  48. package/icons/thread.svg +1 -0
  49. package/icons/user.svg +3 -0
  50. package/icons/visibility-invisible.svg +3 -0
  51. package/icons/visibility-visible.svg +3 -0
  52. package/icons/web-browser.svg +3 -0
  53. package/package.json +7 -3
@@ -36,7 +36,6 @@ export const cpdFontFamilyMono = "Inconsolata";
36
36
  export const cpdFontWeightRegular = "400";
37
37
  export const cpdFontWeightMedium = "500";
38
38
  export const cpdFontWeightSemibold = "600";
39
- export const cpdFontWeightBold = "700";
40
39
  export const cpdFontLineHeightMinimum = "1";
41
40
  export const cpdFontLineHeightTight = "1.25";
42
41
  export const cpdFontLineHeightRegular = "1.5";
@@ -77,20 +76,37 @@ export const cpdFontHeadingLgRegular = "400 1.75rem/1.25 Inter";
77
76
  export const cpdFontHeadingLgSemibold = "600 1.75rem/1.25 Inter";
78
77
  export const cpdFontHeadingXlRegular = "400 2rem/1.25 Inter";
79
78
  export const cpdFontHeadingXlSemibold = "600 2rem/1.25 Inter";
80
- export const cpdColorGray100 = "#fbfbfc";
81
- export const cpdColorGray200 = "#f7f8f9";
82
- export const cpdColorGray300 = "#eef1f3";
83
- export const cpdColorGray400 = "#e2e6ea";
84
- export const cpdColorGray500 = "#ccd3da";
85
- export const cpdColorGray600 = "#bcc5ce";
86
- export const cpdColorGray700 = "#a2aebc";
87
- export const cpdColorGray800 = "#798b9d";
88
- export const cpdColorGray900 = "#5b6e81";
89
- export const cpdColorGray1000 = "#4d5f72";
90
- export const cpdColorGray1100 = "#415265";
91
- export const cpdColorGray1200 = "#2f4152";
92
- export const cpdColorGray1300 = "#1e2e3f";
93
- export const cpdColorGray1400 = "#0f1e2e";
79
+ export const cpdIconChat = "icons/chat.svg";
80
+ export const cpdIconCheckCircle = "icons/check-circle.svg";
81
+ export const cpdIconCheck = "icons/check.svg";
82
+ export const cpdIconChevron = "icons/chevron.svg";
83
+ export const cpdIconClose = "icons/close.svg";
84
+ export const cpdIconComputer = "icons/computer.svg";
85
+ export const cpdIconDelete = "icons/delete.svg";
86
+ export const cpdIconError = "icons/error.svg";
87
+ export const cpdIconInfo = "icons/info.svg";
88
+ export const cpdIconLock = "icons/lock.svg";
89
+ export const cpdIconMobile = "icons/mobile.svg";
90
+ export const cpdIconThread = "icons/thread.svg";
91
+ export const cpdIconUser = "icons/user.svg";
92
+ export const cpdIconVisibilityInvisible = "icons/visibility-invisible.svg";
93
+ export const cpdIconVisibilityVisible = "icons/visibility-visible.svg";
94
+ export const cpdIconWebBrowser = "icons/web-browser.svg";
95
+ export const cpdColorThemeBg = "#ffffff";
96
+ export const cpdColorGray100 = "#fbfcfd";
97
+ export const cpdColorGray200 = "#f7f9fa";
98
+ export const cpdColorGray300 = "#f0f2f5";
99
+ export const cpdColorGray400 = "#e1e6ec";
100
+ export const cpdColorGray500 = "#cdd3da";
101
+ export const cpdColorGray600 = "#bdc4cc";
102
+ export const cpdColorGray700 = "#a6adb7";
103
+ export const cpdColorGray800 = "#818a95";
104
+ export const cpdColorGray900 = "#656d77";
105
+ export const cpdColorGray1000 = "#595e67";
106
+ export const cpdColorGray1100 = "#4c5158";
107
+ export const cpdColorGray1200 = "#3c4045";
108
+ export const cpdColorGray1300 = "#2b2d32";
109
+ export const cpdColorGray1400 = "#1b1d22";
94
110
  export const cpdColorRed100 = "#fffaf9";
95
111
  export const cpdColorRed200 = "#fff7f6";
96
112
  export const cpdColorRed300 = "#ffefec";
@@ -230,4 +246,212 @@ export const cpdColorPink1000 = "#b80a5b";
230
246
  export const cpdColorPink1100 = "#9f0850";
231
247
  export const cpdColorPink1200 = "#7e0642";
232
248
  export const cpdColorPink1300 = "#5f002b";
233
- export const cpdColorPink1400 = "#430017";
249
+ export const cpdColorPink1400 = "#430017";
250
+ export const cpdColorAlphaGray100 = "hsla(210, 48%, 41%, 0.02)";
251
+ export const cpdColorAlphaGray200 = "hsla(200, 41%, 36%, 0.04)";
252
+ export const cpdColorAlphaGray300 = "hsla(216, 89%, 18%, 0.06)";
253
+ export const cpdColorAlphaGray400 = "hsla(213, 90%, 20%, 0.12)";
254
+ export const cpdColorAlphaGray500 = "hsla(212, 87%, 15%, 0.2)";
255
+ export const cpdColorAlphaGray600 = "hsla(212, 97%, 12%, 0.26)";
256
+ export const cpdColorAlphaGray700 = "hsla(215, 96%, 10%, 0.35)";
257
+ export const cpdColorAlphaGray800 = "hsla(213, 87%, 9%, 0.5)";
258
+ export const cpdColorAlphaGray900 = "hsla(213, 83%, 7%, 0.61)";
259
+ export const cpdColorAlphaGray1000 = "hsla(218, 79%, 6%, 0.66)";
260
+ export const cpdColorAlphaGray1100 = "hsla(215, 74%, 5%, 0.71)";
261
+ export const cpdColorAlphaGray1200 = "hsla(213, 73%, 3%, 0.77)";
262
+ export const cpdColorAlphaGray1300 = "hsla(225, 57%, 3%, 0.84)";
263
+ export const cpdColorAlphaGray1400 = "hsla(223, 64%, 2%, 0.9)";
264
+ export const cpdColorAlphaRed100 = "hsla(10, 100%, 61%, 0.03)";
265
+ export const cpdColorAlphaRed200 = "hsla(7, 100%, 56%, 0.04)";
266
+ export const cpdColorAlphaRed300 = "hsla(9, 100%, 54%, 0.08)";
267
+ export const cpdColorAlphaRed400 = "hsla(8, 100%, 52%, 0.15)";
268
+ export const cpdColorAlphaRed500 = "hsla(8, 100%, 51%, 0.27)";
269
+ export const cpdColorAlphaRed600 = "hsla(7, 100%, 51%, 0.36)";
270
+ export const cpdColorAlphaRed700 = "hsla(5, 100%, 51%, 0.5)";
271
+ export const cpdColorAlphaRed800 = "hsla(0, 100%, 51%, 0.77)";
272
+ export const cpdColorAlphaRed900 = "hsla(355, 98%, 41%, 0.91)";
273
+ export const cpdColorAlphaRed1000 = "hsla(353, 98%, 37%, 0.95)";
274
+ export const cpdColorAlphaRed1100 = "hsla(350, 99%, 32%, 0.99)";
275
+ export const cpdColorAlphaRed1200 = "hsl(357, 100%, 26%, 1)";
276
+ export const cpdColorAlphaRed1300 = "hsl(0, 100%, 19%, 1)";
277
+ export const cpdColorAlphaRed1400 = "hsl(0, 100%, 14%, 1)";
278
+ export const cpdColorAlphaOrange100 = "hsla(22, 100%, 61%, 0.04)";
279
+ export const cpdColorAlphaOrange200 = "hsla(26, 100%, 55%, 0.07)";
280
+ export const cpdColorAlphaOrange300 = "hsla(24, 100%, 52%, 0.11)";
281
+ export const cpdColorAlphaOrange400 = "hsla(25, 100%, 51%, 0.22)";
282
+ export const cpdColorAlphaOrange500 = "hsla(25, 100%, 50%, 0.37)";
283
+ export const cpdColorAlphaOrange600 = "hsla(26, 98%, 50%, 0.52)";
284
+ export const cpdColorAlphaOrange700 = "hsla(27, 100%, 48%, 0.75)";
285
+ export const cpdColorAlphaOrange800 = "hsl(28, 100%, 43%, 1)";
286
+ export const cpdColorAlphaOrange900 = "hsl(22, 100%, 37%, 1)";
287
+ export const cpdColorAlphaOrange1000 = "hsl(18, 100%, 34%, 1)";
288
+ export const cpdColorAlphaOrange1100 = "hsl(13, 100%, 30%, 1)";
289
+ export const cpdColorAlphaOrange1200 = "hsl(0, 100%, 26%, 1)";
290
+ export const cpdColorAlphaOrange1300 = "hsl(0, 100%, 19%, 1)";
291
+ export const cpdColorAlphaOrange1400 = "hsl(0, 100%, 14%, 1)";
292
+ export const cpdColorAlphaYellow100 = "hsla(48, 100%, 51%, 0.06)";
293
+ export const cpdColorAlphaYellow200 = "hsla(46, 100%, 53%, 0.13)";
294
+ export const cpdColorAlphaYellow300 = "hsla(47, 100%, 51%, 0.25)";
295
+ export const cpdColorAlphaYellow400 = "hsla(47, 100%, 51%, 0.49)";
296
+ export const cpdColorAlphaYellow500 = "hsl(49, 100%, 49%, 1)";
297
+ export const cpdColorAlphaYellow600 = "hsl(47, 100%, 47%, 1)";
298
+ export const cpdColorAlphaYellow700 = "hsl(44, 100%, 44%, 1)";
299
+ export const cpdColorAlphaYellow800 = "hsl(39, 100%, 37%, 1)";
300
+ export const cpdColorAlphaYellow900 = "hsl(34, 100%, 31%, 1)";
301
+ export const cpdColorAlphaYellow1000 = "hsl(32, 100%, 28%, 1)";
302
+ export const cpdColorAlphaYellow1100 = "hsl(30, 100%, 25%, 1)";
303
+ export const cpdColorAlphaYellow1200 = "hsl(26, 100%, 21%, 1)";
304
+ export const cpdColorAlphaYellow1300 = "hsl(19, 100%, 17%, 1)";
305
+ export const cpdColorAlphaYellow1400 = "hsl(6, 100%, 13%, 1)";
306
+ export const cpdColorAlphaLime100 = "hsla(103, 75%, 46%, 0.04)";
307
+ export const cpdColorAlphaLime200 = "hsla(107, 89%, 44%, 0.07)";
308
+ export const cpdColorAlphaLime300 = "hsla(107, 98%, 41%, 0.15)";
309
+ export const cpdColorAlphaLime400 = "hsla(105, 92%, 42%, 0.28)";
310
+ export const cpdColorAlphaLime500 = "hsla(104, 98%, 40%, 0.51)";
311
+ export const cpdColorAlphaLime600 = "hsla(102, 97%, 41%, 0.71)";
312
+ export const cpdColorAlphaLime700 = "hsla(102, 100%, 37%, 0.86)";
313
+ export const cpdColorAlphaLime800 = "hsla(107, 99%, 29%, 0.91)";
314
+ export const cpdColorAlphaLime900 = "hsla(113, 97%, 24%, 0.96)";
315
+ export const cpdColorAlphaLime1000 = "hsl(120, 100%, 22%, 1)";
316
+ export const cpdColorAlphaLime1100 = "hsl(120, 100%, 19%, 1)";
317
+ export const cpdColorAlphaLime1200 = "hsl(120, 100%, 15%, 1)";
318
+ export const cpdColorAlphaLime1300 = "hsl(120, 100%, 11%, 1)";
319
+ export const cpdColorAlphaLime1400 = "hsl(120, 100%, 7%, 1)";
320
+ export const cpdColorAlphaGreen100 = "hsla(156, 79%, 41%, 0.03)";
321
+ export const cpdColorAlphaGreen200 = "hsla(150, 79%, 41%, 0.06)";
322
+ export const cpdColorAlphaGreen300 = "hsla(150, 100%, 36%, 0.11)";
323
+ export const cpdColorAlphaGreen400 = "hsla(151, 93%, 37%, 0.23)";
324
+ export const cpdColorAlphaGreen500 = "hsla(154, 96%, 37%, 0.41)";
325
+ export const cpdColorAlphaGreen600 = "hsla(156, 99%, 36%, 0.56)";
326
+ export const cpdColorAlphaGreen700 = "hsla(163, 99%, 38%, 0.96)";
327
+ export const cpdColorAlphaGreen800 = "hsl(166, 100%, 30%, 1)";
328
+ export const cpdColorAlphaGreen900 = "hsl(168, 100%, 24%, 1)";
329
+ export const cpdColorAlphaGreen1000 = "hsl(166, 100%, 21%, 1)";
330
+ export const cpdColorAlphaGreen1100 = "hsl(165, 100%, 18%, 1)";
331
+ export const cpdColorAlphaGreen1200 = "hsl(162, 100%, 14%, 1)";
332
+ export const cpdColorAlphaGreen1300 = "hsl(157, 100%, 10%, 1)";
333
+ export const cpdColorAlphaGreen1400 = "hsl(149, 100%, 7%, 1)";
334
+ export const cpdColorAlphaCyan100 = "hsla(180, 79%, 41%, 0.03)";
335
+ export const cpdColorAlphaCyan200 = "hsla(186, 79%, 41%, 0.06)";
336
+ export const cpdColorAlphaCyan300 = "hsla(188, 100%, 38%, 0.11)";
337
+ export const cpdColorAlphaCyan400 = "hsla(186, 100%, 37%, 0.22)";
338
+ export const cpdColorAlphaCyan500 = "hsla(186, 95%, 38%, 0.4)";
339
+ export const cpdColorAlphaCyan600 = "hsla(187, 99%, 38%, 0.54)";
340
+ export const cpdColorAlphaCyan700 = "hsla(186, 99%, 40%, 0.92)";
341
+ export const cpdColorAlphaCyan800 = "hsl(194, 100%, 38%, 1)";
342
+ export const cpdColorAlphaCyan900 = "hsl(200, 100%, 34%, 1)";
343
+ export const cpdColorAlphaCyan1000 = "hsl(202, 100%, 31%, 1)";
344
+ export const cpdColorAlphaCyan1100 = "hsl(204, 100%, 28%, 1)";
345
+ export const cpdColorAlphaCyan1200 = "hsl(208, 100%, 23%, 1)";
346
+ export const cpdColorAlphaCyan1300 = "hsl(213, 100%, 19%, 1)";
347
+ export const cpdColorAlphaCyan1400 = "hsl(221, 100%, 16%, 1)";
348
+ export const cpdColorAlphaBlue100 = "hsla(210, 100%, 61%, 0.03)";
349
+ export const cpdColorAlphaBlue200 = "hsla(218, 100%, 57%, 0.05)";
350
+ export const cpdColorAlphaBlue300 = "hsla(215, 100%, 52%, 0.09)";
351
+ export const cpdColorAlphaBlue400 = "hsla(216, 95%, 51%, 0.16)";
352
+ export const cpdColorAlphaBlue500 = "hsla(215, 93%, 50%, 0.28)";
353
+ export const cpdColorAlphaBlue600 = "hsla(216, 95%, 48%, 0.37)";
354
+ export const cpdColorAlphaBlue700 = "hsla(215, 98%, 47%, 0.51)";
355
+ export const cpdColorAlphaBlue800 = "hsla(215, 100%, 46%, 0.75)";
356
+ export const cpdColorAlphaBlue900 = "hsla(213, 99%, 44%, 0.99)";
357
+ export const cpdColorAlphaBlue1000 = "hsla(214, 98%, 39%, 0.99)";
358
+ export const cpdColorAlphaBlue1100 = "hsla(216, 99%, 35%, 0.98)";
359
+ export const cpdColorAlphaBlue1200 = "hsla(218, 99%, 29%, 0.99)";
360
+ export const cpdColorAlphaBlue1300 = "hsl(222, 98%, 24%, 1)";
361
+ export const cpdColorAlphaBlue1400 = "hsl(232, 100%, 20%, 1)";
362
+ export const cpdColorAlphaPurple100 = "hsla(240, 100%, 61%, 0.02)";
363
+ export const cpdColorAlphaPurple200 = "hsla(248, 100%, 61%, 0.04)";
364
+ export const cpdColorAlphaPurple300 = "hsla(248, 100%, 55%, 0.07)";
365
+ export const cpdColorAlphaPurple400 = "hsla(248, 100%, 53%, 0.12)";
366
+ export const cpdColorAlphaPurple500 = "hsla(248, 100%, 51%, 0.2)";
367
+ export const cpdColorAlphaPurple600 = "hsla(249, 100%, 51%, 0.27)";
368
+ export const cpdColorAlphaPurple700 = "hsla(251, 100%, 51%, 0.38)";
369
+ export const cpdColorAlphaPurple800 = "hsla(254, 99%, 49%, 0.56)";
370
+ export const cpdColorAlphaPurple900 = "hsla(258, 98%, 47%, 0.73)";
371
+ export const cpdColorAlphaPurple1000 = "hsla(259, 98%, 42%, 0.79)";
372
+ export const cpdColorAlphaPurple1100 = "hsla(260, 97%, 39%, 0.86)";
373
+ export const cpdColorAlphaPurple1200 = "hsla(264, 98%, 36%, 0.99)";
374
+ export const cpdColorAlphaPurple1300 = "hsl(262, 100%, 28%, 1)";
375
+ export const cpdColorAlphaPurple1400 = "hsl(259, 100%, 20%, 1)";
376
+ export const cpdColorAlphaFuchsia100 = "hsla(300, 95%, 41%, 0.02)";
377
+ export const cpdColorAlphaFuchsia200 = "hsla(293, 95%, 41%, 0.04)";
378
+ export const cpdColorAlphaFuchsia300 = "hsla(295, 89%, 41%, 0.07)";
379
+ export const cpdColorAlphaFuchsia400 = "hsla(298, 91%, 40%, 0.13)";
380
+ export const cpdColorAlphaFuchsia500 = "hsla(296, 93%, 39%, 0.23)";
381
+ export const cpdColorAlphaFuchsia600 = "hsla(297, 93%, 38%, 0.31)";
382
+ export const cpdColorAlphaFuchsia700 = "hsla(295, 96%, 37%, 0.43)";
383
+ export const cpdColorAlphaFuchsia800 = "hsla(295, 97%, 37%, 0.64)";
384
+ export const cpdColorAlphaFuchsia900 = "hsla(293, 100%, 34%, 0.8)";
385
+ export const cpdColorAlphaFuchsia1000 = "hsla(291, 99%, 30%, 0.84)";
386
+ export const cpdColorAlphaFuchsia1100 = "hsla(289, 96%, 28%, 0.88)";
387
+ export const cpdColorAlphaFuchsia1200 = "hsla(286, 97%, 24%, 0.93)";
388
+ export const cpdColorAlphaFuchsia1300 = "hsl(285, 100%, 20%, 1)";
389
+ export const cpdColorAlphaFuchsia1400 = "hsl(281, 100%, 15%, 1)";
390
+ export const cpdColorAlphaPink100 = "hsla(348, 100%, 51%, 0.02)";
391
+ export const cpdColorAlphaPink200 = "hsla(348, 100%, 51%, 0.04)";
392
+ export const cpdColorAlphaPink300 = "hsla(347, 100%, 54%, 0.08)";
393
+ export const cpdColorAlphaPink400 = "hsla(347, 100%, 50%, 0.13)";
394
+ export const cpdColorAlphaPink500 = "hsla(347, 100%, 50%, 0.24)";
395
+ export const cpdColorAlphaPink600 = "hsla(346, 100%, 51%, 0.33)";
396
+ export const cpdColorAlphaPink700 = "hsla(345, 100%, 50%, 0.47)";
397
+ export const cpdColorAlphaPink800 = "hsla(340, 100%, 48%, 0.75)";
398
+ export const cpdColorAlphaPink900 = "hsla(333, 98%, 41%, 0.96)";
399
+ export const cpdColorAlphaPink1000 = "hsla(332, 98%, 36%, 0.97)";
400
+ export const cpdColorAlphaPink1100 = "hsla(331, 100%, 31%, 0.97)";
401
+ export const cpdColorAlphaPink1200 = "hsla(330, 98%, 24%, 0.98)";
402
+ export const cpdColorAlphaPink1300 = "hsl(333, 100%, 19%, 1)";
403
+ export const cpdColorAlphaPink1400 = "hsl(339, 100%, 13%, 1)";
404
+ export const cpdColorTextPrimary = "#1b1d22";
405
+ export const cpdColorTextSecondary = "#656d77";
406
+ export const cpdColorTextPlaceholder = "#818a95";
407
+ export const cpdColorTextDisabled = "#818a95";
408
+ export const cpdColorTextActionPrimary = "#1b1d22";
409
+ export const cpdColorTextActionAccent = "#007a61";
410
+ export const cpdColorTextLinkExternal = "#0467dd";
411
+ export const cpdColorTextCriticalPrimary = "#d51928";
412
+ export const cpdColorTextSuccessPrimary = "#007a61";
413
+ export const cpdColorTextInfoPrimary = "#0467dd";
414
+ export const cpdColorTextOnSolidPrimary = "#ffffff";
415
+ export const cpdColorBgSubtlePrimary = "#e1e6ec";
416
+ export const cpdColorBgSubtleSecondary = "#f0f2f5";
417
+ export const cpdColorBgCanvasDefault = "#ffffff";
418
+ export const cpdColorBgCanvasDisabled = "#f7f9fa";
419
+ export const cpdColorBgCanvasDefaultLevel1 = "#ffffff";
420
+ export const cpdColorBgActionPrimaryRest = "#1b1d22";
421
+ export const cpdColorBgActionPrimaryHovered = "#3c4045";
422
+ export const cpdColorBgActionPrimaryPressed = "#4c5158";
423
+ export const cpdColorBgActionPrimaryDisabled = "#a6adb7";
424
+ export const cpdColorBgActionSecondaryRest = "#ffffff";
425
+ export const cpdColorBgActionSecondaryHovered = "hsla(200, 41%, 36%, 0.04)";
426
+ export const cpdColorBgActionSecondaryPressed = "hsla(216, 89%, 18%, 0.06)";
427
+ export const cpdColorBgCriticalPrimary = "#d51928";
428
+ export const cpdColorBgCriticalHovered = "#bc0f22";
429
+ export const cpdColorBgCriticalSubtle = "#fff7f6";
430
+ export const cpdColorBgCriticalSubtleHovered = "#ffefec";
431
+ export const cpdColorBgSuccessSubtle = "#f1fbf6";
432
+ export const cpdColorBgInfoSubtle = "#f4f8ff";
433
+ export const cpdColorBgSubtleSecondaryLevel0 = "#f0f2f5";
434
+ export const cpdColorBorderDisabled = "#cdd3da";
435
+ export const cpdColorBorderFocused = "#0467dd";
436
+ export const cpdColorBorderInteractivePrimary = "#818a95";
437
+ export const cpdColorBorderInteractiveSecondary = "#bdc4cc";
438
+ export const cpdColorBorderInteractiveHovered = "#4c5158";
439
+ export const cpdColorBorderCriticalPrimary = "#d51928";
440
+ export const cpdColorBorderCriticalHovered = "#bc0f22";
441
+ export const cpdColorBorderCriticalSubtle = "#ffc5bc";
442
+ export const cpdColorBorderSuccessSubtle = "#98e1c1";
443
+ export const cpdColorBorderInfoSubtle = "#bad5fc";
444
+ export const cpdColorIconPrimary = "#1b1d22";
445
+ export const cpdColorIconSecondary = "#656d77";
446
+ export const cpdColorIconTertiary = "#818a95";
447
+ export const cpdColorIconQuaternary = "#a6adb7";
448
+ export const cpdColorIconDisabled = "#a6adb7";
449
+ export const cpdColorIconPrimaryAlpha = "hsla(223, 64%, 2%, 0.9)";
450
+ export const cpdColorIconSecondaryAlpha = "hsla(213, 83%, 7%, 0.61)";
451
+ export const cpdColorIconTertiaryAlpha = "hsla(213, 87%, 9%, 0.5)";
452
+ export const cpdColorIconQuaternaryAlpha = "hsla(215, 96%, 10%, 0.35)";
453
+ export const cpdColorIconAccentTertiary = "#009b78";
454
+ export const cpdColorIconCriticalPrimary = "#d51928";
455
+ export const cpdColorIconSuccessPrimary = "#007a61";
456
+ export const cpdColorIconInfoPrimary = "#0467dd";
457
+ export const cpdColorIconOnSolidPrimary = "#ffffff";