@carbon/themes 11.77.0 → 11.78.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.
Files changed (64) hide show
  1. package/es/index.js +1360 -1722
  2. package/js/generated/component-tokens/button.d.ts +98 -0
  3. package/{src/component-tokens/button/tokens.ts → js/generated/component-tokens/button.js} +65 -97
  4. package/js/generated/component-tokens/content-switcher.d.ts +25 -0
  5. package/js/generated/component-tokens/content-switcher.js +25 -0
  6. package/js/generated/component-tokens/notification.d.ts +65 -0
  7. package/js/generated/component-tokens/notification.js +65 -0
  8. package/js/generated/component-tokens/status.d.ts +63 -0
  9. package/js/generated/component-tokens/status.js +63 -0
  10. package/js/generated/component-tokens/tag.d.ts +247 -0
  11. package/js/generated/component-tokens/tag.js +247 -0
  12. package/js/generated/themes/g10.d.ts +242 -0
  13. package/js/generated/themes/g10.js +242 -0
  14. package/js/generated/themes/g100.d.ts +242 -0
  15. package/js/generated/themes/g100.js +242 -0
  16. package/js/generated/themes/g90.d.ts +242 -0
  17. package/js/generated/themes/g90.js +242 -0
  18. package/js/generated/themes/white.d.ts +242 -0
  19. package/js/generated/themes/white.js +242 -0
  20. package/lib/index.d.ts +12 -10
  21. package/lib/index.js +1360 -1722
  22. package/package.json +12 -9
  23. package/scss/generated/_button-tokens.scss +2 -2
  24. package/src/dtcg/README.md +210 -0
  25. package/src/dtcg/color-palette.json +3204 -0
  26. package/src/dtcg/components/button.json +193 -0
  27. package/src/dtcg/components/content-switcher.json +60 -0
  28. package/src/dtcg/components/notification.json +130 -0
  29. package/src/dtcg/components/status.json +122 -0
  30. package/src/dtcg/components/tag.json +486 -0
  31. package/src/dtcg/g10.json +1453 -0
  32. package/src/dtcg/g100.json +1478 -0
  33. package/src/dtcg/g90.json +1478 -0
  34. package/src/dtcg/white.json +1345 -0
  35. package/src/index.ts +96 -10
  36. package/test-dtcg.scss +28 -0
  37. package/umd/index.js +1363 -1725
  38. package/lib/component-tokens/button/index.d.ts +0 -7
  39. package/lib/component-tokens/button/tokens.d.ts +0 -98
  40. package/lib/component-tokens/content-switcher/index.d.ts +0 -7
  41. package/lib/component-tokens/content-switcher/tokens.d.ts +0 -24
  42. package/lib/component-tokens/notification/index.d.ts +0 -7
  43. package/lib/component-tokens/notification/tokens.d.ts +0 -64
  44. package/lib/component-tokens/status/index.d.ts +0 -7
  45. package/lib/component-tokens/status/tokens.d.ts +0 -62
  46. package/lib/component-tokens/tag/index.d.ts +0 -7
  47. package/lib/component-tokens/tag/tokens.d.ts +0 -246
  48. package/lib/g10.d.ts +0 -242
  49. package/lib/g100.d.ts +0 -242
  50. package/lib/g90.d.ts +0 -242
  51. package/lib/white.d.ts +0 -243
  52. package/src/component-tokens/button/index.ts +0 -8
  53. package/src/component-tokens/content-switcher/index.ts +0 -7
  54. package/src/component-tokens/content-switcher/tokens.ts +0 -29
  55. package/src/component-tokens/notification/index.ts +0 -8
  56. package/src/component-tokens/notification/tokens.ts +0 -105
  57. package/src/component-tokens/status/index.ts +0 -8
  58. package/src/component-tokens/status/tokens.ts +0 -90
  59. package/src/component-tokens/tag/index.ts +0 -8
  60. package/src/component-tokens/tag/tokens.ts +0 -353
  61. package/src/g10.ts +0 -452
  62. package/src/g100.ts +0 -453
  63. package/src/g90.ts +0 -455
  64. package/src/white.ts +0 -455
package/lib/index.js CHANGED
@@ -30,81 +30,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
30
30
  enumerable: true
31
31
  }) : target, mod));
32
32
  //#endregion
33
- let _carbon_colors = require("@carbon/colors");
34
33
  let color = require("color");
35
34
  color = __toESM(color);
35
+ let _carbon_colors = require("@carbon/colors");
36
36
  let _carbon_type = require("@carbon/type");
37
37
  let _carbon_layout = require("@carbon/layout");
38
- //#region src/tools.ts
39
- /**
40
- * Copyright IBM Corp. 2016, 2026
41
- *
42
- * This source code is licensed under the Apache-2.0 license found in the
43
- * LICENSE file in the root directory of this source tree.
44
- */
45
- /**
46
- * Adjust a given token's lightness by a specified percentage
47
- * Example: token = hsl(10, 10, 10);
48
- * adjustLightness(token, 5) === hsl(10, 10, 15);
49
- * adjustLightness(token, -5) === hsl(10, 10, 5);
50
- */
51
- const adjustLightness = (token, shift) => {
52
- const original = (0, color.default)(token).hsl().object();
53
- return (0, color.default)({
54
- ...original,
55
- l: original.l += shift
56
- }).round().hex().toLowerCase();
57
- };
58
- /**
59
- * Adjust a given token's alpha by a specified amount
60
- * Example: token = rgba(10, 10, 10, 1.0);
61
- * adjustAlpha(token, 0.3) === rgba(10, 10, 10, 0.3);
62
- */
63
- const adjustAlpha = (token, alpha) => {
64
- return (0, color.default)(token).rgb().alpha(alpha).string();
65
- };
66
- const numbers = [
67
- "0",
68
- "1",
69
- "2",
70
- "3",
71
- "4",
72
- "5",
73
- "6",
74
- "7",
75
- "8",
76
- "9"
77
- ];
78
- /**
79
- * Format a given token into the format expected in CSS/SCSS-based projects.
80
- */
81
- const formatTokenName = (token) => {
82
- let string = "";
83
- for (let i = 0; i < token.length; i++) {
84
- if (numbers.indexOf(token[i]) !== -1) {
85
- string += "-" + token.slice(i);
86
- break;
87
- }
88
- if (token[i] === token[i].toUpperCase()) {
89
- if (token[i - 1] && token[i - 1] === token[i - 1].toUpperCase()) {
90
- string += token[i].toLowerCase();
91
- continue;
92
- }
93
- string += "-" + token[i].toLowerCase();
94
- continue;
95
- }
96
- string += token[i];
97
- }
98
- return string;
99
- };
100
- //#endregion
101
- //#region src/white.ts
102
- /**
103
- * Copyright IBM Corp. 2018, 2026
104
- *
105
- * This source code is licensed under the Apache-2.0 license found in the
106
- * LICENSE file in the root directory of this source tree.
107
- */
38
+ //#region js/generated/themes/white.js
108
39
  var white_exports = /* @__PURE__ */ __exportAll({
109
40
  aiAuraEnd: () => aiAuraEnd,
110
41
  aiAuraHoverBackground: () => aiAuraHoverBackground,
@@ -135,10 +66,6 @@ var white_exports = /* @__PURE__ */ __exportAll({
135
66
  backgroundInverseHover: () => backgroundInverseHover,
136
67
  backgroundSelected: () => backgroundSelected,
137
68
  backgroundSelectedHover: () => backgroundSelectedHover,
138
- bodyLong01: () => _carbon_type.bodyLong01,
139
- bodyLong02: () => _carbon_type.bodyLong02,
140
- bodyShort01: () => _carbon_type.bodyShort01,
141
- bodyShort02: () => _carbon_type.bodyShort02,
142
69
  borderDisabled: () => borderDisabled,
143
70
  borderInteractive: () => borderInteractive,
144
71
  borderInverse: () => borderInverse,
@@ -155,8 +82,6 @@ var white_exports = /* @__PURE__ */ __exportAll({
155
82
  borderTile01: () => borderTile01,
156
83
  borderTile02: () => borderTile02,
157
84
  borderTile03: () => borderTile03,
158
- caption01: () => _carbon_type.caption01,
159
- caption02: () => _carbon_type.caption02,
160
85
  chatAvatarAgent: () => chatAvatarAgent,
161
86
  chatAvatarBot: () => chatAvatarBot,
162
87
  chatAvatarUser: () => chatAvatarUser,
@@ -178,42 +103,16 @@ var white_exports = /* @__PURE__ */ __exportAll({
178
103
  chatPromptBorderStart: () => chatPromptBorderStart,
179
104
  chatPromptText: () => chatPromptText,
180
105
  chatShellBackground: () => chatShellBackground,
181
- code01: () => _carbon_type.code01,
182
- code02: () => _carbon_type.code02,
183
106
  colorScheme: () => colorScheme,
184
- container01: () => _carbon_layout.container01,
185
- container02: () => _carbon_layout.container02,
186
- container03: () => _carbon_layout.container03,
187
- container04: () => _carbon_layout.container04,
188
- container05: () => _carbon_layout.container05,
189
- display01: () => _carbon_type.display01,
190
- display02: () => _carbon_type.display02,
191
- display03: () => _carbon_type.display03,
192
- display04: () => _carbon_type.display04,
193
- expressiveHeading01: () => _carbon_type.expressiveHeading01,
194
- expressiveHeading02: () => _carbon_type.expressiveHeading02,
195
- expressiveHeading03: () => _carbon_type.expressiveHeading03,
196
- expressiveHeading04: () => _carbon_type.expressiveHeading04,
197
- expressiveHeading05: () => _carbon_type.expressiveHeading05,
198
- expressiveHeading06: () => _carbon_type.expressiveHeading06,
199
- expressiveParagraph01: () => _carbon_type.expressiveParagraph01,
200
107
  field01: () => field01,
201
108
  field02: () => field02,
202
109
  field03: () => field03,
203
110
  fieldHover01: () => fieldHover01,
204
111
  fieldHover02: () => fieldHover02,
205
112
  fieldHover03: () => fieldHover03,
206
- fluidSpacing01: () => _carbon_layout.fluidSpacing01,
207
- fluidSpacing02: () => _carbon_layout.fluidSpacing02,
208
- fluidSpacing03: () => _carbon_layout.fluidSpacing03,
209
- fluidSpacing04: () => _carbon_layout.fluidSpacing04,
210
113
  focus: () => focus,
211
114
  focusInset: () => focusInset,
212
115
  focusInverse: () => focusInverse,
213
- heading01: () => _carbon_type.heading01,
214
- heading02: () => _carbon_type.heading02,
215
- helperText01: () => _carbon_type.helperText01,
216
- helperText02: () => _carbon_type.helperText02,
217
116
  highlight: () => highlight,
218
117
  iconDisabled: () => iconDisabled,
219
118
  iconInteractive: () => iconInteractive,
@@ -222,11 +121,7 @@ var white_exports = /* @__PURE__ */ __exportAll({
222
121
  iconOnColorDisabled: () => iconOnColorDisabled,
223
122
  iconPrimary: () => iconPrimary,
224
123
  iconSecondary: () => iconSecondary,
225
- iconSize01: () => _carbon_layout.iconSize01,
226
- iconSize02: () => _carbon_layout.iconSize02,
227
124
  interactive: () => interactive,
228
- label01: () => _carbon_type.label01,
229
- label02: () => _carbon_type.label02,
230
125
  layer01: () => layer01,
231
126
  layer02: () => layer02,
232
127
  layer03: () => layer03,
@@ -256,13 +151,6 @@ var white_exports = /* @__PURE__ */ __exportAll({
256
151
  layerSelectedHover02: () => layerSelectedHover02,
257
152
  layerSelectedHover03: () => layerSelectedHover03,
258
153
  layerSelectedInverse: () => layerSelectedInverse,
259
- layout01: () => _carbon_layout.layout01,
260
- layout02: () => _carbon_layout.layout02,
261
- layout03: () => _carbon_layout.layout03,
262
- layout04: () => _carbon_layout.layout04,
263
- layout05: () => _carbon_layout.layout05,
264
- layout06: () => _carbon_layout.layout06,
265
- layout07: () => _carbon_layout.layout07,
266
154
  linkInverse: () => linkInverse,
267
155
  linkInverseActive: () => linkInverseActive,
268
156
  linkInverseHover: () => linkInverseHover,
@@ -272,37 +160,9 @@ var white_exports = /* @__PURE__ */ __exportAll({
272
160
  linkSecondary: () => linkSecondary,
273
161
  linkVisited: () => linkVisited,
274
162
  overlay: () => overlay,
275
- productiveHeading01: () => _carbon_type.productiveHeading01,
276
- productiveHeading02: () => _carbon_type.productiveHeading02,
277
- productiveHeading03: () => _carbon_type.productiveHeading03,
278
- productiveHeading04: () => _carbon_type.productiveHeading04,
279
- productiveHeading05: () => _carbon_type.productiveHeading05,
280
- productiveHeading06: () => _carbon_type.productiveHeading06,
281
- productiveHeading07: () => _carbon_type.productiveHeading07,
282
- quotation01: () => _carbon_type.quotation01,
283
- quotation02: () => _carbon_type.quotation02,
284
163
  shadow: () => shadow,
285
- size2XLarge: () => _carbon_layout.size2XLarge,
286
- sizeLarge: () => _carbon_layout.sizeLarge,
287
- sizeMedium: () => _carbon_layout.sizeMedium,
288
- sizeSmall: () => _carbon_layout.sizeSmall,
289
- sizeXLarge: () => _carbon_layout.sizeXLarge,
290
- sizeXSmall: () => _carbon_layout.sizeXSmall,
291
164
  skeletonBackground: () => skeletonBackground,
292
165
  skeletonElement: () => skeletonElement,
293
- spacing01: () => _carbon_layout.spacing01,
294
- spacing02: () => _carbon_layout.spacing02,
295
- spacing03: () => _carbon_layout.spacing03,
296
- spacing04: () => _carbon_layout.spacing04,
297
- spacing05: () => _carbon_layout.spacing05,
298
- spacing06: () => _carbon_layout.spacing06,
299
- spacing07: () => _carbon_layout.spacing07,
300
- spacing08: () => _carbon_layout.spacing08,
301
- spacing09: () => _carbon_layout.spacing09,
302
- spacing10: () => _carbon_layout.spacing10,
303
- spacing11: () => _carbon_layout.spacing11,
304
- spacing12: () => _carbon_layout.spacing12,
305
- spacing13: () => _carbon_layout.spacing13,
306
166
  supportCautionMajor: () => supportCautionMajor,
307
167
  supportCautionMinor: () => supportCautionMinor,
308
168
  supportCautionUndefined: () => supportCautionUndefined,
@@ -414,248 +274,242 @@ var white_exports = /* @__PURE__ */ __exportAll({
414
274
  toggleOff: () => toggleOff
415
275
  });
416
276
  const colorScheme = "light";
417
- const background = _carbon_colors.white;
418
- const backgroundInverse = _carbon_colors.gray80;
419
- const backgroundBrand = _carbon_colors.blue60;
420
- const backgroundActive = adjustAlpha(_carbon_colors.gray50, .5);
421
- const backgroundHover = adjustAlpha(_carbon_colors.gray50, .12);
422
- const backgroundInverseHover = _carbon_colors.gray80Hover;
423
- const backgroundSelected = adjustAlpha(_carbon_colors.gray50, .2);
424
- const backgroundSelectedHover = adjustAlpha(_carbon_colors.gray50, .32);
425
- const layer01 = _carbon_colors.gray10;
426
- const layerActive01 = _carbon_colors.gray30;
427
- const layerBackground01 = _carbon_colors.white;
428
- const layerHover01 = _carbon_colors.gray10Hover;
429
- const layerSelected01 = _carbon_colors.gray20;
430
- const layerSelectedHover01 = _carbon_colors.gray20Hover;
431
- const layer02 = _carbon_colors.white;
432
- const layerActive02 = _carbon_colors.gray30;
433
- const layerBackground02 = _carbon_colors.gray10;
434
- const layerHover02 = _carbon_colors.whiteHover;
435
- const layerSelected02 = _carbon_colors.gray20;
436
- const layerSelectedHover02 = _carbon_colors.gray20Hover;
437
- const layer03 = _carbon_colors.gray10;
438
- const layerActive03 = _carbon_colors.gray30;
439
- const layerBackground03 = _carbon_colors.white;
440
- const layerHover03 = _carbon_colors.gray10Hover;
441
- const layerSelected03 = _carbon_colors.gray20;
442
- const layerSelectedHover03 = _carbon_colors.gray20Hover;
443
- const layerSelectedInverse = _carbon_colors.gray100;
444
- const layerSelectedDisabled = _carbon_colors.gray50;
445
- const layerAccent01 = _carbon_colors.gray20;
446
- const layerAccentActive01 = _carbon_colors.gray40;
447
- const layerAccentHover01 = _carbon_colors.gray20Hover;
448
- const layerAccent02 = _carbon_colors.gray20;
449
- const layerAccentActive02 = _carbon_colors.gray40;
450
- const layerAccentHover02 = _carbon_colors.gray20Hover;
451
- const layerAccent03 = _carbon_colors.gray20;
452
- const layerAccentActive03 = _carbon_colors.gray40;
453
- const layerAccentHover03 = _carbon_colors.gray20Hover;
454
- const field01 = _carbon_colors.gray10;
455
- const fieldHover01 = _carbon_colors.gray10Hover;
456
- const field02 = _carbon_colors.white;
457
- const fieldHover02 = _carbon_colors.whiteHover;
458
- const field03 = _carbon_colors.gray10;
459
- const fieldHover03 = _carbon_colors.gray10Hover;
460
- const borderSubtle00 = _carbon_colors.gray20;
461
- const borderSubtle01 = _carbon_colors.gray30;
462
- const borderSubtleSelected01 = _carbon_colors.gray30;
463
- const borderSubtle02 = _carbon_colors.gray20;
464
- const borderSubtleSelected02 = _carbon_colors.gray30;
465
- const borderSubtle03 = _carbon_colors.gray30;
466
- const borderSubtleSelected03 = _carbon_colors.gray30;
467
- const borderStrong01 = _carbon_colors.gray50;
468
- const borderStrong02 = _carbon_colors.gray50;
469
- const borderStrong03 = _carbon_colors.gray50;
470
- const borderTile01 = _carbon_colors.gray30;
471
- const borderTile02 = _carbon_colors.gray40;
472
- const borderTile03 = _carbon_colors.gray30;
473
- const borderInverse = _carbon_colors.gray100;
474
- const borderInteractive = _carbon_colors.blue60;
475
- const borderDisabled = _carbon_colors.gray30;
476
- const textPrimary = _carbon_colors.gray100;
477
- const textSecondary = _carbon_colors.gray70;
478
- const textPlaceholder = adjustAlpha(textPrimary, .4);
479
- const textHelper = _carbon_colors.gray60;
480
- const textError = _carbon_colors.red60;
481
- const textInverse = _carbon_colors.white;
482
- const textOnColor = _carbon_colors.white;
483
- const textOnColorDisabled = _carbon_colors.gray50;
484
- const textDisabled = adjustAlpha(textPrimary, .25);
485
- const linkPrimary = _carbon_colors.blue60;
486
- const linkPrimaryHover = _carbon_colors.blue70;
487
- const linkSecondary = _carbon_colors.blue70;
488
- const linkInverse = _carbon_colors.blue40;
489
- const linkVisited = _carbon_colors.purple60;
490
- const linkInverseVisited = _carbon_colors.purple40;
491
- const linkInverseActive = _carbon_colors.gray10;
492
- const linkInverseHover = _carbon_colors.blue30;
493
- const iconPrimary = _carbon_colors.gray100;
494
- const iconSecondary = _carbon_colors.gray70;
495
- const iconInverse = _carbon_colors.white;
496
- const iconOnColor = _carbon_colors.white;
497
- const iconOnColorDisabled = _carbon_colors.gray50;
498
- const iconDisabled = adjustAlpha(iconPrimary, .25);
499
- const iconInteractive = _carbon_colors.blue60;
500
- const supportError = _carbon_colors.red60;
501
- const supportSuccess = _carbon_colors.green50;
502
- const supportWarning = _carbon_colors.yellow30;
503
- const supportInfo = _carbon_colors.blue70;
504
- const supportErrorInverse = _carbon_colors.red50;
505
- const supportSuccessInverse = _carbon_colors.green40;
506
- const supportWarningInverse = _carbon_colors.yellow30;
507
- const supportInfoInverse = _carbon_colors.blue50;
508
- const supportCautionMinor = _carbon_colors.yellow30;
509
- const supportCautionMajor = _carbon_colors.orange40;
510
- const supportCautionUndefined = _carbon_colors.purple60;
511
- const focus = _carbon_colors.blue60;
512
- const focusInset = _carbon_colors.white;
513
- const focusInverse = _carbon_colors.white;
514
- const skeletonBackground = _carbon_colors.whiteHover;
515
- const skeletonElement = _carbon_colors.gray30;
516
- const interactive = _carbon_colors.blue60;
517
- const highlight = _carbon_colors.blue20;
518
- const overlay = (0, _carbon_colors.rgba)(_carbon_colors.black, .6);
519
- const toggleOff = _carbon_colors.gray50;
277
+ const background = "#ffffff";
278
+ const backgroundInverse = "#393939";
279
+ const backgroundBrand = "#0f62fe";
280
+ const backgroundActive = "rgba(141, 141, 141, 0.5)";
281
+ const backgroundHover = "rgba(141, 141, 141, 0.12)";
282
+ const backgroundInverseHover = "#474747";
283
+ const backgroundSelected = "rgba(141, 141, 141, 0.2)";
284
+ const backgroundSelectedHover = "rgba(141, 141, 141, 0.32)";
285
+ const layer01 = "#f4f4f4";
286
+ const layerActive01 = "#c6c6c6";
287
+ const layerBackground01 = "#ffffff";
288
+ const layerHover01 = "#e8e8e8";
289
+ const layerSelected01 = "#e0e0e0";
290
+ const layerSelectedHover01 = "#d1d1d1";
291
+ const layer02 = "#ffffff";
292
+ const layerActive02 = "#c6c6c6";
293
+ const layerBackground02 = "#f4f4f4";
294
+ const layerHover02 = "#e8e8e8";
295
+ const layerSelected02 = "#e0e0e0";
296
+ const layerSelectedHover02 = "#d1d1d1";
297
+ const layer03 = "#f4f4f4";
298
+ const layerActive03 = "#c6c6c6";
299
+ const layerBackground03 = "#ffffff";
300
+ const layerHover03 = "#e8e8e8";
301
+ const layerSelected03 = "#e0e0e0";
302
+ const layerSelectedHover03 = "#d1d1d1";
303
+ const layerSelectedInverse = "#161616";
304
+ const layerSelectedDisabled = "#8d8d8d";
305
+ const layerAccent01 = "#e0e0e0";
306
+ const layerAccentActive01 = "#a8a8a8";
307
+ const layerAccentHover01 = "#d1d1d1";
308
+ const layerAccent02 = "#e0e0e0";
309
+ const layerAccentActive02 = "#a8a8a8";
310
+ const layerAccentHover02 = "#d1d1d1";
311
+ const layerAccent03 = "#e0e0e0";
312
+ const layerAccentActive03 = "#a8a8a8";
313
+ const layerAccentHover03 = "#d1d1d1";
314
+ const field01 = "#f4f4f4";
315
+ const fieldHover01 = "#e8e8e8";
316
+ const field02 = "#ffffff";
317
+ const fieldHover02 = "#e8e8e8";
318
+ const field03 = "#f4f4f4";
319
+ const fieldHover03 = "#e8e8e8";
320
+ const borderSubtle00 = "#e0e0e0";
321
+ const borderSubtle01 = "#c6c6c6";
322
+ const borderSubtleSelected01 = "#c6c6c6";
323
+ const borderSubtle02 = "#e0e0e0";
324
+ const borderSubtleSelected02 = "#c6c6c6";
325
+ const borderSubtle03 = "#c6c6c6";
326
+ const borderSubtleSelected03 = "#c6c6c6";
327
+ const borderStrong01 = "#8d8d8d";
328
+ const borderStrong02 = "#8d8d8d";
329
+ const borderStrong03 = "#8d8d8d";
330
+ const borderTile01 = "#c6c6c6";
331
+ const borderTile02 = "#a8a8a8";
332
+ const borderTile03 = "#c6c6c6";
333
+ const borderInverse = "#161616";
334
+ const borderInteractive = "#0f62fe";
335
+ const borderDisabled = "#c6c6c6";
336
+ const textPrimary = "#161616";
337
+ const textSecondary = "#525252";
338
+ const textPlaceholder = "rgba(22, 22, 22, 0.4)";
339
+ const textHelper = "#6f6f6f";
340
+ const textError = "#da1e28";
341
+ const textInverse = "#ffffff";
342
+ const textOnColor = "#ffffff";
343
+ const textOnColorDisabled = "#8d8d8d";
344
+ const textDisabled = "rgba(22, 22, 22, 0.25)";
345
+ const linkPrimary = "#0f62fe";
346
+ const linkPrimaryHover = "#0043ce";
347
+ const linkSecondary = "#0043ce";
348
+ const linkInverse = "#78a9ff";
349
+ const linkVisited = "#8a3ffc";
350
+ const linkInverseVisited = "#be95ff";
351
+ const linkInverseActive = "#f4f4f4";
352
+ const linkInverseHover = "#a6c8ff";
353
+ const iconPrimary = "#161616";
354
+ const iconSecondary = "#525252";
355
+ const iconInverse = "#ffffff";
356
+ const iconOnColor = "#ffffff";
357
+ const iconOnColorDisabled = "#8d8d8d";
358
+ const iconDisabled = "rgba(22, 22, 22, 0.25)";
359
+ const iconInteractive = "#0f62fe";
360
+ const supportError = "#da1e28";
361
+ const supportSuccess = "#24a148";
362
+ const supportWarning = "#f1c21b";
363
+ const supportInfo = "#0043ce";
364
+ const supportErrorInverse = "#fa4d56";
365
+ const supportSuccessInverse = "#42be65";
366
+ const supportWarningInverse = "#f1c21b";
367
+ const supportInfoInverse = "#4589ff";
368
+ const supportCautionMinor = "#f1c21b";
369
+ const supportCautionMajor = "#ff832b";
370
+ const supportCautionUndefined = "#8a3ffc";
371
+ const focus = "#0f62fe";
372
+ const focusInset = "#ffffff";
373
+ const focusInverse = "#ffffff";
374
+ const interactive = "#0f62fe";
375
+ const highlight = "#d0e2ff";
376
+ const overlay = "rgba(0, 0, 0, 0.6)";
377
+ const toggleOff = "#8d8d8d";
520
378
  const shadow = "rgba(0, 0, 0, 0.3)";
521
- const syntaxComment = _carbon_colors.green60;
522
- const syntaxLineComment = syntaxComment;
523
- const syntaxBlockComment = syntaxComment;
524
- const syntaxDocComment = syntaxComment;
525
- const syntaxString = textPrimary;
526
- const syntaxDocString = syntaxString;
527
- const syntaxKeyword = _carbon_colors.blue60;
528
- const syntaxOperatorKeyword = syntaxKeyword;
529
- const syntaxControlKeyword = _carbon_colors.purple70;
530
- const syntaxDefinitionKeyword = _carbon_colors.cyan70;
531
- const syntaxModuleKeyword = _carbon_colors.purple70;
532
- const syntaxVariable = _carbon_colors.blue60;
533
- const syntaxName = syntaxVariable;
534
- const syntaxVariableName = syntaxVariable;
535
- const syntaxLabelName = syntaxVariable;
536
- const syntaxAttribute = _carbon_colors.cyan70;
537
- const syntaxAttributeName = syntaxAttribute;
538
- const syntaxPropertyName = syntaxAttribute;
539
- const syntaxTag = _carbon_colors.teal60;
540
- const syntaxTagName = syntaxTag;
541
- const syntaxType = _carbon_colors.teal60;
542
- const syntaxTypeName = syntaxType;
543
- const syntaxClassName = syntaxType;
544
- const syntaxNamespace = syntaxType;
545
- const syntaxMacroName = textPrimary;
546
- const syntaxAtom = syntaxMacroName;
547
- const syntaxLiteral = syntaxAtom;
548
- const syntaxBool = syntaxAtom;
549
- const syntaxNull = syntaxAtom;
550
- const syntaxSelf = syntaxTag;
551
- const syntaxNumber = _carbon_colors.green60;
552
- const syntaxInteger = syntaxNumber;
553
- const syntaxFloat = syntaxNumber;
554
- const syntaxUnit = syntaxNumber;
555
- const syntaxCharacter = syntaxString;
556
- const syntaxAttributeValue = syntaxString;
557
- const syntaxSpecialString = _carbon_colors.purple60;
558
- const syntaxRegexp = _carbon_colors.purple70;
559
- const syntaxEscape = _carbon_colors.coolGray80;
560
- const syntaxUrl = syntaxEscape;
561
- const syntaxColor = syntaxMacroName;
562
- const syntaxOperator = _carbon_colors.coolGray80;
563
- const syntaxDerefOperator = syntaxOperator;
564
- const syntaxArithmeticOperator = syntaxOperator;
565
- const syntaxLogicOperator = syntaxOperator;
566
- const syntaxBitwiseOperator = syntaxOperator;
567
- const syntaxCompareOperator = syntaxOperator;
568
- const syntaxUpdateOperator = syntaxOperator;
569
- const syntaxDefinitionOperator = syntaxDefinitionKeyword;
570
- const syntaxTypeOperator = syntaxTag;
571
- const syntaxControlOperator = syntaxModuleKeyword;
572
- const syntaxModifier = syntaxKeyword;
573
- const syntaxPunctuation = _carbon_colors.coolGray80;
574
- const syntaxSeparator = syntaxPunctuation;
575
- const syntaxBracket = syntaxPunctuation;
576
- const syntaxAngleBracket = _carbon_colors.coolGray60;
577
- const syntaxSquareBracket = syntaxBracket;
578
- const syntaxParen = syntaxBracket;
579
- const syntaxBrace = syntaxBracket;
580
- const syntaxContent = textPrimary;
581
- const syntaxList = syntaxContent;
582
- const syntaxEmphasis = syntaxContent;
583
- const syntaxStrong = syntaxContent;
584
- const syntaxMonospace = syntaxContent;
585
- const syntaxStrikethrough = syntaxContent;
586
- const syntaxHeading = _carbon_colors.cyan70;
587
- const syntaxHeading1 = syntaxHeading;
588
- const syntaxHeading2 = syntaxHeading;
589
- const syntaxHeading3 = syntaxHeading;
590
- const syntaxHeading4 = syntaxHeading;
591
- const syntaxHeading5 = syntaxHeading;
592
- const syntaxHeading6 = syntaxHeading;
593
- const syntaxContentSeparator = syntaxPunctuation;
594
- const syntaxQuote = syntaxComment;
595
- const syntaxLink = _carbon_colors.blue60;
596
- const syntaxInvalid = _carbon_colors.red60;
597
- const syntaxMeta = _carbon_colors.green60;
598
- const syntaxDocumentMeta = syntaxMeta;
599
- const syntaxAnnotation = _carbon_colors.teal60;
600
- const syntaxProcessingInstruction = syntaxString;
601
- const syntaxDefinition = _carbon_colors.cyan70;
602
- const syntaxConstant = _carbon_colors.blue60;
603
- const syntaxFunction = _carbon_colors.yellow60;
604
- const syntaxStandard = _carbon_colors.blue60;
605
- const syntaxLocal = _carbon_colors.blue60;
606
- const syntaxSpecial = _carbon_colors.blue60;
607
- const syntaxInserted = _carbon_colors.green20;
608
- const syntaxDeleted = _carbon_colors.red20;
609
- const aiInnerShadow = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
610
- const aiAuraStartSm = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
611
- const aiAuraStart = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
612
- const aiAuraEnd = (0, _carbon_colors.rgba)(_carbon_colors.white, 0);
613
- const aiBorderStrong = _carbon_colors.blue50;
614
- const aiBorderStart = (0, _carbon_colors.rgba)(_carbon_colors.blue30, .64);
615
- const aiBorderEnd = _carbon_colors.blue40;
616
- const aiDropShadow = (0, _carbon_colors.rgba)(_carbon_colors.blue60, .1);
617
- const aiAuraHoverBackground = _carbon_colors.blue10;
618
- const aiAuraHoverStart = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .32);
619
- const aiAuraHoverEnd = (0, _carbon_colors.rgba)(_carbon_colors.white, 0);
620
- const aiPopoverBackground = _carbon_colors.white;
621
- const aiPopoverShadowOuter01 = (0, _carbon_colors.rgba)(_carbon_colors.blue70, .06);
622
- const aiPopoverShadowOuter02 = (0, _carbon_colors.rgba)(_carbon_colors.black, .04);
623
- const aiSkeletonBackground = _carbon_colors.blue20;
624
- const aiSkeletonElementBackground = _carbon_colors.blue50;
625
- const aiOverlay = (0, _carbon_colors.rgba)(_carbon_colors.blue100, .5);
626
- const aiPopoverCaretCenter = "#A0C3FF";
627
- const aiPopoverCaretBottom = _carbon_colors.blue40;
628
- const aiPopoverCaretBottomBackgroundActions = "#E9EFFA";
629
- const aiPopoverCaretBottomBackground = "#EAF1FF";
630
- const chatPromptBackground = _carbon_colors.white;
631
- const chatPromptBorderStart = _carbon_colors.gray10;
632
- const chatPromptBorderEnd = (0, _carbon_colors.rgba)(_carbon_colors.gray10, 0);
633
- const chatPromptText = textPrimary;
634
- const chatBubbleUser = _carbon_colors.gray20;
635
- const chatBubbleUserText = textPrimary;
636
- const chatBubbleAgent = _carbon_colors.white;
637
- const chatBubbleAgentText = textPrimary;
638
- const chatBubbleBorder = _carbon_colors.gray20;
639
- const chatAvatarBot = _carbon_colors.gray60;
640
- const chatAvatarAgent = _carbon_colors.gray80;
641
- const chatAvatarUser = _carbon_colors.blue60;
642
- const chatShellBackground = _carbon_colors.white;
643
- const chatHeaderBackground = _carbon_colors.white;
644
- const chatHeaderText = textPrimary;
645
- const chatButton = linkPrimary;
646
- const chatButtonHover = backgroundHover;
647
- const chatButtonTextHover = linkPrimaryHover;
648
- const chatButtonActive = backgroundActive;
649
- const chatButtonSelected = backgroundSelected;
650
- const chatButtonTextSelected = textSecondary;
379
+ const skeletonBackground = "#e8e8e8";
380
+ const skeletonElement = "#c6c6c6";
381
+ const syntaxComment = "#198038";
382
+ const syntaxLineComment = "#198038";
383
+ const syntaxBlockComment = "#198038";
384
+ const syntaxDocComment = "#198038";
385
+ const syntaxString = "#161616";
386
+ const syntaxDocString = "#161616";
387
+ const syntaxKeyword = "#0f62fe";
388
+ const syntaxOperatorKeyword = "#0f62fe";
389
+ const syntaxControlKeyword = "#6929c4";
390
+ const syntaxDefinitionKeyword = "#00539a";
391
+ const syntaxModuleKeyword = "#6929c4";
392
+ const syntaxVariable = "#0f62fe";
393
+ const syntaxName = "#0f62fe";
394
+ const syntaxVariableName = "#0f62fe";
395
+ const syntaxLabelName = "#0f62fe";
396
+ const syntaxAttribute = "#00539a";
397
+ const syntaxAttributeName = "#00539a";
398
+ const syntaxPropertyName = "#00539a";
399
+ const syntaxTag = "#007d79";
400
+ const syntaxTagName = "#007d79";
401
+ const syntaxType = "#007d79";
402
+ const syntaxTypeName = "#007d79";
403
+ const syntaxClassName = "#007d79";
404
+ const syntaxNamespace = "#007d79";
405
+ const syntaxMacroName = "#161616";
406
+ const syntaxAtom = "#161616";
407
+ const syntaxLiteral = "#161616";
408
+ const syntaxBool = "#161616";
409
+ const syntaxNull = "#161616";
410
+ const syntaxSelf = "#007d79";
411
+ const syntaxNumber = "#198038";
412
+ const syntaxInteger = "#198038";
413
+ const syntaxFloat = "#198038";
414
+ const syntaxUnit = "#198038";
415
+ const syntaxCharacter = "#161616";
416
+ const syntaxAttributeValue = "#161616";
417
+ const syntaxSpecialString = "#8a3ffc";
418
+ const syntaxRegexp = "#6929c4";
419
+ const syntaxEscape = "#343a3f";
420
+ const syntaxUrl = "#343a3f";
421
+ const syntaxColor = "#161616";
422
+ const syntaxOperator = "#343a3f";
423
+ const syntaxDerefOperator = "#343a3f";
424
+ const syntaxArithmeticOperator = "#343a3f";
425
+ const syntaxLogicOperator = "#343a3f";
426
+ const syntaxBitwiseOperator = "#343a3f";
427
+ const syntaxCompareOperator = "#343a3f";
428
+ const syntaxUpdateOperator = "#343a3f";
429
+ const syntaxDefinitionOperator = "#00539a";
430
+ const syntaxTypeOperator = "#007d79";
431
+ const syntaxControlOperator = "#6929c4";
432
+ const syntaxModifier = "#0f62fe";
433
+ const syntaxPunctuation = "#343a3f";
434
+ const syntaxSeparator = "#343a3f";
435
+ const syntaxBracket = "#343a3f";
436
+ const syntaxAngleBracket = "#697077";
437
+ const syntaxSquareBracket = "#343a3f";
438
+ const syntaxParen = "#343a3f";
439
+ const syntaxBrace = "#343a3f";
440
+ const syntaxContent = "#161616";
441
+ const syntaxList = "#161616";
442
+ const syntaxEmphasis = "#161616";
443
+ const syntaxStrong = "#161616";
444
+ const syntaxMonospace = "#161616";
445
+ const syntaxStrikethrough = "#161616";
446
+ const syntaxHeading = "#00539a";
447
+ const syntaxContentSeparator = "#343a3f";
448
+ const syntaxQuote = "#198038";
449
+ const syntaxLink = "#0f62fe";
450
+ const syntaxInvalid = "#da1e28";
451
+ const syntaxMeta = "#198038";
452
+ const syntaxDocumentMeta = "#198038";
453
+ const syntaxAnnotation = "#007d79";
454
+ const syntaxProcessingInstruction = "#161616";
455
+ const syntaxDefinition = "#00539a";
456
+ const syntaxConstant = "#0f62fe";
457
+ const syntaxFunction = "#8e6a00";
458
+ const syntaxStandard = "#0f62fe";
459
+ const syntaxLocal = "#0f62fe";
460
+ const syntaxSpecial = "#0f62fe";
461
+ const syntaxInserted = "#a7f0ba";
462
+ const syntaxDeleted = "#ffd7d9";
463
+ const syntaxHeading1 = "#00539a";
464
+ const syntaxHeading2 = "#00539a";
465
+ const syntaxHeading3 = "#00539a";
466
+ const syntaxHeading4 = "#00539a";
467
+ const syntaxHeading5 = "#00539a";
468
+ const syntaxHeading6 = "#00539a";
469
+ const aiInnerShadow = "rgba(69, 137, 255, 0.1)";
470
+ const aiAuraStartSm = "rgba(69, 137, 255, 0.16)";
471
+ const aiAuraStart = "rgba(69, 137, 255, 0.1)";
472
+ const aiAuraEnd = "rgba(255, 255, 255, 0)";
473
+ const aiBorderStrong = "#4589ff";
474
+ const aiBorderStart = "rgba(166, 200, 255, 0.64)";
475
+ const aiBorderEnd = "#78a9ff";
476
+ const aiDropShadow = "rgba(15, 98, 254, 0.1)";
477
+ const aiAuraHoverBackground = "#edf5ff";
478
+ const aiAuraHoverStart = "rgba(69, 137, 255, 0.32)";
479
+ const aiAuraHoverEnd = "rgba(255, 255, 255, 0)";
480
+ const aiPopoverBackground = "#ffffff";
481
+ const aiPopoverShadowOuter01 = "rgba(0, 67, 206, 0.06)";
482
+ const aiPopoverShadowOuter02 = "rgba(0, 0, 0, 0.04)";
483
+ const aiSkeletonBackground = "#d0e2ff";
484
+ const aiSkeletonElementBackground = "#4589ff";
485
+ const aiOverlay = "rgba(0, 17, 65, 0.5)";
486
+ const aiPopoverCaretCenter = "#a0c3ff";
487
+ const aiPopoverCaretBottom = "#78a9ff";
488
+ const aiPopoverCaretBottomBackgroundActions = "#e9effa";
489
+ const aiPopoverCaretBottomBackground = "#eaf1ff";
490
+ const chatPromptBackground = "#ffffff";
491
+ const chatPromptBorderStart = "#f4f4f4";
492
+ const chatPromptBorderEnd = "rgba(244, 244, 244, 0)";
493
+ const chatPromptText = "#161616";
494
+ const chatBubbleUser = "#e0e0e0";
495
+ const chatBubbleUserText = "#161616";
496
+ const chatBubbleAgent = "#ffffff";
497
+ const chatBubbleAgentText = "#161616";
498
+ const chatBubbleBorder = "#e0e0e0";
499
+ const chatAvatarBot = "#6f6f6f";
500
+ const chatAvatarAgent = "#393939";
501
+ const chatAvatarUser = "#0f62fe";
502
+ const chatShellBackground = "#ffffff";
503
+ const chatHeaderBackground = "#ffffff";
504
+ const chatHeaderText = "#161616";
505
+ const chatButton = "#0f62fe";
506
+ const chatButtonHover = "rgba(141, 141, 141, 0.12)";
507
+ const chatButtonTextHover = "#0043ce";
508
+ const chatButtonActive = "rgba(141, 141, 141, 0.5)";
509
+ const chatButtonSelected = "rgba(141, 141, 141, 0.2)";
510
+ const chatButtonTextSelected = "#525252";
651
511
  //#endregion
652
- //#region src/g10.ts
653
- /**
654
- * Copyright IBM Corp. 2018, 2026
655
- *
656
- * This source code is licensed under the Apache-2.0 license found in the
657
- * LICENSE file in the root directory of this source tree.
658
- */
512
+ //#region js/generated/themes/g10.js
659
513
  var g10_exports = /* @__PURE__ */ __exportAll({
660
514
  aiAuraEnd: () => aiAuraEnd$3,
661
515
  aiAuraHoverBackground: () => aiAuraHoverBackground$3,
@@ -686,10 +540,6 @@ var g10_exports = /* @__PURE__ */ __exportAll({
686
540
  backgroundInverseHover: () => backgroundInverseHover$7,
687
541
  backgroundSelected: () => backgroundSelected$7,
688
542
  backgroundSelectedHover: () => backgroundSelectedHover$7,
689
- bodyLong01: () => _carbon_type.bodyLong01,
690
- bodyLong02: () => _carbon_type.bodyLong02,
691
- bodyShort01: () => _carbon_type.bodyShort01,
692
- bodyShort02: () => _carbon_type.bodyShort02,
693
543
  borderDisabled: () => borderDisabled$7,
694
544
  borderInteractive: () => borderInteractive$7,
695
545
  borderInverse: () => borderInverse$7,
@@ -706,8 +556,6 @@ var g10_exports = /* @__PURE__ */ __exportAll({
706
556
  borderTile01: () => borderTile01$3,
707
557
  borderTile02: () => borderTile02$3,
708
558
  borderTile03: () => borderTile03$3,
709
- caption01: () => _carbon_type.caption01,
710
- caption02: () => _carbon_type.caption02,
711
559
  chatAvatarAgent: () => chatAvatarAgent$3,
712
560
  chatAvatarBot: () => chatAvatarBot$3,
713
561
  chatAvatarUser: () => chatAvatarUser$3,
@@ -729,42 +577,16 @@ var g10_exports = /* @__PURE__ */ __exportAll({
729
577
  chatPromptBorderStart: () => chatPromptBorderStart$3,
730
578
  chatPromptText: () => chatPromptText$3,
731
579
  chatShellBackground: () => chatShellBackground$3,
732
- code01: () => _carbon_type.code01,
733
- code02: () => _carbon_type.code02,
734
580
  colorScheme: () => colorScheme$3,
735
- container01: () => _carbon_layout.container01,
736
- container02: () => _carbon_layout.container02,
737
- container03: () => _carbon_layout.container03,
738
- container04: () => _carbon_layout.container04,
739
- container05: () => _carbon_layout.container05,
740
- display01: () => _carbon_type.display01,
741
- display02: () => _carbon_type.display02,
742
- display03: () => _carbon_type.display03,
743
- display04: () => _carbon_type.display04,
744
- expressiveHeading01: () => _carbon_type.expressiveHeading01,
745
- expressiveHeading02: () => _carbon_type.expressiveHeading02,
746
- expressiveHeading03: () => _carbon_type.expressiveHeading03,
747
- expressiveHeading04: () => _carbon_type.expressiveHeading04,
748
- expressiveHeading05: () => _carbon_type.expressiveHeading05,
749
- expressiveHeading06: () => _carbon_type.expressiveHeading06,
750
- expressiveParagraph01: () => _carbon_type.expressiveParagraph01,
751
581
  field01: () => field01$7,
752
582
  field02: () => field02$7,
753
583
  field03: () => field03$3,
754
584
  fieldHover01: () => fieldHover01$3,
755
585
  fieldHover02: () => fieldHover02$3,
756
586
  fieldHover03: () => fieldHover03$3,
757
- fluidSpacing01: () => _carbon_layout.fluidSpacing01,
758
- fluidSpacing02: () => _carbon_layout.fluidSpacing02,
759
- fluidSpacing03: () => _carbon_layout.fluidSpacing03,
760
- fluidSpacing04: () => _carbon_layout.fluidSpacing04,
761
587
  focus: () => focus$8,
762
588
  focusInset: () => focusInset$7,
763
589
  focusInverse: () => focusInverse$7,
764
- heading01: () => _carbon_type.heading01,
765
- heading02: () => _carbon_type.heading02,
766
- helperText01: () => _carbon_type.helperText01,
767
- helperText02: () => _carbon_type.helperText02,
768
590
  highlight: () => highlight$7,
769
591
  iconDisabled: () => iconDisabled$7,
770
592
  iconInteractive: () => iconInteractive$3,
@@ -773,11 +595,7 @@ var g10_exports = /* @__PURE__ */ __exportAll({
773
595
  iconOnColorDisabled: () => iconOnColorDisabled$7,
774
596
  iconPrimary: () => iconPrimary$7,
775
597
  iconSecondary: () => iconSecondary$7,
776
- iconSize01: () => _carbon_layout.iconSize01,
777
- iconSize02: () => _carbon_layout.iconSize02,
778
598
  interactive: () => interactive$7,
779
- label01: () => _carbon_type.label01,
780
- label02: () => _carbon_type.label02,
781
599
  layer01: () => layer01$3,
782
600
  layer02: () => layer02$3,
783
601
  layer03: () => layer03$3,
@@ -807,13 +625,6 @@ var g10_exports = /* @__PURE__ */ __exportAll({
807
625
  layerSelectedHover02: () => layerSelectedHover02$3,
808
626
  layerSelectedHover03: () => layerSelectedHover03$3,
809
627
  layerSelectedInverse: () => layerSelectedInverse$7,
810
- layout01: () => _carbon_layout.layout01,
811
- layout02: () => _carbon_layout.layout02,
812
- layout03: () => _carbon_layout.layout03,
813
- layout04: () => _carbon_layout.layout04,
814
- layout05: () => _carbon_layout.layout05,
815
- layout06: () => _carbon_layout.layout06,
816
- layout07: () => _carbon_layout.layout07,
817
628
  linkInverse: () => linkInverse$7,
818
629
  linkInverseActive: () => linkInverseActive$3,
819
630
  linkInverseHover: () => linkInverseHover$3,
@@ -823,37 +634,9 @@ var g10_exports = /* @__PURE__ */ __exportAll({
823
634
  linkSecondary: () => linkSecondary$7,
824
635
  linkVisited: () => linkVisited$7,
825
636
  overlay: () => overlay$7,
826
- productiveHeading01: () => _carbon_type.productiveHeading01,
827
- productiveHeading02: () => _carbon_type.productiveHeading02,
828
- productiveHeading03: () => _carbon_type.productiveHeading03,
829
- productiveHeading04: () => _carbon_type.productiveHeading04,
830
- productiveHeading05: () => _carbon_type.productiveHeading05,
831
- productiveHeading06: () => _carbon_type.productiveHeading06,
832
- productiveHeading07: () => _carbon_type.productiveHeading07,
833
- quotation01: () => _carbon_type.quotation01,
834
- quotation02: () => _carbon_type.quotation02,
835
637
  shadow: () => shadow$7,
836
- size2XLarge: () => _carbon_layout.size2XLarge,
837
- sizeLarge: () => _carbon_layout.sizeLarge,
838
- sizeMedium: () => _carbon_layout.sizeMedium,
839
- sizeSmall: () => _carbon_layout.sizeSmall,
840
- sizeXLarge: () => _carbon_layout.sizeXLarge,
841
- sizeXSmall: () => _carbon_layout.sizeXSmall,
842
638
  skeletonBackground: () => skeletonBackground$7,
843
639
  skeletonElement: () => skeletonElement$7,
844
- spacing01: () => _carbon_layout.spacing01,
845
- spacing02: () => _carbon_layout.spacing02,
846
- spacing03: () => _carbon_layout.spacing03,
847
- spacing04: () => _carbon_layout.spacing04,
848
- spacing05: () => _carbon_layout.spacing05,
849
- spacing06: () => _carbon_layout.spacing06,
850
- spacing07: () => _carbon_layout.spacing07,
851
- spacing08: () => _carbon_layout.spacing08,
852
- spacing09: () => _carbon_layout.spacing09,
853
- spacing10: () => _carbon_layout.spacing10,
854
- spacing11: () => _carbon_layout.spacing11,
855
- spacing12: () => _carbon_layout.spacing12,
856
- spacing13: () => _carbon_layout.spacing13,
857
640
  supportCautionMajor: () => supportCautionMajor$3,
858
641
  supportCautionMinor: () => supportCautionMinor$3,
859
642
  supportCautionUndefined: () => supportCautionUndefined$3,
@@ -965,248 +748,242 @@ var g10_exports = /* @__PURE__ */ __exportAll({
965
748
  toggleOff: () => toggleOff$7
966
749
  });
967
750
  const colorScheme$3 = "light";
968
- const background$8 = _carbon_colors.gray10;
969
- const backgroundInverse$7 = _carbon_colors.gray80;
970
- const backgroundBrand$7 = _carbon_colors.blue60;
971
- const backgroundActive$7 = adjustAlpha(_carbon_colors.gray50, .5);
972
- const backgroundHover$7 = adjustAlpha(_carbon_colors.gray50, .12);
973
- const backgroundInverseHover$7 = _carbon_colors.gray80Hover;
974
- const backgroundSelected$7 = adjustAlpha(_carbon_colors.gray50, .2);
975
- const backgroundSelectedHover$7 = adjustAlpha(_carbon_colors.gray50, .32);
976
- const layer01$3 = _carbon_colors.white;
977
- const layerActive01$3 = _carbon_colors.gray30;
978
- const layerBackground01$3 = _carbon_colors.gray10;
979
- const layerHover01$3 = _carbon_colors.whiteHover;
980
- const layerSelected01$3 = _carbon_colors.gray20;
981
- const layerSelectedHover01$3 = _carbon_colors.gray20Hover;
982
- const layer02$3 = _carbon_colors.gray10;
983
- const layerActive02$3 = _carbon_colors.gray30;
984
- const layerBackground02$3 = _carbon_colors.white;
985
- const layerHover02$3 = _carbon_colors.gray10Hover;
986
- const layerSelected02$3 = _carbon_colors.gray20;
987
- const layerSelectedHover02$3 = _carbon_colors.gray20Hover;
988
- const layer03$3 = _carbon_colors.white;
989
- const layerActive03$3 = _carbon_colors.gray30;
990
- const layerBackground03$3 = _carbon_colors.gray10;
991
- const layerHover03$3 = _carbon_colors.whiteHover;
992
- const layerSelected03$3 = _carbon_colors.gray20;
993
- const layerSelectedHover03$3 = _carbon_colors.gray20Hover;
994
- const layerSelectedInverse$7 = _carbon_colors.gray100;
995
- const layerSelectedDisabled$7 = _carbon_colors.gray50;
996
- const layerAccent01$3 = _carbon_colors.gray20;
997
- const layerAccentActive01$3 = _carbon_colors.gray40;
998
- const layerAccentHover01$3 = _carbon_colors.gray20Hover;
999
- const layerAccent02$3 = _carbon_colors.gray20;
1000
- const layerAccentActive02$3 = _carbon_colors.gray40;
1001
- const layerAccentHover02$3 = _carbon_colors.gray20Hover;
1002
- const layerAccent03$3 = _carbon_colors.gray20;
1003
- const layerAccentActive03$3 = _carbon_colors.gray40;
1004
- const layerAccentHover03$3 = _carbon_colors.gray20Hover;
1005
- const field01$7 = _carbon_colors.white;
1006
- const fieldHover01$3 = _carbon_colors.whiteHover;
1007
- const field02$7 = _carbon_colors.gray10;
1008
- const fieldHover02$3 = _carbon_colors.gray10Hover;
1009
- const field03$3 = _carbon_colors.white;
1010
- const fieldHover03$3 = _carbon_colors.whiteHover;
1011
- const borderSubtle00$3 = _carbon_colors.gray30;
1012
- const borderSubtle01$3 = _carbon_colors.gray20;
1013
- const borderSubtleSelected01$3 = _carbon_colors.gray30;
1014
- const borderSubtle02$3 = _carbon_colors.gray30;
1015
- const borderSubtleSelected02$3 = _carbon_colors.gray30;
1016
- const borderSubtle03$3 = _carbon_colors.gray20;
1017
- const borderSubtleSelected03$3 = _carbon_colors.gray30;
1018
- const borderStrong01$3 = _carbon_colors.gray50;
1019
- const borderStrong02$3 = _carbon_colors.gray50;
1020
- const borderStrong03$3 = _carbon_colors.gray50;
1021
- const borderTile01$3 = _carbon_colors.gray40;
1022
- const borderTile02$3 = _carbon_colors.gray30;
1023
- const borderTile03$3 = _carbon_colors.gray40;
1024
- const borderInverse$7 = _carbon_colors.gray100;
1025
- const borderInteractive$7 = _carbon_colors.blue60;
1026
- const borderDisabled$7 = _carbon_colors.gray30;
1027
- const textPrimary$7 = _carbon_colors.gray100;
1028
- const textSecondary$7 = _carbon_colors.gray70;
1029
- const textPlaceholder$7 = adjustAlpha(textPrimary$7, .4);
1030
- const textHelper$7 = _carbon_colors.gray60;
1031
- const textError$7 = _carbon_colors.red60;
1032
- const textInverse$7 = _carbon_colors.white;
1033
- const textOnColor$7 = _carbon_colors.white;
1034
- const textOnColorDisabled$7 = _carbon_colors.gray50;
1035
- const textDisabled$7 = adjustAlpha(textPrimary$7, .25);
1036
- const linkPrimary$7 = _carbon_colors.blue60;
1037
- const linkPrimaryHover$7 = _carbon_colors.blue70;
1038
- const linkSecondary$7 = _carbon_colors.blue70;
1039
- const linkInverse$7 = _carbon_colors.blue40;
1040
- const linkVisited$7 = _carbon_colors.purple60;
1041
- const linkInverseVisited$3 = _carbon_colors.purple40;
1042
- const linkInverseActive$3 = _carbon_colors.gray10;
1043
- const linkInverseHover$3 = _carbon_colors.blue30;
1044
- const iconPrimary$7 = _carbon_colors.gray100;
1045
- const iconSecondary$7 = _carbon_colors.gray70;
1046
- const iconInverse$7 = _carbon_colors.white;
1047
- const iconOnColor$7 = _carbon_colors.white;
1048
- const iconOnColorDisabled$7 = _carbon_colors.gray50;
1049
- const iconDisabled$7 = adjustAlpha(iconPrimary$7, .25);
1050
- const iconInteractive$3 = _carbon_colors.blue60;
1051
- const supportError$7 = _carbon_colors.red60;
1052
- const supportSuccess$7 = _carbon_colors.green50;
1053
- const supportWarning$7 = _carbon_colors.yellow30;
1054
- const supportInfo$7 = _carbon_colors.blue70;
1055
- const supportErrorInverse$7 = _carbon_colors.red50;
1056
- const supportSuccessInverse$7 = _carbon_colors.green40;
1057
- const supportWarningInverse$7 = _carbon_colors.yellow30;
1058
- const supportInfoInverse$7 = _carbon_colors.blue50;
1059
- const supportCautionMinor$3 = _carbon_colors.yellow30;
1060
- const supportCautionMajor$3 = _carbon_colors.orange40;
1061
- const supportCautionUndefined$3 = _carbon_colors.purple60;
1062
- const focus$8 = _carbon_colors.blue60;
1063
- const focusInset$7 = _carbon_colors.white;
1064
- const focusInverse$7 = _carbon_colors.white;
1065
- const skeletonBackground$7 = _carbon_colors.gray10Hover;
1066
- const skeletonElement$7 = _carbon_colors.gray30;
1067
- const interactive$7 = _carbon_colors.blue60;
1068
- const highlight$7 = _carbon_colors.blue20;
1069
- const overlay$7 = (0, _carbon_colors.rgba)(_carbon_colors.black, .6);
1070
- const toggleOff$7 = _carbon_colors.gray50;
751
+ const aiAuraEnd$3 = "rgba(255, 255, 255, 0)";
752
+ const aiAuraHoverBackground$3 = "#edf5ff";
753
+ const aiAuraHoverEnd$3 = "rgba(255, 255, 255, 0)";
754
+ const aiAuraHoverStart$3 = "rgba(69, 137, 255, 0.32)";
755
+ const aiAuraStart$3 = "rgba(69, 137, 255, 0.1)";
756
+ const aiAuraStartSm$3 = "rgba(69, 137, 255, 0.16)";
757
+ const aiBorderEnd$3 = "#78a9ff";
758
+ const aiBorderStart$3 = "rgba(166, 200, 255, 0.64)";
759
+ const aiBorderStrong$3 = "#4589ff";
760
+ const aiDropShadow$3 = "rgba(15, 98, 254, 0.1)";
761
+ const aiInnerShadow$3 = "rgba(69, 137, 255, 0.1)";
762
+ const aiOverlay$3 = "rgba(0, 17, 65, 0.5)";
763
+ const aiPopoverBackground$3 = "#ffffff";
764
+ const aiPopoverCaretBottom$3 = "#78a9ff";
765
+ const aiPopoverCaretBottomBackground$3 = "#eaf1ff";
766
+ const aiPopoverCaretBottomBackgroundActions$3 = "#e9effa";
767
+ const aiPopoverCaretCenter$3 = "#a0c3ff";
768
+ const aiPopoverShadowOuter01$3 = "rgba(0, 67, 206, 0.06)";
769
+ const aiPopoverShadowOuter02$3 = "rgba(0, 0, 0, 0.04)";
770
+ const aiSkeletonBackground$3 = "#d0e2ff";
771
+ const aiSkeletonElementBackground$3 = "#4589ff";
772
+ const background$8 = "#f4f4f4";
773
+ const backgroundActive$7 = "rgba(141, 141, 141, 0.5)";
774
+ const backgroundBrand$7 = "#0f62fe";
775
+ const backgroundHover$7 = "rgba(141, 141, 141, 0.12)";
776
+ const backgroundInverse$7 = "#393939";
777
+ const backgroundInverseHover$7 = "#474747";
778
+ const backgroundSelected$7 = "rgba(141, 141, 141, 0.2)";
779
+ const backgroundSelectedHover$7 = "rgba(141, 141, 141, 0.32)";
780
+ const borderDisabled$7 = "#c6c6c6";
781
+ const borderInteractive$7 = "#0f62fe";
782
+ const borderInverse$7 = "#161616";
783
+ const borderStrong01$3 = "#8d8d8d";
784
+ const borderStrong02$3 = "#8d8d8d";
785
+ const borderStrong03$3 = "#8d8d8d";
786
+ const borderSubtle00$3 = "#c6c6c6";
787
+ const borderSubtle01$3 = "#e0e0e0";
788
+ const borderSubtle02$3 = "#c6c6c6";
789
+ const borderSubtle03$3 = "#e0e0e0";
790
+ const borderSubtleSelected01$3 = "#c6c6c6";
791
+ const borderSubtleSelected02$3 = "#c6c6c6";
792
+ const borderSubtleSelected03$3 = "#c6c6c6";
793
+ const borderTile01$3 = "#a8a8a8";
794
+ const borderTile02$3 = "#c6c6c6";
795
+ const borderTile03$3 = "#a8a8a8";
796
+ const chatAvatarAgent$3 = "#393939";
797
+ const chatAvatarBot$3 = "#6f6f6f";
798
+ const chatAvatarUser$3 = "#0f62fe";
799
+ const chatBubbleAgent$3 = "#ffffff";
800
+ const chatBubbleAgentText$3 = "#161616";
801
+ const chatBubbleBorder$3 = "#e0e0e0";
802
+ const chatBubbleUser$3 = "#e0e0e0";
803
+ const chatBubbleUserText$3 = "#161616";
804
+ const chatButton$3 = "#0f62fe";
805
+ const chatButtonActive$3 = "rgba(141, 141, 141, 0.5)";
806
+ const chatButtonHover$3 = "rgba(141, 141, 141, 0.12)";
807
+ const chatButtonSelected$3 = "rgba(141, 141, 141, 0.2)";
808
+ const chatButtonTextHover$3 = "#0043ce";
809
+ const chatButtonTextSelected$3 = "#525252";
810
+ const chatHeaderBackground$3 = "#ffffff";
811
+ const chatHeaderText$3 = "#161616";
812
+ const chatPromptBackground$3 = "#ffffff";
813
+ const chatPromptBorderEnd$3 = "rgba(244, 244, 244, 0)";
814
+ const chatPromptBorderStart$3 = "#f4f4f4";
815
+ const chatPromptText$3 = "#161616";
816
+ const chatShellBackground$3 = "#ffffff";
817
+ const field01$7 = "#ffffff";
818
+ const field02$7 = "#f4f4f4";
819
+ const field03$3 = "#ffffff";
820
+ const fieldHover01$3 = "#e8e8e8";
821
+ const fieldHover02$3 = "#e8e8e8";
822
+ const fieldHover03$3 = "#e8e8e8";
823
+ const focus$8 = "#0f62fe";
824
+ const focusInset$7 = "#ffffff";
825
+ const focusInverse$7 = "#ffffff";
826
+ const highlight$7 = "#d0e2ff";
827
+ const iconDisabled$7 = "rgba(22, 22, 22, 0.25)";
828
+ const iconInteractive$3 = "#0f62fe";
829
+ const iconInverse$7 = "#ffffff";
830
+ const iconOnColor$7 = "#ffffff";
831
+ const iconOnColorDisabled$7 = "#8d8d8d";
832
+ const iconPrimary$7 = "#161616";
833
+ const iconSecondary$7 = "#525252";
834
+ const interactive$7 = "#0f62fe";
835
+ const layer01$3 = "#ffffff";
836
+ const layer02$3 = "#f4f4f4";
837
+ const layer03$3 = "#ffffff";
838
+ const layerAccent01$3 = "#e0e0e0";
839
+ const layerAccent02$3 = "#e0e0e0";
840
+ const layerAccent03$3 = "#e0e0e0";
841
+ const layerAccentActive01$3 = "#a8a8a8";
842
+ const layerAccentActive02$3 = "#a8a8a8";
843
+ const layerAccentActive03$3 = "#a8a8a8";
844
+ const layerAccentHover01$3 = "#d1d1d1";
845
+ const layerAccentHover02$3 = "#d1d1d1";
846
+ const layerAccentHover03$3 = "#d1d1d1";
847
+ const layerActive01$3 = "#c6c6c6";
848
+ const layerActive02$3 = "#c6c6c6";
849
+ const layerActive03$3 = "#c6c6c6";
850
+ const layerBackground01$3 = "#f4f4f4";
851
+ const layerBackground02$3 = "#ffffff";
852
+ const layerBackground03$3 = "#f4f4f4";
853
+ const layerHover01$3 = "#e8e8e8";
854
+ const layerHover02$3 = "#e8e8e8";
855
+ const layerHover03$3 = "#e8e8e8";
856
+ const layerSelected01$3 = "#e0e0e0";
857
+ const layerSelected02$3 = "#e0e0e0";
858
+ const layerSelected03$3 = "#e0e0e0";
859
+ const layerSelectedDisabled$7 = "#8d8d8d";
860
+ const layerSelectedHover01$3 = "#d1d1d1";
861
+ const layerSelectedHover02$3 = "#d1d1d1";
862
+ const layerSelectedHover03$3 = "#d1d1d1";
863
+ const layerSelectedInverse$7 = "#161616";
864
+ const linkInverse$7 = "#78a9ff";
865
+ const linkInverseActive$3 = "#f4f4f4";
866
+ const linkInverseHover$3 = "#a6c8ff";
867
+ const linkInverseVisited$3 = "#be95ff";
868
+ const linkPrimary$7 = "#0f62fe";
869
+ const linkPrimaryHover$7 = "#0043ce";
870
+ const linkSecondary$7 = "#0043ce";
871
+ const linkVisited$7 = "#8a3ffc";
872
+ const overlay$7 = "rgba(0, 0, 0, 0.6)";
1071
873
  const shadow$7 = "rgba(0, 0, 0, 0.3)";
1072
- const syntaxComment$3 = _carbon_colors.green60;
1073
- const syntaxLineComment$3 = syntaxComment$3;
1074
- const syntaxBlockComment$3 = syntaxComment$3;
1075
- const syntaxDocComment$3 = syntaxComment$3;
1076
- const syntaxString$3 = textPrimary$7;
1077
- const syntaxDocString$3 = syntaxString$3;
1078
- const syntaxKeyword$3 = _carbon_colors.blue60;
1079
- const syntaxOperatorKeyword$3 = syntaxKeyword$3;
1080
- const syntaxControlKeyword$3 = _carbon_colors.purple70;
1081
- const syntaxDefinitionKeyword$3 = _carbon_colors.cyan70;
1082
- const syntaxModuleKeyword$3 = _carbon_colors.purple70;
1083
- const syntaxVariable$3 = _carbon_colors.blue60;
1084
- const syntaxName$3 = syntaxVariable$3;
1085
- const syntaxVariableName$3 = syntaxVariable$3;
1086
- const syntaxLabelName$3 = syntaxVariable$3;
1087
- const syntaxAttribute$3 = _carbon_colors.cyan70;
1088
- const syntaxAttributeName$3 = syntaxAttribute$3;
1089
- const syntaxPropertyName$3 = syntaxAttribute$3;
1090
- const syntaxTag$3 = _carbon_colors.teal60;
1091
- const syntaxTagName$3 = syntaxTag$3;
1092
- const syntaxType$3 = _carbon_colors.teal60;
1093
- const syntaxTypeName$3 = syntaxType$3;
1094
- const syntaxClassName$3 = syntaxType$3;
1095
- const syntaxNamespace$3 = syntaxType$3;
1096
- const syntaxMacroName$3 = textPrimary$7;
1097
- const syntaxAtom$3 = syntaxMacroName$3;
1098
- const syntaxLiteral$3 = syntaxAtom$3;
1099
- const syntaxBool$3 = syntaxAtom$3;
1100
- const syntaxNull$3 = syntaxAtom$3;
1101
- const syntaxSelf$3 = syntaxTag$3;
1102
- const syntaxNumber$3 = _carbon_colors.green60;
1103
- const syntaxInteger$3 = syntaxNumber$3;
1104
- const syntaxFloat$3 = syntaxNumber$3;
1105
- const syntaxUnit$3 = syntaxNumber$3;
1106
- const syntaxCharacter$3 = syntaxString$3;
1107
- const syntaxAttributeValue$3 = syntaxString$3;
1108
- const syntaxSpecialString$3 = _carbon_colors.purple60;
1109
- const syntaxRegexp$3 = _carbon_colors.purple70;
1110
- const syntaxEscape$3 = _carbon_colors.coolGray80;
1111
- const syntaxUrl$3 = syntaxEscape$3;
1112
- const syntaxColor$3 = syntaxMacroName$3;
1113
- const syntaxOperator$3 = _carbon_colors.coolGray80;
1114
- const syntaxDerefOperator$3 = syntaxOperator$3;
1115
- const syntaxArithmeticOperator$3 = syntaxOperator$3;
1116
- const syntaxLogicOperator$3 = syntaxOperator$3;
1117
- const syntaxBitwiseOperator$3 = syntaxOperator$3;
1118
- const syntaxCompareOperator$3 = syntaxOperator$3;
1119
- const syntaxUpdateOperator$3 = syntaxOperator$3;
1120
- const syntaxDefinitionOperator$3 = syntaxDefinitionKeyword$3;
1121
- const syntaxTypeOperator$3 = syntaxTag$3;
1122
- const syntaxControlOperator$3 = syntaxModuleKeyword$3;
1123
- const syntaxModifier$3 = syntaxKeyword$3;
1124
- const syntaxPunctuation$3 = _carbon_colors.coolGray80;
1125
- const syntaxSeparator$3 = syntaxPunctuation$3;
1126
- const syntaxBracket$3 = syntaxPunctuation$3;
1127
- const syntaxAngleBracket$3 = _carbon_colors.coolGray60;
1128
- const syntaxSquareBracket$3 = syntaxBracket$3;
1129
- const syntaxParen$3 = syntaxBracket$3;
1130
- const syntaxBrace$3 = syntaxBracket$3;
1131
- const syntaxContent$3 = textPrimary$7;
1132
- const syntaxList$3 = syntaxContent$3;
1133
- const syntaxEmphasis$3 = syntaxContent$3;
1134
- const syntaxStrong$3 = syntaxContent$3;
1135
- const syntaxMonospace$3 = syntaxContent$3;
1136
- const syntaxStrikethrough$3 = syntaxContent$3;
1137
- const syntaxHeading$3 = _carbon_colors.cyan70;
1138
- const syntaxHeading1$3 = syntaxHeading$3;
1139
- const syntaxHeading2$3 = syntaxHeading$3;
1140
- const syntaxHeading3$3 = syntaxHeading$3;
1141
- const syntaxHeading4$3 = syntaxHeading$3;
1142
- const syntaxHeading5$3 = syntaxHeading$3;
1143
- const syntaxHeading6$3 = syntaxHeading$3;
1144
- const syntaxContentSeparator$3 = syntaxPunctuation$3;
1145
- const syntaxQuote$3 = syntaxComment$3;
1146
- const syntaxLink$3 = _carbon_colors.blue60;
1147
- const syntaxInvalid$3 = _carbon_colors.red60;
1148
- const syntaxMeta$3 = _carbon_colors.green60;
1149
- const syntaxDocumentMeta$3 = syntaxMeta$3;
1150
- const syntaxAnnotation$3 = _carbon_colors.teal60;
1151
- const syntaxProcessingInstruction$3 = syntaxString$3;
1152
- const syntaxDefinition$3 = _carbon_colors.cyan70;
1153
- const syntaxConstant$3 = _carbon_colors.blue60;
1154
- const syntaxFunction$3 = _carbon_colors.yellow60;
1155
- const syntaxStandard$3 = _carbon_colors.blue60;
1156
- const syntaxLocal$3 = _carbon_colors.blue60;
1157
- const syntaxSpecial$3 = _carbon_colors.blue60;
1158
- const syntaxInserted$3 = _carbon_colors.green20;
1159
- const syntaxDeleted$3 = _carbon_colors.red20;
1160
- const aiInnerShadow$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
1161
- const aiAuraStartSm$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1162
- const aiAuraStart$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
1163
- const aiAuraEnd$3 = (0, _carbon_colors.rgba)(_carbon_colors.white, 0);
1164
- const aiBorderStrong$3 = _carbon_colors.blue50;
1165
- const aiBorderStart$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue30, .64);
1166
- const aiBorderEnd$3 = _carbon_colors.blue40;
1167
- const aiDropShadow$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue60, .1);
1168
- const aiAuraHoverBackground$3 = _carbon_colors.blue10;
1169
- const aiAuraHoverStart$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .32);
1170
- const aiAuraHoverEnd$3 = (0, _carbon_colors.rgba)(_carbon_colors.white, 0);
1171
- const aiPopoverBackground$3 = _carbon_colors.white;
1172
- const aiPopoverShadowOuter01$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue70, .06);
1173
- const aiPopoverShadowOuter02$3 = (0, _carbon_colors.rgba)(_carbon_colors.black, .04);
1174
- const aiSkeletonBackground$3 = _carbon_colors.blue20;
1175
- const aiSkeletonElementBackground$3 = _carbon_colors.blue50;
1176
- const aiOverlay$3 = (0, _carbon_colors.rgba)(_carbon_colors.blue100, .5);
1177
- const aiPopoverCaretCenter$3 = "#A0C3FF";
1178
- const aiPopoverCaretBottom$3 = _carbon_colors.blue40;
1179
- const aiPopoverCaretBottomBackgroundActions$3 = "#E9EFFA";
1180
- const aiPopoverCaretBottomBackground$3 = "#EAF1FF";
1181
- const chatPromptBackground$3 = _carbon_colors.white;
1182
- const chatPromptBorderStart$3 = _carbon_colors.gray10;
1183
- const chatPromptBorderEnd$3 = (0, _carbon_colors.rgba)(_carbon_colors.gray10, 0);
1184
- const chatPromptText$3 = textPrimary$7;
1185
- const chatBubbleUser$3 = _carbon_colors.gray20;
1186
- const chatBubbleUserText$3 = textPrimary$7;
1187
- const chatBubbleAgent$3 = _carbon_colors.white;
1188
- const chatBubbleAgentText$3 = textPrimary$7;
1189
- const chatBubbleBorder$3 = _carbon_colors.gray20;
1190
- const chatAvatarBot$3 = _carbon_colors.gray60;
1191
- const chatAvatarAgent$3 = _carbon_colors.gray80;
1192
- const chatAvatarUser$3 = _carbon_colors.blue60;
1193
- const chatShellBackground$3 = _carbon_colors.white;
1194
- const chatHeaderBackground$3 = _carbon_colors.white;
1195
- const chatHeaderText$3 = textPrimary$7;
1196
- const chatButton$3 = linkPrimary$7;
1197
- const chatButtonHover$3 = backgroundHover$7;
1198
- const chatButtonTextHover$3 = linkPrimaryHover$7;
1199
- const chatButtonActive$3 = backgroundActive$7;
1200
- const chatButtonSelected$3 = backgroundSelected$7;
1201
- const chatButtonTextSelected$3 = textSecondary$7;
874
+ const skeletonBackground$7 = "#e8e8e8";
875
+ const skeletonElement$7 = "#c6c6c6";
876
+ const supportCautionMajor$3 = "#ff832b";
877
+ const supportCautionMinor$3 = "#f1c21b";
878
+ const supportCautionUndefined$3 = "#8a3ffc";
879
+ const supportError$7 = "#da1e28";
880
+ const supportErrorInverse$7 = "#fa4d56";
881
+ const supportInfo$7 = "#0043ce";
882
+ const supportInfoInverse$7 = "#4589ff";
883
+ const supportSuccess$7 = "#24a148";
884
+ const supportSuccessInverse$7 = "#42be65";
885
+ const supportWarning$7 = "#f1c21b";
886
+ const supportWarningInverse$7 = "#f1c21b";
887
+ const syntaxAngleBracket$3 = "#697077";
888
+ const syntaxAnnotation$3 = "#007d79";
889
+ const syntaxArithmeticOperator$3 = "#343a3f";
890
+ const syntaxAtom$3 = "#161616";
891
+ const syntaxAttribute$3 = "#00539a";
892
+ const syntaxAttributeName$3 = "#00539a";
893
+ const syntaxAttributeValue$3 = "#161616";
894
+ const syntaxBitwiseOperator$3 = "#343a3f";
895
+ const syntaxBlockComment$3 = "#198038";
896
+ const syntaxBool$3 = "#161616";
897
+ const syntaxBrace$3 = "#343a3f";
898
+ const syntaxBracket$3 = "#343a3f";
899
+ const syntaxCharacter$3 = "#161616";
900
+ const syntaxClassName$3 = "#007d79";
901
+ const syntaxColor$3 = "#161616";
902
+ const syntaxComment$3 = "#198038";
903
+ const syntaxCompareOperator$3 = "#343a3f";
904
+ const syntaxConstant$3 = "#0f62fe";
905
+ const syntaxContent$3 = "#161616";
906
+ const syntaxContentSeparator$3 = "#343a3f";
907
+ const syntaxControlKeyword$3 = "#6929c4";
908
+ const syntaxControlOperator$3 = "#6929c4";
909
+ const syntaxDefinition$3 = "#00539a";
910
+ const syntaxDefinitionKeyword$3 = "#00539a";
911
+ const syntaxDefinitionOperator$3 = "#00539a";
912
+ const syntaxDeleted$3 = "#ffd7d9";
913
+ const syntaxDerefOperator$3 = "#343a3f";
914
+ const syntaxDocComment$3 = "#198038";
915
+ const syntaxDocString$3 = "#161616";
916
+ const syntaxDocumentMeta$3 = "#198038";
917
+ const syntaxEmphasis$3 = "#161616";
918
+ const syntaxEscape$3 = "#343a3f";
919
+ const syntaxFloat$3 = "#198038";
920
+ const syntaxFunction$3 = "#8e6a00";
921
+ const syntaxHeading$3 = "#00539a";
922
+ const syntaxHeading1$3 = "#00539a";
923
+ const syntaxHeading2$3 = "#00539a";
924
+ const syntaxHeading3$3 = "#00539a";
925
+ const syntaxHeading4$3 = "#00539a";
926
+ const syntaxHeading5$3 = "#00539a";
927
+ const syntaxHeading6$3 = "#00539a";
928
+ const syntaxInserted$3 = "#a7f0ba";
929
+ const syntaxInteger$3 = "#198038";
930
+ const syntaxInvalid$3 = "#da1e28";
931
+ const syntaxKeyword$3 = "#0f62fe";
932
+ const syntaxLabelName$3 = "#0f62fe";
933
+ const syntaxLineComment$3 = "#198038";
934
+ const syntaxLink$3 = "#0f62fe";
935
+ const syntaxList$3 = "#161616";
936
+ const syntaxLiteral$3 = "#161616";
937
+ const syntaxLocal$3 = "#0f62fe";
938
+ const syntaxLogicOperator$3 = "#343a3f";
939
+ const syntaxMacroName$3 = "#161616";
940
+ const syntaxMeta$3 = "#198038";
941
+ const syntaxModifier$3 = "#0f62fe";
942
+ const syntaxModuleKeyword$3 = "#6929c4";
943
+ const syntaxMonospace$3 = "#161616";
944
+ const syntaxName$3 = "#0f62fe";
945
+ const syntaxNamespace$3 = "#007d79";
946
+ const syntaxNull$3 = "#161616";
947
+ const syntaxNumber$3 = "#198038";
948
+ const syntaxOperator$3 = "#343a3f";
949
+ const syntaxOperatorKeyword$3 = "#0f62fe";
950
+ const syntaxParen$3 = "#343a3f";
951
+ const syntaxProcessingInstruction$3 = "#161616";
952
+ const syntaxPropertyName$3 = "#00539a";
953
+ const syntaxPunctuation$3 = "#343a3f";
954
+ const syntaxQuote$3 = "#198038";
955
+ const syntaxRegexp$3 = "#6929c4";
956
+ const syntaxSelf$3 = "#007d79";
957
+ const syntaxSeparator$3 = "#343a3f";
958
+ const syntaxSpecial$3 = "#0f62fe";
959
+ const syntaxSpecialString$3 = "#8a3ffc";
960
+ const syntaxSquareBracket$3 = "#343a3f";
961
+ const syntaxStandard$3 = "#0f62fe";
962
+ const syntaxStrikethrough$3 = "#161616";
963
+ const syntaxString$3 = "#161616";
964
+ const syntaxStrong$3 = "#161616";
965
+ const syntaxTag$3 = "#007d79";
966
+ const syntaxTagName$3 = "#007d79";
967
+ const syntaxType$3 = "#007d79";
968
+ const syntaxTypeName$3 = "#007d79";
969
+ const syntaxTypeOperator$3 = "#007d79";
970
+ const syntaxUnit$3 = "#198038";
971
+ const syntaxUpdateOperator$3 = "#343a3f";
972
+ const syntaxUrl$3 = "#343a3f";
973
+ const syntaxVariable$3 = "#0f62fe";
974
+ const syntaxVariableName$3 = "#0f62fe";
975
+ const textDisabled$7 = "rgba(22, 22, 22, 0.25)";
976
+ const textError$7 = "#da1e28";
977
+ const textHelper$7 = "#6f6f6f";
978
+ const textInverse$7 = "#ffffff";
979
+ const textOnColor$7 = "#ffffff";
980
+ const textOnColorDisabled$7 = "#8d8d8d";
981
+ const textPlaceholder$7 = "rgba(22, 22, 22, 0.4)";
982
+ const textPrimary$7 = "#161616";
983
+ const textSecondary$7 = "#525252";
984
+ const toggleOff$7 = "#8d8d8d";
1202
985
  //#endregion
1203
- //#region src/g90.ts
1204
- /**
1205
- * Copyright IBM Corp. 2018, 2026
1206
- *
1207
- * This source code is licensed under the Apache-2.0 license found in the
1208
- * LICENSE file in the root directory of this source tree.
1209
- */
986
+ //#region js/generated/themes/g90.js
1210
987
  var g90_exports = /* @__PURE__ */ __exportAll({
1211
988
  aiAuraEnd: () => aiAuraEnd$2,
1212
989
  aiAuraHoverBackground: () => aiAuraHoverBackground$2,
@@ -1237,10 +1014,6 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1237
1014
  backgroundInverseHover: () => backgroundInverseHover$6,
1238
1015
  backgroundSelected: () => backgroundSelected$6,
1239
1016
  backgroundSelectedHover: () => backgroundSelectedHover$6,
1240
- bodyLong01: () => _carbon_type.bodyLong01,
1241
- bodyLong02: () => _carbon_type.bodyLong02,
1242
- bodyShort01: () => _carbon_type.bodyShort01,
1243
- bodyShort02: () => _carbon_type.bodyShort02,
1244
1017
  borderDisabled: () => borderDisabled$6,
1245
1018
  borderInteractive: () => borderInteractive$6,
1246
1019
  borderInverse: () => borderInverse$6,
@@ -1257,8 +1030,6 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1257
1030
  borderTile01: () => borderTile01$2,
1258
1031
  borderTile02: () => borderTile02$2,
1259
1032
  borderTile03: () => borderTile03$2,
1260
- caption01: () => _carbon_type.caption01,
1261
- caption02: () => _carbon_type.caption02,
1262
1033
  chatAvatarAgent: () => chatAvatarAgent$2,
1263
1034
  chatAvatarBot: () => chatAvatarBot$2,
1264
1035
  chatAvatarUser: () => chatAvatarUser$2,
@@ -1280,42 +1051,16 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1280
1051
  chatPromptBorderStart: () => chatPromptBorderStart$2,
1281
1052
  chatPromptText: () => chatPromptText$2,
1282
1053
  chatShellBackground: () => chatShellBackground$2,
1283
- code01: () => _carbon_type.code01,
1284
- code02: () => _carbon_type.code02,
1285
1054
  colorScheme: () => colorScheme$2,
1286
- container01: () => _carbon_layout.container01,
1287
- container02: () => _carbon_layout.container02,
1288
- container03: () => _carbon_layout.container03,
1289
- container04: () => _carbon_layout.container04,
1290
- container05: () => _carbon_layout.container05,
1291
- display01: () => _carbon_type.display01,
1292
- display02: () => _carbon_type.display02,
1293
- display03: () => _carbon_type.display03,
1294
- display04: () => _carbon_type.display04,
1295
- expressiveHeading01: () => _carbon_type.expressiveHeading01,
1296
- expressiveHeading02: () => _carbon_type.expressiveHeading02,
1297
- expressiveHeading03: () => _carbon_type.expressiveHeading03,
1298
- expressiveHeading04: () => _carbon_type.expressiveHeading04,
1299
- expressiveHeading05: () => _carbon_type.expressiveHeading05,
1300
- expressiveHeading06: () => _carbon_type.expressiveHeading06,
1301
- expressiveParagraph01: () => _carbon_type.expressiveParagraph01,
1302
1055
  field01: () => field01$6,
1303
1056
  field02: () => field02$6,
1304
1057
  field03: () => field03$2,
1305
1058
  fieldHover01: () => fieldHover01$2,
1306
1059
  fieldHover02: () => fieldHover02$2,
1307
1060
  fieldHover03: () => fieldHover03$2,
1308
- fluidSpacing01: () => _carbon_layout.fluidSpacing01,
1309
- fluidSpacing02: () => _carbon_layout.fluidSpacing02,
1310
- fluidSpacing03: () => _carbon_layout.fluidSpacing03,
1311
- fluidSpacing04: () => _carbon_layout.fluidSpacing04,
1312
1061
  focus: () => focus$7,
1313
1062
  focusInset: () => focusInset$6,
1314
1063
  focusInverse: () => focusInverse$6,
1315
- heading01: () => _carbon_type.heading01,
1316
- heading02: () => _carbon_type.heading02,
1317
- helperText01: () => _carbon_type.helperText01,
1318
- helperText02: () => _carbon_type.helperText02,
1319
1064
  highlight: () => highlight$6,
1320
1065
  iconDisabled: () => iconDisabled$6,
1321
1066
  iconInteractive: () => iconInteractive$2,
@@ -1324,11 +1069,7 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1324
1069
  iconOnColorDisabled: () => iconOnColorDisabled$6,
1325
1070
  iconPrimary: () => iconPrimary$6,
1326
1071
  iconSecondary: () => iconSecondary$6,
1327
- iconSize01: () => _carbon_layout.iconSize01,
1328
- iconSize02: () => _carbon_layout.iconSize02,
1329
1072
  interactive: () => interactive$6,
1330
- label01: () => _carbon_type.label01,
1331
- label02: () => _carbon_type.label02,
1332
1073
  layer01: () => layer01$2,
1333
1074
  layer02: () => layer02$2,
1334
1075
  layer03: () => layer03$2,
@@ -1358,13 +1099,6 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1358
1099
  layerSelectedHover02: () => layerSelectedHover02$2,
1359
1100
  layerSelectedHover03: () => layerSelectedHover03$2,
1360
1101
  layerSelectedInverse: () => layerSelectedInverse$6,
1361
- layout01: () => _carbon_layout.layout01,
1362
- layout02: () => _carbon_layout.layout02,
1363
- layout03: () => _carbon_layout.layout03,
1364
- layout04: () => _carbon_layout.layout04,
1365
- layout05: () => _carbon_layout.layout05,
1366
- layout06: () => _carbon_layout.layout06,
1367
- layout07: () => _carbon_layout.layout07,
1368
1102
  linkInverse: () => linkInverse$6,
1369
1103
  linkInverseActive: () => linkInverseActive$2,
1370
1104
  linkInverseHover: () => linkInverseHover$2,
@@ -1374,37 +1108,9 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1374
1108
  linkSecondary: () => linkSecondary$6,
1375
1109
  linkVisited: () => linkVisited$6,
1376
1110
  overlay: () => overlay$6,
1377
- productiveHeading01: () => _carbon_type.productiveHeading01,
1378
- productiveHeading02: () => _carbon_type.productiveHeading02,
1379
- productiveHeading03: () => _carbon_type.productiveHeading03,
1380
- productiveHeading04: () => _carbon_type.productiveHeading04,
1381
- productiveHeading05: () => _carbon_type.productiveHeading05,
1382
- productiveHeading06: () => _carbon_type.productiveHeading06,
1383
- productiveHeading07: () => _carbon_type.productiveHeading07,
1384
- quotation01: () => _carbon_type.quotation01,
1385
- quotation02: () => _carbon_type.quotation02,
1386
1111
  shadow: () => shadow$6,
1387
- size2XLarge: () => _carbon_layout.size2XLarge,
1388
- sizeLarge: () => _carbon_layout.sizeLarge,
1389
- sizeMedium: () => _carbon_layout.sizeMedium,
1390
- sizeSmall: () => _carbon_layout.sizeSmall,
1391
- sizeXLarge: () => _carbon_layout.sizeXLarge,
1392
- sizeXSmall: () => _carbon_layout.sizeXSmall,
1393
1112
  skeletonBackground: () => skeletonBackground$6,
1394
1113
  skeletonElement: () => skeletonElement$6,
1395
- spacing01: () => _carbon_layout.spacing01,
1396
- spacing02: () => _carbon_layout.spacing02,
1397
- spacing03: () => _carbon_layout.spacing03,
1398
- spacing04: () => _carbon_layout.spacing04,
1399
- spacing05: () => _carbon_layout.spacing05,
1400
- spacing06: () => _carbon_layout.spacing06,
1401
- spacing07: () => _carbon_layout.spacing07,
1402
- spacing08: () => _carbon_layout.spacing08,
1403
- spacing09: () => _carbon_layout.spacing09,
1404
- spacing10: () => _carbon_layout.spacing10,
1405
- spacing11: () => _carbon_layout.spacing11,
1406
- spacing12: () => _carbon_layout.spacing12,
1407
- spacing13: () => _carbon_layout.spacing13,
1408
1114
  supportCautionMajor: () => supportCautionMajor$2,
1409
1115
  supportCautionMinor: () => supportCautionMinor$2,
1410
1116
  supportCautionUndefined: () => supportCautionUndefined$2,
@@ -1516,248 +1222,242 @@ var g90_exports = /* @__PURE__ */ __exportAll({
1516
1222
  toggleOff: () => toggleOff$6
1517
1223
  });
1518
1224
  const colorScheme$2 = "dark";
1519
- const background$7 = _carbon_colors.gray90;
1520
- const backgroundInverse$6 = _carbon_colors.gray10;
1521
- const backgroundBrand$6 = _carbon_colors.blue60;
1522
- const backgroundActive$6 = adjustAlpha(_carbon_colors.gray50, .4);
1523
- const backgroundHover$6 = adjustAlpha(_carbon_colors.gray50, .16);
1524
- const backgroundInverseHover$6 = _carbon_colors.gray10Hover;
1525
- const backgroundSelected$6 = adjustAlpha(_carbon_colors.gray50, .24);
1526
- const backgroundSelectedHover$6 = adjustAlpha(_carbon_colors.gray50, .32);
1527
- const layer01$2 = _carbon_colors.gray80;
1528
- const layerActive01$2 = _carbon_colors.gray60;
1529
- const layerBackground01$2 = _carbon_colors.gray90;
1530
- const layerHover01$2 = _carbon_colors.gray80Hover;
1531
- const layerSelected01$2 = _carbon_colors.gray70;
1532
- const layerSelectedHover01$2 = _carbon_colors.gray70Hover;
1533
- const layer02$2 = _carbon_colors.gray70;
1534
- const layerActive02$2 = _carbon_colors.gray50;
1535
- const layerBackground02$2 = _carbon_colors.gray80;
1536
- const layerHover02$2 = _carbon_colors.gray70Hover;
1537
- const layerSelected02$2 = _carbon_colors.gray60;
1538
- const layerSelectedHover02$2 = _carbon_colors.gray60Hover;
1539
- const layer03$2 = _carbon_colors.gray60;
1540
- const layerActive03$2 = _carbon_colors.gray80;
1541
- const layerBackground03$2 = _carbon_colors.gray70;
1542
- const layerHover03$2 = _carbon_colors.gray60Hover;
1543
- const layerSelected03$2 = _carbon_colors.gray70;
1544
- const layerSelectedHover03$2 = _carbon_colors.gray70Hover;
1545
- const layerSelectedInverse$6 = _carbon_colors.gray10;
1546
- const layerSelectedDisabled$6 = _carbon_colors.gray40;
1547
- const layerAccent01$2 = _carbon_colors.gray70;
1548
- const layerAccentActive01$2 = _carbon_colors.gray50;
1549
- const layerAccentHover01$2 = _carbon_colors.gray70Hover;
1550
- const layerAccent02$2 = _carbon_colors.gray60;
1551
- const layerAccentActive02$2 = _carbon_colors.gray80;
1552
- const layerAccentHover02$2 = _carbon_colors.gray60Hover;
1553
- const layerAccent03$2 = _carbon_colors.gray50;
1554
- const layerAccentActive03$2 = _carbon_colors.gray70;
1555
- const layerAccentHover03$2 = _carbon_colors.gray50Hover;
1556
- const field01$6 = _carbon_colors.gray80;
1557
- const fieldHover01$2 = _carbon_colors.gray80Hover;
1558
- const field02$6 = _carbon_colors.gray70;
1559
- const fieldHover02$2 = _carbon_colors.gray70Hover;
1560
- const field03$2 = _carbon_colors.gray60;
1561
- const fieldHover03$2 = _carbon_colors.gray60Hover;
1562
- const borderSubtle00$2 = _carbon_colors.gray70;
1563
- const borderSubtle01$2 = _carbon_colors.gray60;
1564
- const borderSubtleSelected01$2 = _carbon_colors.gray50;
1565
- const borderSubtle02$2 = _carbon_colors.gray50;
1566
- const borderSubtleSelected02$2 = _carbon_colors.gray40;
1567
- const borderSubtle03$2 = _carbon_colors.gray50;
1568
- const borderSubtleSelected03$2 = _carbon_colors.gray40;
1569
- const borderStrong01$2 = _carbon_colors.gray50;
1570
- const borderStrong02$2 = _carbon_colors.gray40;
1571
- const borderStrong03$2 = _carbon_colors.gray30;
1572
- const borderTile01$2 = _carbon_colors.gray60;
1573
- const borderTile02$2 = _carbon_colors.gray50;
1574
- const borderTile03$2 = _carbon_colors.gray40;
1575
- const borderInverse$6 = _carbon_colors.gray10;
1576
- const borderInteractive$6 = _carbon_colors.blue50;
1577
- const borderDisabled$6 = adjustAlpha(_carbon_colors.gray50, .5);
1578
- const textPrimary$6 = _carbon_colors.gray10;
1579
- const textSecondary$6 = _carbon_colors.gray30;
1580
- const textPlaceholder$6 = adjustAlpha(textPrimary$6, .4);
1581
- const textHelper$6 = _carbon_colors.gray30;
1582
- const textError$6 = _carbon_colors.red30;
1583
- const textInverse$6 = _carbon_colors.gray100;
1584
- const textOnColor$6 = _carbon_colors.white;
1585
- const textOnColorDisabled$6 = adjustAlpha(textOnColor$6, .25);
1586
- const textDisabled$6 = adjustAlpha(textPrimary$6, .25);
1587
- const linkPrimary$6 = _carbon_colors.blue40;
1588
- const linkPrimaryHover$6 = _carbon_colors.blue30;
1589
- const linkSecondary$6 = _carbon_colors.blue30;
1590
- const linkInverse$6 = _carbon_colors.blue60;
1591
- const linkVisited$6 = _carbon_colors.purple40;
1592
- const linkInverseVisited$2 = _carbon_colors.purple60;
1593
- const linkInverseActive$2 = _carbon_colors.gray100;
1594
- const linkInverseHover$2 = _carbon_colors.blue70;
1595
- const iconPrimary$6 = _carbon_colors.gray10;
1596
- const iconSecondary$6 = _carbon_colors.gray30;
1597
- const iconInverse$6 = _carbon_colors.gray100;
1598
- const iconOnColor$6 = _carbon_colors.white;
1599
- const iconOnColorDisabled$6 = adjustAlpha(iconOnColor$6, .25);
1600
- const iconDisabled$6 = adjustAlpha(iconPrimary$6, .25);
1601
- const iconInteractive$2 = _carbon_colors.white;
1602
- const supportError$6 = _carbon_colors.red40;
1603
- const supportSuccess$6 = _carbon_colors.green40;
1604
- const supportWarning$6 = _carbon_colors.yellow30;
1605
- const supportInfo$6 = _carbon_colors.blue50;
1606
- const supportErrorInverse$6 = _carbon_colors.red60;
1607
- const supportSuccessInverse$6 = _carbon_colors.green50;
1608
- const supportWarningInverse$6 = _carbon_colors.yellow30;
1609
- const supportInfoInverse$6 = _carbon_colors.blue70;
1610
- const supportCautionMinor$2 = _carbon_colors.yellow30;
1611
- const supportCautionMajor$2 = _carbon_colors.orange40;
1612
- const supportCautionUndefined$2 = _carbon_colors.purple50;
1613
- const focus$7 = _carbon_colors.white;
1614
- const focusInset$6 = _carbon_colors.gray100;
1615
- const focusInverse$6 = _carbon_colors.blue60;
1616
- const skeletonBackground$6 = _carbon_colors.gray90Hover;
1617
- const skeletonElement$6 = _carbon_colors.gray70;
1618
- const interactive$6 = _carbon_colors.blue50;
1619
- const highlight$6 = _carbon_colors.blue80;
1620
- const overlay$6 = (0, _carbon_colors.rgba)(_carbon_colors.black, .6);
1621
- const toggleOff$6 = _carbon_colors.gray50;
1622
- const shadow$6 = (0, _carbon_colors.rgba)(_carbon_colors.black, .8);
1623
- const syntaxComment$2 = _carbon_colors.green40;
1624
- const syntaxLineComment$2 = syntaxComment$2;
1625
- const syntaxBlockComment$2 = syntaxComment$2;
1626
- const syntaxDocComment$2 = syntaxComment$2;
1627
- const syntaxString$2 = textPrimary$6;
1628
- const syntaxDocString$2 = syntaxString$2;
1629
- const syntaxKeyword$2 = _carbon_colors.blue50;
1630
- const syntaxOperatorKeyword$2 = syntaxKeyword$2;
1631
- const syntaxControlKeyword$2 = _carbon_colors.purple40;
1632
- const syntaxDefinitionKeyword$2 = _carbon_colors.cyan40;
1633
- const syntaxModuleKeyword$2 = _carbon_colors.purple40;
1634
- const syntaxVariable$2 = _carbon_colors.blue30;
1635
- const syntaxName$2 = syntaxVariable$2;
1636
- const syntaxVariableName$2 = syntaxVariable$2;
1637
- const syntaxLabelName$2 = syntaxVariable$2;
1638
- const syntaxAttribute$2 = _carbon_colors.cyan40;
1639
- const syntaxAttributeName$2 = syntaxAttribute$2;
1640
- const syntaxPropertyName$2 = syntaxAttribute$2;
1641
- const syntaxTag$2 = _carbon_colors.teal30;
1642
- const syntaxTagName$2 = syntaxTag$2;
1643
- const syntaxType$2 = _carbon_colors.teal30;
1644
- const syntaxTypeName$2 = syntaxType$2;
1645
- const syntaxClassName$2 = syntaxType$2;
1646
- const syntaxNamespace$2 = syntaxType$2;
1647
- const syntaxMacroName$2 = textPrimary$6;
1648
- const syntaxAtom$2 = syntaxMacroName$2;
1649
- const syntaxLiteral$2 = syntaxAtom$2;
1650
- const syntaxBool$2 = syntaxAtom$2;
1651
- const syntaxNull$2 = syntaxAtom$2;
1652
- const syntaxSelf$2 = syntaxTag$2;
1653
- const syntaxNumber$2 = _carbon_colors.green30;
1654
- const syntaxInteger$2 = syntaxNumber$2;
1655
- const syntaxFloat$2 = syntaxNumber$2;
1656
- const syntaxUnit$2 = syntaxNumber$2;
1657
- const syntaxCharacter$2 = syntaxString$2;
1658
- const syntaxAttributeValue$2 = syntaxString$2;
1659
- const syntaxSpecialString$2 = _carbon_colors.purple40;
1660
- const syntaxRegexp$2 = _carbon_colors.purple40;
1661
- const syntaxEscape$2 = _carbon_colors.gray20;
1662
- const syntaxUrl$2 = syntaxEscape$2;
1663
- const syntaxColor$2 = syntaxMacroName$2;
1664
- const syntaxOperator$2 = _carbon_colors.gray20;
1665
- const syntaxDerefOperator$2 = syntaxOperator$2;
1666
- const syntaxArithmeticOperator$2 = syntaxOperator$2;
1667
- const syntaxLogicOperator$2 = syntaxOperator$2;
1668
- const syntaxBitwiseOperator$2 = syntaxOperator$2;
1669
- const syntaxCompareOperator$2 = syntaxOperator$2;
1670
- const syntaxUpdateOperator$2 = syntaxOperator$2;
1671
- const syntaxDefinitionOperator$2 = syntaxDefinitionKeyword$2;
1672
- const syntaxTypeOperator$2 = syntaxTag$2;
1673
- const syntaxControlOperator$2 = syntaxModuleKeyword$2;
1674
- const syntaxModifier$2 = syntaxKeyword$2;
1675
- const syntaxPunctuation$2 = _carbon_colors.gray20;
1676
- const syntaxSeparator$2 = syntaxPunctuation$2;
1677
- const syntaxBracket$2 = syntaxPunctuation$2;
1678
- const syntaxAngleBracket$2 = _carbon_colors.gray50;
1679
- const syntaxSquareBracket$2 = syntaxBracket$2;
1680
- const syntaxParen$2 = syntaxBracket$2;
1681
- const syntaxBrace$2 = syntaxBracket$2;
1682
- const syntaxContent$2 = textPrimary$6;
1683
- const syntaxList$2 = syntaxContent$2;
1684
- const syntaxEmphasis$2 = syntaxContent$2;
1685
- const syntaxStrong$2 = syntaxContent$2;
1686
- const syntaxMonospace$2 = syntaxContent$2;
1687
- const syntaxStrikethrough$2 = syntaxContent$2;
1688
- const syntaxHeading$2 = _carbon_colors.cyan40;
1689
- const syntaxHeading1$2 = syntaxHeading$2;
1690
- const syntaxHeading2$2 = syntaxHeading$2;
1691
- const syntaxHeading3$2 = syntaxHeading$2;
1692
- const syntaxHeading4$2 = syntaxHeading$2;
1693
- const syntaxHeading5$2 = syntaxHeading$2;
1694
- const syntaxHeading6$2 = syntaxHeading$2;
1695
- const syntaxContentSeparator$2 = syntaxPunctuation$2;
1696
- const syntaxQuote$2 = syntaxComment$2;
1697
- const syntaxLink$2 = _carbon_colors.blue50;
1698
- const syntaxInvalid$2 = _carbon_colors.red50;
1699
- const syntaxMeta$2 = _carbon_colors.green40;
1700
- const syntaxDocumentMeta$2 = syntaxMeta$2;
1701
- const syntaxAnnotation$2 = _carbon_colors.teal40;
1702
- const syntaxProcessingInstruction$2 = syntaxString$2;
1703
- const syntaxDefinition$2 = _carbon_colors.cyan40;
1704
- const syntaxConstant$2 = _carbon_colors.blue50;
1705
- const syntaxFunction$2 = _carbon_colors.yellow30;
1706
- const syntaxStandard$2 = _carbon_colors.blue50;
1707
- const syntaxLocal$2 = _carbon_colors.blue30;
1708
- const syntaxSpecial$2 = _carbon_colors.blue50;
1709
- const syntaxInserted$2 = _carbon_colors.green60;
1710
- const syntaxDeleted$2 = _carbon_colors.red70;
1711
- const aiInnerShadow$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1712
- const aiAuraStartSm$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
1713
- const aiAuraStart$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
1714
- const aiAuraEnd$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, 0);
1715
- const aiBorderStrong$2 = _carbon_colors.blue40;
1716
- const aiBorderStart$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue30, .36);
1717
- const aiBorderEnd$2 = _carbon_colors.blue50;
1718
- const aiDropShadow$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, .28);
1719
- const aiAuraHoverBackground$2 = layerHover01$2;
1720
- const aiAuraHoverStart$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .4);
1721
- const aiAuraHoverEnd$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, 0);
1722
- const aiPopoverBackground$2 = _carbon_colors.gray100;
1723
- const aiPopoverShadowOuter01$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, .12);
1724
- const aiPopoverShadowOuter02$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, .08);
1725
- const aiSkeletonBackground$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue40, .5);
1726
- const aiSkeletonElementBackground$2 = (0, _carbon_colors.rgba)(_carbon_colors.blue40, .3);
1727
- const aiOverlay$2 = (0, _carbon_colors.rgba)(_carbon_colors.black, .5);
1728
- const aiPopoverCaretCenter$2 = "#4870B5";
1729
- const aiPopoverCaretBottom$2 = _carbon_colors.blue50;
1730
- const aiPopoverCaretBottomBackgroundActions$2 = "#1E283A";
1731
- const aiPopoverCaretBottomBackground$2 = "#202D45";
1732
- const chatPromptBackground$2 = _carbon_colors.gray100;
1733
- const chatPromptBorderStart$2 = _carbon_colors.gray90;
1734
- const chatPromptBorderEnd$2 = (0, _carbon_colors.rgba)(_carbon_colors.gray90, 0);
1735
- const chatPromptText$2 = textPrimary$6;
1736
- const chatBubbleUser$2 = _carbon_colors.gray80;
1737
- const chatBubbleUserText$2 = textPrimary$6;
1738
- const chatBubbleAgent$2 = _carbon_colors.gray90;
1739
- const chatBubbleAgentText$2 = textPrimary$6;
1740
- const chatBubbleBorder$2 = _carbon_colors.gray70;
1741
- const chatAvatarBot$2 = _carbon_colors.gray50;
1742
- const chatAvatarAgent$2 = _carbon_colors.gray30;
1743
- const chatAvatarUser$2 = _carbon_colors.blue50;
1744
- const chatShellBackground$2 = _carbon_colors.gray90;
1745
- const chatHeaderBackground$2 = _carbon_colors.gray90;
1746
- const chatHeaderText$2 = textPrimary$6;
1747
- const chatButton$2 = linkPrimary$6;
1748
- const chatButtonHover$2 = backgroundHover$6;
1749
- const chatButtonTextHover$2 = linkPrimaryHover$6;
1750
- const chatButtonActive$2 = backgroundActive$6;
1751
- const chatButtonSelected$2 = backgroundSelected$6;
1752
- const chatButtonTextSelected$2 = textSecondary$6;
1225
+ const aiAuraEnd$2 = "rgba(0, 0, 0, 0)";
1226
+ const aiAuraHoverBackground$2 = "#474747";
1227
+ const aiAuraHoverEnd$2 = "rgba(0, 0, 0, 0)";
1228
+ const aiAuraHoverStart$2 = "rgba(69, 137, 255, 0.4)";
1229
+ const aiAuraStart$2 = "rgba(69, 137, 255, 0.1)";
1230
+ const aiAuraStartSm$2 = "rgba(69, 137, 255, 0.16)";
1231
+ const aiBorderEnd$2 = "#4589ff";
1232
+ const aiBorderStart$2 = "rgba(166, 200, 255, 0.36)";
1233
+ const aiBorderStrong$2 = "#78a9ff";
1234
+ const aiDropShadow$2 = "rgba(0, 0, 0, 0.28)";
1235
+ const aiInnerShadow$2 = "rgba(69, 137, 255, 0.16)";
1236
+ const aiOverlay$2 = "rgba(0, 0, 0, 0.5)";
1237
+ const aiPopoverBackground$2 = "#161616";
1238
+ const aiPopoverCaretBottom$2 = "#4589ff";
1239
+ const aiPopoverCaretBottomBackground$2 = "#202d45";
1240
+ const aiPopoverCaretBottomBackgroundActions$2 = "#1e283a";
1241
+ const aiPopoverCaretCenter$2 = "#4870b5";
1242
+ const aiPopoverShadowOuter01$2 = "rgba(0, 0, 0, 0.12)";
1243
+ const aiPopoverShadowOuter02$2 = "rgba(0, 0, 0, 0.08)";
1244
+ const aiSkeletonBackground$2 = "rgba(120, 169, 255, 0.5)";
1245
+ const aiSkeletonElementBackground$2 = "rgba(120, 169, 255, 0.3)";
1246
+ const background$7 = "#262626";
1247
+ const backgroundActive$6 = "rgba(141, 141, 141, 0.4)";
1248
+ const backgroundBrand$6 = "#0f62fe";
1249
+ const backgroundHover$6 = "rgba(141, 141, 141, 0.16)";
1250
+ const backgroundInverse$6 = "#f4f4f4";
1251
+ const backgroundInverseHover$6 = "#e8e8e8";
1252
+ const backgroundSelected$6 = "rgba(141, 141, 141, 0.24)";
1253
+ const backgroundSelectedHover$6 = "rgba(141, 141, 141, 0.32)";
1254
+ const borderDisabled$6 = "rgba(141, 141, 141, 0.5)";
1255
+ const borderInteractive$6 = "#4589ff";
1256
+ const borderInverse$6 = "#f4f4f4";
1257
+ const borderStrong01$2 = "#8d8d8d";
1258
+ const borderStrong02$2 = "#a8a8a8";
1259
+ const borderStrong03$2 = "#c6c6c6";
1260
+ const borderSubtle00$2 = "#525252";
1261
+ const borderSubtle01$2 = "#6f6f6f";
1262
+ const borderSubtle02$2 = "#8d8d8d";
1263
+ const borderSubtle03$2 = "#8d8d8d";
1264
+ const borderSubtleSelected01$2 = "#8d8d8d";
1265
+ const borderSubtleSelected02$2 = "#a8a8a8";
1266
+ const borderSubtleSelected03$2 = "#a8a8a8";
1267
+ const borderTile01$2 = "#6f6f6f";
1268
+ const borderTile02$2 = "#8d8d8d";
1269
+ const borderTile03$2 = "#a8a8a8";
1270
+ const chatAvatarAgent$2 = "#c6c6c6";
1271
+ const chatAvatarBot$2 = "#8d8d8d";
1272
+ const chatAvatarUser$2 = "#4589ff";
1273
+ const chatBubbleAgent$2 = "#262626";
1274
+ const chatBubbleAgentText$2 = "#f4f4f4";
1275
+ const chatBubbleBorder$2 = "#525252";
1276
+ const chatBubbleUser$2 = "#393939";
1277
+ const chatBubbleUserText$2 = "#f4f4f4";
1278
+ const chatButton$2 = "#78a9ff";
1279
+ const chatButtonActive$2 = "rgba(141, 141, 141, 0.4)";
1280
+ const chatButtonHover$2 = "rgba(141, 141, 141, 0.16)";
1281
+ const chatButtonSelected$2 = "rgba(141, 141, 141, 0.24)";
1282
+ const chatButtonTextHover$2 = "#a6c8ff";
1283
+ const chatButtonTextSelected$2 = "#c6c6c6";
1284
+ const chatHeaderBackground$2 = "#262626";
1285
+ const chatHeaderText$2 = "#f4f4f4";
1286
+ const chatPromptBackground$2 = "#161616";
1287
+ const chatPromptBorderEnd$2 = "rgba(38, 38, 38, 0)";
1288
+ const chatPromptBorderStart$2 = "#262626";
1289
+ const chatPromptText$2 = "#f4f4f4";
1290
+ const chatShellBackground$2 = "#262626";
1291
+ const field01$6 = "#393939";
1292
+ const field02$6 = "#525252";
1293
+ const field03$2 = "#6f6f6f";
1294
+ const fieldHover01$2 = "#474747";
1295
+ const fieldHover02$2 = "#636363";
1296
+ const fieldHover03$2 = "#5e5e5e";
1297
+ const focus$7 = "#ffffff";
1298
+ const focusInset$6 = "#161616";
1299
+ const focusInverse$6 = "#0f62fe";
1300
+ const highlight$6 = "#002d9c";
1301
+ const iconDisabled$6 = "rgba(244, 244, 244, 0.25)";
1302
+ const iconInteractive$2 = "#ffffff";
1303
+ const iconInverse$6 = "#161616";
1304
+ const iconOnColor$6 = "#ffffff";
1305
+ const iconOnColorDisabled$6 = "rgba(255, 255, 255, 0.25)";
1306
+ const iconPrimary$6 = "#f4f4f4";
1307
+ const iconSecondary$6 = "#c6c6c6";
1308
+ const interactive$6 = "#4589ff";
1309
+ const layer01$2 = "#393939";
1310
+ const layer02$2 = "#525252";
1311
+ const layer03$2 = "#6f6f6f";
1312
+ const layerAccent01$2 = "#525252";
1313
+ const layerAccent02$2 = "#6f6f6f";
1314
+ const layerAccent03$2 = "#8d8d8d";
1315
+ const layerAccentActive01$2 = "#8d8d8d";
1316
+ const layerAccentActive02$2 = "#393939";
1317
+ const layerAccentActive03$2 = "#525252";
1318
+ const layerAccentHover01$2 = "#636363";
1319
+ const layerAccentHover02$2 = "#5e5e5e";
1320
+ const layerAccentHover03$2 = "#7a7a7a";
1321
+ const layerActive01$2 = "#6f6f6f";
1322
+ const layerActive02$2 = "#8d8d8d";
1323
+ const layerActive03$2 = "#393939";
1324
+ const layerBackground01$2 = "#262626";
1325
+ const layerBackground02$2 = "#393939";
1326
+ const layerBackground03$2 = "#525252";
1327
+ const layerHover01$2 = "#474747";
1328
+ const layerHover02$2 = "#636363";
1329
+ const layerHover03$2 = "#5e5e5e";
1330
+ const layerSelected01$2 = "#525252";
1331
+ const layerSelected02$2 = "#6f6f6f";
1332
+ const layerSelected03$2 = "#525252";
1333
+ const layerSelectedDisabled$6 = "#a8a8a8";
1334
+ const layerSelectedHover01$2 = "#636363";
1335
+ const layerSelectedHover02$2 = "#5e5e5e";
1336
+ const layerSelectedHover03$2 = "#636363";
1337
+ const layerSelectedInverse$6 = "#f4f4f4";
1338
+ const linkInverse$6 = "#0f62fe";
1339
+ const linkInverseActive$2 = "#161616";
1340
+ const linkInverseHover$2 = "#0043ce";
1341
+ const linkInverseVisited$2 = "#8a3ffc";
1342
+ const linkPrimary$6 = "#78a9ff";
1343
+ const linkPrimaryHover$6 = "#a6c8ff";
1344
+ const linkSecondary$6 = "#a6c8ff";
1345
+ const linkVisited$6 = "#be95ff";
1346
+ const overlay$6 = "rgba(0, 0, 0, 0.6)";
1347
+ const shadow$6 = "rgba(0, 0, 0, 0.8)";
1348
+ const skeletonBackground$6 = "#333333";
1349
+ const skeletonElement$6 = "#525252";
1350
+ const supportCautionMajor$2 = "#ff832b";
1351
+ const supportCautionMinor$2 = "#f1c21b";
1352
+ const supportCautionUndefined$2 = "#a56eff";
1353
+ const supportError$6 = "#ff8389";
1354
+ const supportErrorInverse$6 = "#da1e28";
1355
+ const supportInfo$6 = "#4589ff";
1356
+ const supportInfoInverse$6 = "#0043ce";
1357
+ const supportSuccess$6 = "#42be65";
1358
+ const supportSuccessInverse$6 = "#24a148";
1359
+ const supportWarning$6 = "#f1c21b";
1360
+ const supportWarningInverse$6 = "#f1c21b";
1361
+ const syntaxAngleBracket$2 = "#8d8d8d";
1362
+ const syntaxAnnotation$2 = "#08bdba";
1363
+ const syntaxArithmeticOperator$2 = "#e0e0e0";
1364
+ const syntaxAtom$2 = "#f4f4f4";
1365
+ const syntaxAttribute$2 = "#33b1ff";
1366
+ const syntaxAttributeName$2 = "#33b1ff";
1367
+ const syntaxAttributeValue$2 = "#f4f4f4";
1368
+ const syntaxBitwiseOperator$2 = "#e0e0e0";
1369
+ const syntaxBlockComment$2 = "#42be65";
1370
+ const syntaxBool$2 = "#f4f4f4";
1371
+ const syntaxBrace$2 = "#e0e0e0";
1372
+ const syntaxBracket$2 = "#e0e0e0";
1373
+ const syntaxCharacter$2 = "#f4f4f4";
1374
+ const syntaxClassName$2 = "#3ddbd9";
1375
+ const syntaxColor$2 = "#f4f4f4";
1376
+ const syntaxComment$2 = "#42be65";
1377
+ const syntaxCompareOperator$2 = "#e0e0e0";
1378
+ const syntaxConstant$2 = "#4589ff";
1379
+ const syntaxContent$2 = "#f4f4f4";
1380
+ const syntaxContentSeparator$2 = "#e0e0e0";
1381
+ const syntaxControlKeyword$2 = "#be95ff";
1382
+ const syntaxControlOperator$2 = "#be95ff";
1383
+ const syntaxDefinition$2 = "#33b1ff";
1384
+ const syntaxDefinitionKeyword$2 = "#33b1ff";
1385
+ const syntaxDefinitionOperator$2 = "#33b1ff";
1386
+ const syntaxDeleted$2 = "#a2191f";
1387
+ const syntaxDerefOperator$2 = "#e0e0e0";
1388
+ const syntaxDocComment$2 = "#42be65";
1389
+ const syntaxDocString$2 = "#f4f4f4";
1390
+ const syntaxDocumentMeta$2 = "#42be65";
1391
+ const syntaxEmphasis$2 = "#f4f4f4";
1392
+ const syntaxEscape$2 = "#e0e0e0";
1393
+ const syntaxFloat$2 = "#6fdc8c";
1394
+ const syntaxFunction$2 = "#f1c21b";
1395
+ const syntaxHeading$2 = "#33b1ff";
1396
+ const syntaxHeading1$2 = "#33b1ff";
1397
+ const syntaxHeading2$2 = "#33b1ff";
1398
+ const syntaxHeading3$2 = "#33b1ff";
1399
+ const syntaxHeading4$2 = "#33b1ff";
1400
+ const syntaxHeading5$2 = "#33b1ff";
1401
+ const syntaxHeading6$2 = "#33b1ff";
1402
+ const syntaxInserted$2 = "#198038";
1403
+ const syntaxInteger$2 = "#6fdc8c";
1404
+ const syntaxInvalid$2 = "#fa4d56";
1405
+ const syntaxKeyword$2 = "#4589ff";
1406
+ const syntaxLabelName$2 = "#a6c8ff";
1407
+ const syntaxLineComment$2 = "#42be65";
1408
+ const syntaxLink$2 = "#4589ff";
1409
+ const syntaxList$2 = "#f4f4f4";
1410
+ const syntaxLiteral$2 = "#f4f4f4";
1411
+ const syntaxLocal$2 = "#a6c8ff";
1412
+ const syntaxLogicOperator$2 = "#e0e0e0";
1413
+ const syntaxMacroName$2 = "#f4f4f4";
1414
+ const syntaxMeta$2 = "#42be65";
1415
+ const syntaxModifier$2 = "#4589ff";
1416
+ const syntaxModuleKeyword$2 = "#be95ff";
1417
+ const syntaxMonospace$2 = "#f4f4f4";
1418
+ const syntaxName$2 = "#a6c8ff";
1419
+ const syntaxNamespace$2 = "#3ddbd9";
1420
+ const syntaxNull$2 = "#f4f4f4";
1421
+ const syntaxNumber$2 = "#6fdc8c";
1422
+ const syntaxOperator$2 = "#e0e0e0";
1423
+ const syntaxOperatorKeyword$2 = "#4589ff";
1424
+ const syntaxParen$2 = "#e0e0e0";
1425
+ const syntaxProcessingInstruction$2 = "#f4f4f4";
1426
+ const syntaxPropertyName$2 = "#33b1ff";
1427
+ const syntaxPunctuation$2 = "#e0e0e0";
1428
+ const syntaxQuote$2 = "#42be65";
1429
+ const syntaxRegexp$2 = "#be95ff";
1430
+ const syntaxSelf$2 = "#3ddbd9";
1431
+ const syntaxSeparator$2 = "#e0e0e0";
1432
+ const syntaxSpecial$2 = "#4589ff";
1433
+ const syntaxSpecialString$2 = "#be95ff";
1434
+ const syntaxSquareBracket$2 = "#e0e0e0";
1435
+ const syntaxStandard$2 = "#4589ff";
1436
+ const syntaxStrikethrough$2 = "#f4f4f4";
1437
+ const syntaxString$2 = "#f4f4f4";
1438
+ const syntaxStrong$2 = "#f4f4f4";
1439
+ const syntaxTag$2 = "#3ddbd9";
1440
+ const syntaxTagName$2 = "#3ddbd9";
1441
+ const syntaxType$2 = "#3ddbd9";
1442
+ const syntaxTypeName$2 = "#3ddbd9";
1443
+ const syntaxTypeOperator$2 = "#3ddbd9";
1444
+ const syntaxUnit$2 = "#6fdc8c";
1445
+ const syntaxUpdateOperator$2 = "#e0e0e0";
1446
+ const syntaxUrl$2 = "#e0e0e0";
1447
+ const syntaxVariable$2 = "#a6c8ff";
1448
+ const syntaxVariableName$2 = "#a6c8ff";
1449
+ const textDisabled$6 = "rgba(244, 244, 244, 0.25)";
1450
+ const textError$6 = "#ffb3b8";
1451
+ const textHelper$6 = "#c6c6c6";
1452
+ const textInverse$6 = "#161616";
1453
+ const textOnColor$6 = "#ffffff";
1454
+ const textOnColorDisabled$6 = "rgba(255, 255, 255, 0.25)";
1455
+ const textPlaceholder$6 = "rgba(244, 244, 244, 0.4)";
1456
+ const textPrimary$6 = "#f4f4f4";
1457
+ const textSecondary$6 = "#c6c6c6";
1458
+ const toggleOff$6 = "#8d8d8d";
1753
1459
  //#endregion
1754
- //#region src/g100.ts
1755
- /**
1756
- * Copyright IBM Corp. 2018, 2026
1757
- *
1758
- * This source code is licensed under the Apache-2.0 license found in the
1759
- * LICENSE file in the root directory of this source tree.
1760
- */
1460
+ //#region js/generated/themes/g100.js
1761
1461
  var g100_exports = /* @__PURE__ */ __exportAll({
1762
1462
  aiAuraEnd: () => aiAuraEnd$1,
1763
1463
  aiAuraHoverBackground: () => aiAuraHoverBackground$1,
@@ -1788,10 +1488,6 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1788
1488
  backgroundInverseHover: () => backgroundInverseHover$5,
1789
1489
  backgroundSelected: () => backgroundSelected$5,
1790
1490
  backgroundSelectedHover: () => backgroundSelectedHover$5,
1791
- bodyLong01: () => _carbon_type.bodyLong01,
1792
- bodyLong02: () => _carbon_type.bodyLong02,
1793
- bodyShort01: () => _carbon_type.bodyShort01,
1794
- bodyShort02: () => _carbon_type.bodyShort02,
1795
1491
  borderDisabled: () => borderDisabled$5,
1796
1492
  borderInteractive: () => borderInteractive$5,
1797
1493
  borderInverse: () => borderInverse$5,
@@ -1808,8 +1504,6 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1808
1504
  borderTile01: () => borderTile01$1,
1809
1505
  borderTile02: () => borderTile02$1,
1810
1506
  borderTile03: () => borderTile03$1,
1811
- caption01: () => _carbon_type.caption01,
1812
- caption02: () => _carbon_type.caption02,
1813
1507
  chatAvatarAgent: () => chatAvatarAgent$1,
1814
1508
  chatAvatarBot: () => chatAvatarBot$1,
1815
1509
  chatAvatarUser: () => chatAvatarUser$1,
@@ -1831,42 +1525,16 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1831
1525
  chatPromptBorderStart: () => chatPromptBorderStart$1,
1832
1526
  chatPromptText: () => chatPromptText$1,
1833
1527
  chatShellBackground: () => chatShellBackground$1,
1834
- code01: () => _carbon_type.code01,
1835
- code02: () => _carbon_type.code02,
1836
1528
  colorScheme: () => colorScheme$1,
1837
- container01: () => _carbon_layout.container01,
1838
- container02: () => _carbon_layout.container02,
1839
- container03: () => _carbon_layout.container03,
1840
- container04: () => _carbon_layout.container04,
1841
- container05: () => _carbon_layout.container05,
1842
- display01: () => _carbon_type.display01,
1843
- display02: () => _carbon_type.display02,
1844
- display03: () => _carbon_type.display03,
1845
- display04: () => _carbon_type.display04,
1846
- expressiveHeading01: () => _carbon_type.expressiveHeading01,
1847
- expressiveHeading02: () => _carbon_type.expressiveHeading02,
1848
- expressiveHeading03: () => _carbon_type.expressiveHeading03,
1849
- expressiveHeading04: () => _carbon_type.expressiveHeading04,
1850
- expressiveHeading05: () => _carbon_type.expressiveHeading05,
1851
- expressiveHeading06: () => _carbon_type.expressiveHeading06,
1852
- expressiveParagraph01: () => _carbon_type.expressiveParagraph01,
1853
1529
  field01: () => field01$5,
1854
1530
  field02: () => field02$5,
1855
1531
  field03: () => field03$1,
1856
1532
  fieldHover01: () => fieldHover01$1,
1857
1533
  fieldHover02: () => fieldHover02$1,
1858
1534
  fieldHover03: () => fieldHover03$1,
1859
- fluidSpacing01: () => _carbon_layout.fluidSpacing01,
1860
- fluidSpacing02: () => _carbon_layout.fluidSpacing02,
1861
- fluidSpacing03: () => _carbon_layout.fluidSpacing03,
1862
- fluidSpacing04: () => _carbon_layout.fluidSpacing04,
1863
1535
  focus: () => focus$6,
1864
1536
  focusInset: () => focusInset$5,
1865
1537
  focusInverse: () => focusInverse$5,
1866
- heading01: () => _carbon_type.heading01,
1867
- heading02: () => _carbon_type.heading02,
1868
- helperText01: () => _carbon_type.helperText01,
1869
- helperText02: () => _carbon_type.helperText02,
1870
1538
  highlight: () => highlight$5,
1871
1539
  iconDisabled: () => iconDisabled$5,
1872
1540
  iconInteractive: () => iconInteractive$1,
@@ -1875,11 +1543,7 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1875
1543
  iconOnColorDisabled: () => iconOnColorDisabled$5,
1876
1544
  iconPrimary: () => iconPrimary$5,
1877
1545
  iconSecondary: () => iconSecondary$5,
1878
- iconSize01: () => _carbon_layout.iconSize01,
1879
- iconSize02: () => _carbon_layout.iconSize02,
1880
1546
  interactive: () => interactive$5,
1881
- label01: () => _carbon_type.label01,
1882
- label02: () => _carbon_type.label02,
1883
1547
  layer01: () => layer01$1,
1884
1548
  layer02: () => layer02$1,
1885
1549
  layer03: () => layer03$1,
@@ -1909,13 +1573,6 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1909
1573
  layerSelectedHover02: () => layerSelectedHover02$1,
1910
1574
  layerSelectedHover03: () => layerSelectedHover03$1,
1911
1575
  layerSelectedInverse: () => layerSelectedInverse$5,
1912
- layout01: () => _carbon_layout.layout01,
1913
- layout02: () => _carbon_layout.layout02,
1914
- layout03: () => _carbon_layout.layout03,
1915
- layout04: () => _carbon_layout.layout04,
1916
- layout05: () => _carbon_layout.layout05,
1917
- layout06: () => _carbon_layout.layout06,
1918
- layout07: () => _carbon_layout.layout07,
1919
1576
  linkInverse: () => linkInverse$5,
1920
1577
  linkInverseActive: () => linkInverseActive$1,
1921
1578
  linkInverseHover: () => linkInverseHover$1,
@@ -1925,37 +1582,9 @@ var g100_exports = /* @__PURE__ */ __exportAll({
1925
1582
  linkSecondary: () => linkSecondary$5,
1926
1583
  linkVisited: () => linkVisited$5,
1927
1584
  overlay: () => overlay$5,
1928
- productiveHeading01: () => _carbon_type.productiveHeading01,
1929
- productiveHeading02: () => _carbon_type.productiveHeading02,
1930
- productiveHeading03: () => _carbon_type.productiveHeading03,
1931
- productiveHeading04: () => _carbon_type.productiveHeading04,
1932
- productiveHeading05: () => _carbon_type.productiveHeading05,
1933
- productiveHeading06: () => _carbon_type.productiveHeading06,
1934
- productiveHeading07: () => _carbon_type.productiveHeading07,
1935
- quotation01: () => _carbon_type.quotation01,
1936
- quotation02: () => _carbon_type.quotation02,
1937
1585
  shadow: () => shadow$5,
1938
- size2XLarge: () => _carbon_layout.size2XLarge,
1939
- sizeLarge: () => _carbon_layout.sizeLarge,
1940
- sizeMedium: () => _carbon_layout.sizeMedium,
1941
- sizeSmall: () => _carbon_layout.sizeSmall,
1942
- sizeXLarge: () => _carbon_layout.sizeXLarge,
1943
- sizeXSmall: () => _carbon_layout.sizeXSmall,
1944
1586
  skeletonBackground: () => skeletonBackground$5,
1945
1587
  skeletonElement: () => skeletonElement$5,
1946
- spacing01: () => _carbon_layout.spacing01,
1947
- spacing02: () => _carbon_layout.spacing02,
1948
- spacing03: () => _carbon_layout.spacing03,
1949
- spacing04: () => _carbon_layout.spacing04,
1950
- spacing05: () => _carbon_layout.spacing05,
1951
- spacing06: () => _carbon_layout.spacing06,
1952
- spacing07: () => _carbon_layout.spacing07,
1953
- spacing08: () => _carbon_layout.spacing08,
1954
- spacing09: () => _carbon_layout.spacing09,
1955
- spacing10: () => _carbon_layout.spacing10,
1956
- spacing11: () => _carbon_layout.spacing11,
1957
- spacing12: () => _carbon_layout.spacing12,
1958
- spacing13: () => _carbon_layout.spacing13,
1959
1588
  supportCautionMajor: () => supportCautionMajor$1,
1960
1589
  supportCautionMinor: () => supportCautionMinor$1,
1961
1590
  supportCautionUndefined: () => supportCautionUndefined$1,
@@ -2067,240 +1696,295 @@ var g100_exports = /* @__PURE__ */ __exportAll({
2067
1696
  toggleOff: () => toggleOff$5
2068
1697
  });
2069
1698
  const colorScheme$1 = "dark";
2070
- const background$6 = _carbon_colors.gray100;
2071
- const backgroundInverse$5 = _carbon_colors.gray10;
2072
- const backgroundBrand$5 = _carbon_colors.blue60;
2073
- const backgroundActive$5 = adjustAlpha(_carbon_colors.gray50, .4);
2074
- const backgroundHover$5 = adjustAlpha(_carbon_colors.gray50, .16);
2075
- const backgroundInverseHover$5 = _carbon_colors.gray10Hover;
2076
- const backgroundSelected$5 = adjustAlpha(_carbon_colors.gray50, .24);
2077
- const backgroundSelectedHover$5 = adjustAlpha(_carbon_colors.gray50, .32);
2078
- const layer01$1 = _carbon_colors.gray90;
2079
- const layerActive01$1 = _carbon_colors.gray70;
2080
- const layerBackground01$1 = _carbon_colors.gray100;
2081
- const layerHover01$1 = _carbon_colors.gray90Hover;
2082
- const layerSelected01$1 = _carbon_colors.gray80;
2083
- const layerSelectedHover01$1 = _carbon_colors.gray80Hover;
2084
- const layer02$1 = _carbon_colors.gray80;
2085
- const layerActive02$1 = _carbon_colors.gray60;
2086
- const layerBackground02$1 = _carbon_colors.gray90;
2087
- const layerHover02$1 = _carbon_colors.gray80Hover;
2088
- const layerSelected02$1 = _carbon_colors.gray70;
2089
- const layerSelectedHover02$1 = _carbon_colors.gray70Hover;
2090
- const layer03$1 = _carbon_colors.gray70;
2091
- const layerActive03$1 = _carbon_colors.gray50;
2092
- const layerBackground03$1 = _carbon_colors.gray80;
2093
- const layerHover03$1 = _carbon_colors.gray70Hover;
2094
- const layerSelected03$1 = _carbon_colors.gray60;
2095
- const layerSelectedHover03$1 = _carbon_colors.gray60Hover;
2096
- const layerSelectedInverse$5 = _carbon_colors.gray10;
2097
- const layerSelectedDisabled$5 = _carbon_colors.gray40;
2098
- const layerAccent01$1 = _carbon_colors.gray80;
2099
- const layerAccentActive01$1 = _carbon_colors.gray60;
2100
- const layerAccentHover01$1 = _carbon_colors.gray80Hover;
2101
- const layerAccent02$1 = _carbon_colors.gray70;
2102
- const layerAccentActive02$1 = _carbon_colors.gray50;
2103
- const layerAccentHover02$1 = _carbon_colors.gray70Hover;
2104
- const layerAccent03$1 = _carbon_colors.gray60;
2105
- const layerAccentActive03$1 = _carbon_colors.gray80;
2106
- const layerAccentHover03$1 = _carbon_colors.gray60Hover;
2107
- const field01$5 = _carbon_colors.gray90;
2108
- const fieldHover01$1 = _carbon_colors.gray90Hover;
2109
- const field02$5 = _carbon_colors.gray80;
2110
- const fieldHover02$1 = _carbon_colors.gray80Hover;
2111
- const field03$1 = _carbon_colors.gray70;
2112
- const fieldHover03$1 = _carbon_colors.gray70Hover;
2113
- const borderSubtle00$1 = _carbon_colors.gray80;
2114
- const borderSubtle01$1 = _carbon_colors.gray70;
2115
- const borderSubtleSelected01$1 = _carbon_colors.gray60;
2116
- const borderSubtle02$1 = _carbon_colors.gray60;
2117
- const borderSubtleSelected02$1 = _carbon_colors.gray50;
2118
- const borderSubtle03$1 = _carbon_colors.gray60;
2119
- const borderSubtleSelected03$1 = _carbon_colors.gray50;
2120
- const borderStrong01$1 = _carbon_colors.gray60;
2121
- const borderStrong02$1 = _carbon_colors.gray50;
2122
- const borderStrong03$1 = _carbon_colors.gray40;
2123
- const borderTile01$1 = _carbon_colors.gray70;
2124
- const borderTile02$1 = _carbon_colors.gray60;
2125
- const borderTile03$1 = _carbon_colors.gray50;
2126
- const borderInverse$5 = _carbon_colors.gray10;
2127
- const borderInteractive$5 = _carbon_colors.blue50;
2128
- const borderDisabled$5 = adjustAlpha(_carbon_colors.gray50, .5);
2129
- const textPrimary$5 = _carbon_colors.gray10;
2130
- const textSecondary$5 = _carbon_colors.gray30;
2131
- const textPlaceholder$5 = adjustAlpha(textPrimary$5, .4);
2132
- const textHelper$5 = _carbon_colors.gray40;
2133
- const textError$5 = _carbon_colors.red40;
2134
- const textInverse$5 = _carbon_colors.gray100;
2135
- const textOnColor$5 = _carbon_colors.white;
2136
- const textOnColorDisabled$5 = adjustAlpha(textOnColor$5, .25);
2137
- const textDisabled$5 = adjustAlpha(textPrimary$5, .25);
2138
- const linkPrimary$5 = _carbon_colors.blue40;
2139
- const linkPrimaryHover$5 = _carbon_colors.blue30;
2140
- const linkSecondary$5 = _carbon_colors.blue30;
2141
- const linkInverse$5 = _carbon_colors.blue60;
2142
- const linkVisited$5 = _carbon_colors.purple40;
2143
- const linkInverseVisited$1 = _carbon_colors.purple60;
2144
- const linkInverseActive$1 = _carbon_colors.gray100;
2145
- const linkInverseHover$1 = _carbon_colors.blue70;
2146
- const iconPrimary$5 = _carbon_colors.gray10;
2147
- const iconSecondary$5 = _carbon_colors.gray30;
2148
- const iconInverse$5 = _carbon_colors.gray100;
2149
- const iconOnColor$5 = _carbon_colors.white;
2150
- const iconOnColorDisabled$5 = adjustAlpha(iconOnColor$5, .25);
2151
- const iconDisabled$5 = adjustAlpha(iconPrimary$5, .25);
2152
- const iconInteractive$1 = _carbon_colors.white;
2153
- const supportError$5 = _carbon_colors.red50;
2154
- const supportSuccess$5 = _carbon_colors.green40;
2155
- const supportWarning$5 = _carbon_colors.yellow30;
2156
- const supportInfo$5 = _carbon_colors.blue50;
2157
- const supportErrorInverse$5 = _carbon_colors.red60;
2158
- const supportSuccessInverse$5 = _carbon_colors.green50;
2159
- const supportWarningInverse$5 = _carbon_colors.yellow30;
2160
- const supportInfoInverse$5 = _carbon_colors.blue70;
2161
- const supportCautionMinor$1 = _carbon_colors.yellow30;
2162
- const supportCautionMajor$1 = _carbon_colors.orange40;
2163
- const supportCautionUndefined$1 = _carbon_colors.purple50;
2164
- const focus$6 = _carbon_colors.white;
2165
- const focusInset$5 = _carbon_colors.gray100;
2166
- const focusInverse$5 = _carbon_colors.blue60;
2167
- const skeletonBackground$5 = adjustLightness(background$6, 7);
2168
- const skeletonElement$5 = _carbon_colors.gray80;
2169
- const interactive$5 = _carbon_colors.blue50;
2170
- const highlight$5 = _carbon_colors.blue90;
2171
- const overlay$5 = (0, _carbon_colors.rgba)(_carbon_colors.black, .6);
2172
- const toggleOff$5 = _carbon_colors.gray60;
2173
- const shadow$5 = (0, _carbon_colors.rgba)(_carbon_colors.black, .8);
2174
- const syntaxComment$1 = _carbon_colors.green40;
2175
- const syntaxLineComment$1 = syntaxComment$1;
2176
- const syntaxBlockComment$1 = syntaxComment$1;
2177
- const syntaxDocComment$1 = syntaxComment$1;
2178
- const syntaxString$1 = textPrimary$5;
2179
- const syntaxDocString$1 = syntaxString$1;
2180
- const syntaxKeyword$1 = _carbon_colors.blue50;
2181
- const syntaxOperatorKeyword$1 = syntaxKeyword$1;
2182
- const syntaxControlKeyword$1 = _carbon_colors.purple40;
2183
- const syntaxDefinitionKeyword$1 = _carbon_colors.cyan40;
2184
- const syntaxModuleKeyword$1 = _carbon_colors.purple40;
2185
- const syntaxVariable$1 = _carbon_colors.blue30;
2186
- const syntaxName$1 = syntaxVariable$1;
2187
- const syntaxVariableName$1 = syntaxVariable$1;
2188
- const syntaxLabelName$1 = syntaxVariable$1;
2189
- const syntaxAttribute$1 = _carbon_colors.cyan40;
2190
- const syntaxAttributeName$1 = syntaxAttribute$1;
2191
- const syntaxPropertyName$1 = syntaxAttribute$1;
2192
- const syntaxTag$1 = _carbon_colors.teal30;
2193
- const syntaxTagName$1 = syntaxTag$1;
2194
- const syntaxType$1 = _carbon_colors.teal30;
2195
- const syntaxTypeName$1 = syntaxType$1;
2196
- const syntaxClassName$1 = syntaxType$1;
2197
- const syntaxNamespace$1 = syntaxType$1;
2198
- const syntaxMacroName$1 = textPrimary$5;
2199
- const syntaxAtom$1 = syntaxMacroName$1;
2200
- const syntaxLiteral$1 = syntaxAtom$1;
2201
- const syntaxBool$1 = syntaxAtom$1;
2202
- const syntaxNull$1 = syntaxAtom$1;
2203
- const syntaxSelf$1 = syntaxTag$1;
2204
- const syntaxNumber$1 = _carbon_colors.green30;
2205
- const syntaxInteger$1 = syntaxNumber$1;
2206
- const syntaxFloat$1 = syntaxNumber$1;
2207
- const syntaxUnit$1 = syntaxNumber$1;
2208
- const syntaxCharacter$1 = syntaxString$1;
2209
- const syntaxAttributeValue$1 = syntaxString$1;
2210
- const syntaxSpecialString$1 = _carbon_colors.purple40;
2211
- const syntaxRegexp$1 = _carbon_colors.purple40;
2212
- const syntaxEscape$1 = _carbon_colors.gray20;
2213
- const syntaxUrl$1 = syntaxEscape$1;
2214
- const syntaxColor$1 = syntaxMacroName$1;
2215
- const syntaxOperator$1 = _carbon_colors.gray20;
2216
- const syntaxDerefOperator$1 = syntaxOperator$1;
2217
- const syntaxArithmeticOperator$1 = syntaxOperator$1;
2218
- const syntaxLogicOperator$1 = syntaxOperator$1;
2219
- const syntaxBitwiseOperator$1 = syntaxOperator$1;
2220
- const syntaxCompareOperator$1 = syntaxOperator$1;
2221
- const syntaxUpdateOperator$1 = syntaxOperator$1;
2222
- const syntaxDefinitionOperator$1 = syntaxDefinitionKeyword$1;
2223
- const syntaxTypeOperator$1 = syntaxTag$1;
2224
- const syntaxControlOperator$1 = syntaxModuleKeyword$1;
2225
- const syntaxModifier$1 = syntaxKeyword$1;
2226
- const syntaxPunctuation$1 = _carbon_colors.gray20;
2227
- const syntaxSeparator$1 = syntaxPunctuation$1;
2228
- const syntaxBracket$1 = syntaxPunctuation$1;
2229
- const syntaxAngleBracket$1 = _carbon_colors.gray50;
2230
- const syntaxSquareBracket$1 = syntaxBracket$1;
2231
- const syntaxParen$1 = syntaxBracket$1;
2232
- const syntaxBrace$1 = syntaxBracket$1;
2233
- const syntaxContent$1 = textPrimary$5;
2234
- const syntaxList$1 = syntaxContent$1;
2235
- const syntaxEmphasis$1 = syntaxContent$1;
2236
- const syntaxStrong$1 = syntaxContent$1;
2237
- const syntaxMonospace$1 = syntaxContent$1;
2238
- const syntaxStrikethrough$1 = syntaxContent$1;
2239
- const syntaxHeading$1 = _carbon_colors.cyan40;
2240
- const syntaxHeading1$1 = syntaxHeading$1;
2241
- const syntaxHeading2$1 = syntaxHeading$1;
2242
- const syntaxHeading3$1 = syntaxHeading$1;
2243
- const syntaxHeading4$1 = syntaxHeading$1;
2244
- const syntaxHeading5$1 = syntaxHeading$1;
2245
- const syntaxHeading6$1 = syntaxHeading$1;
2246
- const syntaxContentSeparator$1 = syntaxPunctuation$1;
2247
- const syntaxQuote$1 = syntaxComment$1;
2248
- const syntaxLink$1 = _carbon_colors.blue50;
2249
- const syntaxInvalid$1 = _carbon_colors.red50;
2250
- const syntaxMeta$1 = _carbon_colors.green40;
2251
- const syntaxDocumentMeta$1 = syntaxMeta$1;
2252
- const syntaxAnnotation$1 = _carbon_colors.teal40;
2253
- const syntaxProcessingInstruction$1 = syntaxString$1;
2254
- const syntaxDefinition$1 = _carbon_colors.cyan40;
2255
- const syntaxConstant$1 = _carbon_colors.blue50;
2256
- const syntaxFunction$1 = _carbon_colors.yellow30;
2257
- const syntaxStandard$1 = _carbon_colors.blue50;
2258
- const syntaxLocal$1 = _carbon_colors.blue30;
2259
- const syntaxSpecial$1 = _carbon_colors.blue50;
2260
- const syntaxInserted$1 = _carbon_colors.green60;
2261
- const syntaxDeleted$1 = _carbon_colors.red70;
2262
- const aiInnerShadow$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
2263
- const aiAuraStartSm$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .16);
2264
- const aiAuraStart$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .1);
2265
- const aiAuraEnd$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, 0);
2266
- const aiBorderStrong$1 = _carbon_colors.blue40;
2267
- const aiBorderStart$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue30, .36);
2268
- const aiBorderEnd$1 = _carbon_colors.blue50;
2269
- const aiDropShadow$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, .28);
2270
- const aiAuraHoverBackground$1 = layerHover01$1;
2271
- const aiAuraHoverStart$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue50, .4);
2272
- const aiAuraHoverEnd$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, 0);
2273
- const aiPopoverBackground$1 = _carbon_colors.gray100;
2274
- const aiPopoverShadowOuter01$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, .12);
2275
- const aiPopoverShadowOuter02$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, .08);
2276
- const aiSkeletonBackground$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue40, .5);
2277
- const aiSkeletonElementBackground$1 = (0, _carbon_colors.rgba)(_carbon_colors.blue40, .3);
2278
- const aiOverlay$1 = (0, _carbon_colors.rgba)(_carbon_colors.black, .5);
2279
- const aiPopoverCaretCenter$1 = "#4870B5";
2280
- const aiPopoverCaretBottom$1 = _carbon_colors.blue50;
2281
- const aiPopoverCaretBottomBackgroundActions$1 = "#1E283A";
2282
- const aiPopoverCaretBottomBackground$1 = "#202D45";
2283
- const chatPromptBackground$1 = _carbon_colors.gray100;
2284
- const chatPromptBorderStart$1 = _carbon_colors.gray90;
2285
- const chatPromptBorderEnd$1 = (0, _carbon_colors.rgba)(_carbon_colors.gray90, 0);
2286
- const chatPromptText$1 = textPrimary$5;
2287
- const chatBubbleUser$1 = _carbon_colors.gray80;
2288
- const chatBubbleUserText$1 = textPrimary$5;
2289
- const chatBubbleAgent$1 = _carbon_colors.gray90;
2290
- const chatBubbleAgentText$1 = textPrimary$5;
2291
- const chatBubbleBorder$1 = _carbon_colors.gray70;
2292
- const chatAvatarBot$1 = _carbon_colors.gray50;
2293
- const chatAvatarAgent$1 = _carbon_colors.gray30;
2294
- const chatAvatarUser$1 = _carbon_colors.blue50;
2295
- const chatShellBackground$1 = _carbon_colors.gray90;
2296
- const chatHeaderBackground$1 = _carbon_colors.gray90;
2297
- const chatHeaderText$1 = textPrimary$5;
2298
- const chatButton$1 = linkPrimary$5;
2299
- const chatButtonHover$1 = backgroundHover$5;
2300
- const chatButtonTextHover$1 = linkPrimaryHover$5;
2301
- const chatButtonActive$1 = backgroundActive$5;
2302
- const chatButtonSelected$1 = backgroundSelected$5;
2303
- const chatButtonTextSelected$1 = textSecondary$5;
1699
+ const aiAuraEnd$1 = "rgba(0, 0, 0, 0)";
1700
+ const aiAuraHoverBackground$1 = "#333333";
1701
+ const aiAuraHoverEnd$1 = "rgba(0, 0, 0, 0)";
1702
+ const aiAuraHoverStart$1 = "rgba(69, 137, 255, 0.4)";
1703
+ const aiAuraStart$1 = "rgba(69, 137, 255, 0.1)";
1704
+ const aiAuraStartSm$1 = "rgba(69, 137, 255, 0.16)";
1705
+ const aiBorderEnd$1 = "#4589ff";
1706
+ const aiBorderStart$1 = "rgba(166, 200, 255, 0.36)";
1707
+ const aiBorderStrong$1 = "#78a9ff";
1708
+ const aiDropShadow$1 = "rgba(0, 0, 0, 0.28)";
1709
+ const aiInnerShadow$1 = "rgba(69, 137, 255, 0.16)";
1710
+ const aiOverlay$1 = "rgba(0, 0, 0, 0.5)";
1711
+ const aiPopoverBackground$1 = "#161616";
1712
+ const aiPopoverCaretBottom$1 = "#4589ff";
1713
+ const aiPopoverCaretBottomBackground$1 = "#202d45";
1714
+ const aiPopoverCaretBottomBackgroundActions$1 = "#1e283a";
1715
+ const aiPopoverCaretCenter$1 = "#4870b5";
1716
+ const aiPopoverShadowOuter01$1 = "rgba(0, 0, 0, 0.12)";
1717
+ const aiPopoverShadowOuter02$1 = "rgba(0, 0, 0, 0.08)";
1718
+ const aiSkeletonBackground$1 = "rgba(120, 169, 255, 0.5)";
1719
+ const aiSkeletonElementBackground$1 = "rgba(120, 169, 255, 0.3)";
1720
+ const background$6 = "#161616";
1721
+ const backgroundActive$5 = "rgba(141, 141, 141, 0.4)";
1722
+ const backgroundBrand$5 = "#0f62fe";
1723
+ const backgroundHover$5 = "rgba(141, 141, 141, 0.16)";
1724
+ const backgroundInverse$5 = "#f4f4f4";
1725
+ const backgroundInverseHover$5 = "#e8e8e8";
1726
+ const backgroundSelected$5 = "rgba(141, 141, 141, 0.24)";
1727
+ const backgroundSelectedHover$5 = "rgba(141, 141, 141, 0.32)";
1728
+ const borderDisabled$5 = "rgba(141, 141, 141, 0.5)";
1729
+ const borderInteractive$5 = "#4589ff";
1730
+ const borderInverse$5 = "#f4f4f4";
1731
+ const borderStrong01$1 = "#6f6f6f";
1732
+ const borderStrong02$1 = "#8d8d8d";
1733
+ const borderStrong03$1 = "#a8a8a8";
1734
+ const borderSubtle00$1 = "#393939";
1735
+ const borderSubtle01$1 = "#525252";
1736
+ const borderSubtle02$1 = "#6f6f6f";
1737
+ const borderSubtle03$1 = "#6f6f6f";
1738
+ const borderSubtleSelected01$1 = "#6f6f6f";
1739
+ const borderSubtleSelected02$1 = "#8d8d8d";
1740
+ const borderSubtleSelected03$1 = "#8d8d8d";
1741
+ const borderTile01$1 = "#525252";
1742
+ const borderTile02$1 = "#6f6f6f";
1743
+ const borderTile03$1 = "#8d8d8d";
1744
+ const chatAvatarAgent$1 = "#c6c6c6";
1745
+ const chatAvatarBot$1 = "#8d8d8d";
1746
+ const chatAvatarUser$1 = "#4589ff";
1747
+ const chatBubbleAgent$1 = "#262626";
1748
+ const chatBubbleAgentText$1 = "#f4f4f4";
1749
+ const chatBubbleBorder$1 = "#525252";
1750
+ const chatBubbleUser$1 = "#393939";
1751
+ const chatBubbleUserText$1 = "#f4f4f4";
1752
+ const chatButton$1 = "#78a9ff";
1753
+ const chatButtonActive$1 = "rgba(141, 141, 141, 0.4)";
1754
+ const chatButtonHover$1 = "rgba(141, 141, 141, 0.16)";
1755
+ const chatButtonSelected$1 = "rgba(141, 141, 141, 0.24)";
1756
+ const chatButtonTextHover$1 = "#a6c8ff";
1757
+ const chatButtonTextSelected$1 = "#c6c6c6";
1758
+ const chatHeaderBackground$1 = "#262626";
1759
+ const chatHeaderText$1 = "#f4f4f4";
1760
+ const chatPromptBackground$1 = "#161616";
1761
+ const chatPromptBorderEnd$1 = "rgba(38, 38, 38, 0)";
1762
+ const chatPromptBorderStart$1 = "#262626";
1763
+ const chatPromptText$1 = "#f4f4f4";
1764
+ const chatShellBackground$1 = "#262626";
1765
+ const field01$5 = "#262626";
1766
+ const field02$5 = "#393939";
1767
+ const field03$1 = "#525252";
1768
+ const fieldHover01$1 = "#333333";
1769
+ const fieldHover02$1 = "#474747";
1770
+ const fieldHover03$1 = "#636363";
1771
+ const focus$6 = "#ffffff";
1772
+ const focusInset$5 = "#161616";
1773
+ const focusInverse$5 = "#0f62fe";
1774
+ const highlight$5 = "#001d6c";
1775
+ const iconDisabled$5 = "rgba(244, 244, 244, 0.25)";
1776
+ const iconInteractive$1 = "#ffffff";
1777
+ const iconInverse$5 = "#161616";
1778
+ const iconOnColor$5 = "#ffffff";
1779
+ const iconOnColorDisabled$5 = "rgba(255, 255, 255, 0.25)";
1780
+ const iconPrimary$5 = "#f4f4f4";
1781
+ const iconSecondary$5 = "#c6c6c6";
1782
+ const interactive$5 = "#4589ff";
1783
+ const layer01$1 = "#262626";
1784
+ const layer02$1 = "#393939";
1785
+ const layer03$1 = "#525252";
1786
+ const layerAccent01$1 = "#393939";
1787
+ const layerAccent02$1 = "#525252";
1788
+ const layerAccent03$1 = "#6f6f6f";
1789
+ const layerAccentActive01$1 = "#6f6f6f";
1790
+ const layerAccentActive02$1 = "#8d8d8d";
1791
+ const layerAccentActive03$1 = "#393939";
1792
+ const layerAccentHover01$1 = "#474747";
1793
+ const layerAccentHover02$1 = "#636363";
1794
+ const layerAccentHover03$1 = "#5e5e5e";
1795
+ const layerActive01$1 = "#525252";
1796
+ const layerActive02$1 = "#6f6f6f";
1797
+ const layerActive03$1 = "#8d8d8d";
1798
+ const layerBackground01$1 = "#161616";
1799
+ const layerBackground02$1 = "#262626";
1800
+ const layerBackground03$1 = "#393939";
1801
+ const layerHover01$1 = "#333333";
1802
+ const layerHover02$1 = "#474747";
1803
+ const layerHover03$1 = "#636363";
1804
+ const layerSelected01$1 = "#393939";
1805
+ const layerSelected02$1 = "#525252";
1806
+ const layerSelected03$1 = "#6f6f6f";
1807
+ const layerSelectedDisabled$5 = "#a8a8a8";
1808
+ const layerSelectedHover01$1 = "#474747";
1809
+ const layerSelectedHover02$1 = "#636363";
1810
+ const layerSelectedHover03$1 = "#5e5e5e";
1811
+ const layerSelectedInverse$5 = "#f4f4f4";
1812
+ const linkInverse$5 = "#0f62fe";
1813
+ const linkInverseActive$1 = "#161616";
1814
+ const linkInverseHover$1 = "#0043ce";
1815
+ const linkInverseVisited$1 = "#8a3ffc";
1816
+ const linkPrimary$5 = "#78a9ff";
1817
+ const linkPrimaryHover$5 = "#a6c8ff";
1818
+ const linkSecondary$5 = "#a6c8ff";
1819
+ const linkVisited$5 = "#be95ff";
1820
+ const overlay$5 = "rgba(0, 0, 0, 0.6)";
1821
+ const shadow$5 = "rgba(0, 0, 0, 0.8)";
1822
+ const skeletonBackground$5 = "#292929";
1823
+ const skeletonElement$5 = "#393939";
1824
+ const supportCautionMajor$1 = "#ff832b";
1825
+ const supportCautionMinor$1 = "#f1c21b";
1826
+ const supportCautionUndefined$1 = "#a56eff";
1827
+ const supportError$5 = "#fa4d56";
1828
+ const supportErrorInverse$5 = "#da1e28";
1829
+ const supportInfo$5 = "#4589ff";
1830
+ const supportInfoInverse$5 = "#0043ce";
1831
+ const supportSuccess$5 = "#42be65";
1832
+ const supportSuccessInverse$5 = "#24a148";
1833
+ const supportWarning$5 = "#f1c21b";
1834
+ const supportWarningInverse$5 = "#f1c21b";
1835
+ const syntaxAngleBracket$1 = "#8d8d8d";
1836
+ const syntaxAnnotation$1 = "#08bdba";
1837
+ const syntaxArithmeticOperator$1 = "#e0e0e0";
1838
+ const syntaxAtom$1 = "#f4f4f4";
1839
+ const syntaxAttribute$1 = "#33b1ff";
1840
+ const syntaxAttributeName$1 = "#33b1ff";
1841
+ const syntaxAttributeValue$1 = "#f4f4f4";
1842
+ const syntaxBitwiseOperator$1 = "#e0e0e0";
1843
+ const syntaxBlockComment$1 = "#42be65";
1844
+ const syntaxBool$1 = "#f4f4f4";
1845
+ const syntaxBrace$1 = "#e0e0e0";
1846
+ const syntaxBracket$1 = "#e0e0e0";
1847
+ const syntaxCharacter$1 = "#f4f4f4";
1848
+ const syntaxClassName$1 = "#3ddbd9";
1849
+ const syntaxColor$1 = "#f4f4f4";
1850
+ const syntaxComment$1 = "#42be65";
1851
+ const syntaxCompareOperator$1 = "#e0e0e0";
1852
+ const syntaxConstant$1 = "#4589ff";
1853
+ const syntaxContent$1 = "#f4f4f4";
1854
+ const syntaxContentSeparator$1 = "#e0e0e0";
1855
+ const syntaxControlKeyword$1 = "#be95ff";
1856
+ const syntaxControlOperator$1 = "#be95ff";
1857
+ const syntaxDefinition$1 = "#33b1ff";
1858
+ const syntaxDefinitionKeyword$1 = "#33b1ff";
1859
+ const syntaxDefinitionOperator$1 = "#33b1ff";
1860
+ const syntaxDeleted$1 = "#a2191f";
1861
+ const syntaxDerefOperator$1 = "#e0e0e0";
1862
+ const syntaxDocComment$1 = "#42be65";
1863
+ const syntaxDocString$1 = "#f4f4f4";
1864
+ const syntaxDocumentMeta$1 = "#42be65";
1865
+ const syntaxEmphasis$1 = "#f4f4f4";
1866
+ const syntaxEscape$1 = "#e0e0e0";
1867
+ const syntaxFloat$1 = "#6fdc8c";
1868
+ const syntaxFunction$1 = "#f1c21b";
1869
+ const syntaxHeading$1 = "#33b1ff";
1870
+ const syntaxHeading1$1 = "#33b1ff";
1871
+ const syntaxHeading2$1 = "#33b1ff";
1872
+ const syntaxHeading3$1 = "#33b1ff";
1873
+ const syntaxHeading4$1 = "#33b1ff";
1874
+ const syntaxHeading5$1 = "#33b1ff";
1875
+ const syntaxHeading6$1 = "#33b1ff";
1876
+ const syntaxInserted$1 = "#198038";
1877
+ const syntaxInteger$1 = "#6fdc8c";
1878
+ const syntaxInvalid$1 = "#fa4d56";
1879
+ const syntaxKeyword$1 = "#4589ff";
1880
+ const syntaxLabelName$1 = "#a6c8ff";
1881
+ const syntaxLineComment$1 = "#42be65";
1882
+ const syntaxLink$1 = "#4589ff";
1883
+ const syntaxList$1 = "#f4f4f4";
1884
+ const syntaxLiteral$1 = "#f4f4f4";
1885
+ const syntaxLocal$1 = "#a6c8ff";
1886
+ const syntaxLogicOperator$1 = "#e0e0e0";
1887
+ const syntaxMacroName$1 = "#f4f4f4";
1888
+ const syntaxMeta$1 = "#42be65";
1889
+ const syntaxModifier$1 = "#4589ff";
1890
+ const syntaxModuleKeyword$1 = "#be95ff";
1891
+ const syntaxMonospace$1 = "#f4f4f4";
1892
+ const syntaxName$1 = "#a6c8ff";
1893
+ const syntaxNamespace$1 = "#3ddbd9";
1894
+ const syntaxNull$1 = "#f4f4f4";
1895
+ const syntaxNumber$1 = "#6fdc8c";
1896
+ const syntaxOperator$1 = "#e0e0e0";
1897
+ const syntaxOperatorKeyword$1 = "#4589ff";
1898
+ const syntaxParen$1 = "#e0e0e0";
1899
+ const syntaxProcessingInstruction$1 = "#f4f4f4";
1900
+ const syntaxPropertyName$1 = "#33b1ff";
1901
+ const syntaxPunctuation$1 = "#e0e0e0";
1902
+ const syntaxQuote$1 = "#42be65";
1903
+ const syntaxRegexp$1 = "#be95ff";
1904
+ const syntaxSelf$1 = "#3ddbd9";
1905
+ const syntaxSeparator$1 = "#e0e0e0";
1906
+ const syntaxSpecial$1 = "#4589ff";
1907
+ const syntaxSpecialString$1 = "#be95ff";
1908
+ const syntaxSquareBracket$1 = "#e0e0e0";
1909
+ const syntaxStandard$1 = "#4589ff";
1910
+ const syntaxStrikethrough$1 = "#f4f4f4";
1911
+ const syntaxString$1 = "#f4f4f4";
1912
+ const syntaxStrong$1 = "#f4f4f4";
1913
+ const syntaxTag$1 = "#3ddbd9";
1914
+ const syntaxTagName$1 = "#3ddbd9";
1915
+ const syntaxType$1 = "#3ddbd9";
1916
+ const syntaxTypeName$1 = "#3ddbd9";
1917
+ const syntaxTypeOperator$1 = "#3ddbd9";
1918
+ const syntaxUnit$1 = "#6fdc8c";
1919
+ const syntaxUpdateOperator$1 = "#e0e0e0";
1920
+ const syntaxUrl$1 = "#e0e0e0";
1921
+ const syntaxVariable$1 = "#a6c8ff";
1922
+ const syntaxVariableName$1 = "#a6c8ff";
1923
+ const textDisabled$5 = "rgba(244, 244, 244, 0.25)";
1924
+ const textError$5 = "#ff8389";
1925
+ const textHelper$5 = "#a8a8a8";
1926
+ const textInverse$5 = "#161616";
1927
+ const textOnColor$5 = "#ffffff";
1928
+ const textOnColorDisabled$5 = "rgba(255, 255, 255, 0.25)";
1929
+ const textPlaceholder$5 = "rgba(244, 244, 244, 0.4)";
1930
+ const textPrimary$5 = "#f4f4f4";
1931
+ const textSecondary$5 = "#c6c6c6";
1932
+ const toggleOff$5 = "#6f6f6f";
1933
+ //#endregion
1934
+ //#region src/tools.ts
1935
+ /**
1936
+ * Copyright IBM Corp. 2016, 2026
1937
+ *
1938
+ * This source code is licensed under the Apache-2.0 license found in the
1939
+ * LICENSE file in the root directory of this source tree.
1940
+ */
1941
+ /**
1942
+ * Adjust a given token's lightness by a specified percentage
1943
+ * Example: token = hsl(10, 10, 10);
1944
+ * adjustLightness(token, 5) === hsl(10, 10, 15);
1945
+ * adjustLightness(token, -5) === hsl(10, 10, 5);
1946
+ */
1947
+ const adjustLightness = (token, shift) => {
1948
+ const original = (0, color.default)(token).hsl().object();
1949
+ return (0, color.default)({
1950
+ ...original,
1951
+ l: original.l += shift
1952
+ }).round().hex().toLowerCase();
1953
+ };
1954
+ const numbers = [
1955
+ "0",
1956
+ "1",
1957
+ "2",
1958
+ "3",
1959
+ "4",
1960
+ "5",
1961
+ "6",
1962
+ "7",
1963
+ "8",
1964
+ "9"
1965
+ ];
1966
+ /**
1967
+ * Format a given token into the format expected in CSS/SCSS-based projects.
1968
+ */
1969
+ const formatTokenName = (token) => {
1970
+ let string = "";
1971
+ for (let i = 0; i < token.length; i++) {
1972
+ if (numbers.indexOf(token[i]) !== -1) {
1973
+ string += "-" + token.slice(i);
1974
+ break;
1975
+ }
1976
+ if (token[i] === token[i].toUpperCase()) {
1977
+ if (token[i - 1] && token[i - 1] === token[i - 1].toUpperCase()) {
1978
+ string += token[i].toLowerCase();
1979
+ continue;
1980
+ }
1981
+ string += "-" + token[i].toLowerCase();
1982
+ continue;
1983
+ }
1984
+ string += token[i];
1985
+ }
1986
+ return string;
1987
+ };
2304
1988
  //#endregion
2305
1989
  //#region src/v10/white.ts
2306
1990
  /**
@@ -4315,8 +3999,8 @@ const themes$1 = {
4315
3999
  g100: g100_exports$1
4316
4000
  };
4317
4001
  //#endregion
4318
- //#region src/component-tokens/button/tokens.ts
4319
- var tokens_exports$4 = /* @__PURE__ */ __exportAll({
4002
+ //#region js/generated/component-tokens/button.js
4003
+ var button_exports = /* @__PURE__ */ __exportAll({
4320
4004
  buttonDangerActive: () => buttonDangerActive,
4321
4005
  buttonDangerHover: () => buttonDangerHover,
4322
4006
  buttonDangerPrimary: () => buttonDangerPrimary,
@@ -4333,36 +4017,17 @@ var tokens_exports$4 = /* @__PURE__ */ __exportAll({
4333
4017
  buttonTertiaryActive: () => buttonTertiaryActive,
4334
4018
  buttonTertiaryHover: () => buttonTertiaryHover
4335
4019
  });
4336
- /**
4337
- * Copyright IBM Corp. 2022, 2026
4338
- *
4339
- * This source code is licensed under the Apache-2.0 license found in the
4340
- * LICENSE file in the root directory of this source tree.
4341
- */
4342
- const buttonSeparator = {
4343
- fallback: "#e0e0e0",
4344
- whiteTheme: "#e0e0e0",
4345
- g10: "#e0e0e0",
4346
- g90: "#161616",
4347
- g100: "#161616"
4348
- };
4349
- const buttonPrimary = {
4350
- whiteTheme: "#0f62fe",
4351
- g10: "#0f62fe",
4352
- g90: "#0f62fe",
4353
- g100: "#0f62fe"
4354
- };
4355
- const buttonSecondary = {
4356
- whiteTheme: "#393939",
4357
- g10: "#393939",
4358
- g90: "#6f6f6f",
4359
- g100: "#6f6f6f"
4020
+ const buttonDangerActive = {
4021
+ whiteTheme: "#750e13",
4022
+ g10: "#750e13",
4023
+ g90: "#750e13",
4024
+ g100: "#750e13"
4360
4025
  };
4361
- const buttonTertiary = {
4362
- whiteTheme: "#0f62fe",
4363
- g10: "#0f62fe",
4364
- g90: "#ffffff",
4365
- g100: "#ffffff"
4026
+ const buttonDangerHover = {
4027
+ whiteTheme: "#b81921",
4028
+ g10: "#b81921",
4029
+ g90: "#b81921",
4030
+ g100: "#b81921"
4366
4031
  };
4367
4032
  const buttonDangerPrimary = {
4368
4033
  whiteTheme: "#da1e28",
@@ -4376,11 +4041,17 @@ const buttonDangerSecondary = {
4376
4041
  g90: "#ff8389",
4377
4042
  g100: "#fa4d56"
4378
4043
  };
4379
- const buttonDangerActive = {
4380
- whiteTheme: "#750e13",
4381
- g10: "#750e13",
4382
- g90: "#750e13",
4383
- g100: "#750e13"
4044
+ const buttonDisabled = {
4045
+ whiteTheme: "#c6c6c6",
4046
+ g10: "#c6c6c6",
4047
+ g90: "rgba(141, 141, 141, 0.3)",
4048
+ g100: "rgba(141, 141, 141, 0.3)"
4049
+ };
4050
+ const buttonPrimary = {
4051
+ whiteTheme: "#0f62fe",
4052
+ g10: "#0f62fe",
4053
+ g90: "#0f62fe",
4054
+ g100: "#0f62fe"
4384
4055
  };
4385
4056
  const buttonPrimaryActive = {
4386
4057
  whiteTheme: "#002d9c",
@@ -4388,60 +4059,58 @@ const buttonPrimaryActive = {
4388
4059
  g90: "#002d9c",
4389
4060
  g100: "#002d9c"
4390
4061
  };
4391
- const buttonSecondaryActive = {
4392
- whiteTheme: "#6f6f6f",
4393
- g10: "#6f6f6f",
4394
- g90: "#393939",
4395
- g100: "#393939"
4396
- };
4397
- const buttonTertiaryActive = {
4398
- whiteTheme: "#002d9c",
4399
- g10: "#002d9c",
4400
- g90: "#c6c6c6",
4401
- g100: "#c6c6c6"
4402
- };
4403
- const buttonDangerHover = {
4404
- whiteTheme: "#b81921",
4405
- g10: "#b81921",
4406
- g90: "#b81921",
4407
- g100: "#b81921"
4408
- };
4409
4062
  const buttonPrimaryHover = {
4410
4063
  whiteTheme: "#0050e6",
4411
4064
  g10: "#0050e6",
4412
4065
  g90: "#0050e6",
4413
4066
  g100: "#0050e6"
4414
4067
  };
4068
+ const buttonSecondary = {
4069
+ whiteTheme: "#393939",
4070
+ g10: "#393939",
4071
+ g90: "#6f6f6f",
4072
+ g100: "#6f6f6f"
4073
+ };
4074
+ const buttonSecondaryActive = {
4075
+ whiteTheme: "#6f6f6f",
4076
+ g10: "#6f6f6f",
4077
+ g90: "#393939",
4078
+ g100: "#393939"
4079
+ };
4415
4080
  const buttonSecondaryHover = {
4416
4081
  whiteTheme: "#474747",
4417
4082
  g10: "#474747",
4418
4083
  g90: "#5e5e5e",
4419
4084
  g100: "#5e5e5e"
4420
4085
  };
4086
+ const buttonSeparator = {
4087
+ fallback: "#e0e0e0",
4088
+ whiteTheme: "#e0e0e0",
4089
+ g10: "#e0e0e0",
4090
+ g90: "#161616",
4091
+ g100: "#161616"
4092
+ };
4093
+ const buttonTertiary = {
4094
+ whiteTheme: "#0f62fe",
4095
+ g10: "#0f62fe",
4096
+ g90: "#ffffff",
4097
+ g100: "#ffffff"
4098
+ };
4099
+ const buttonTertiaryActive = {
4100
+ whiteTheme: "#002d9c",
4101
+ g10: "#002d9c",
4102
+ g90: "#c6c6c6",
4103
+ g100: "#c6c6c6"
4104
+ };
4421
4105
  const buttonTertiaryHover = {
4422
4106
  whiteTheme: "#0050e6",
4423
4107
  g10: "#0050e6",
4424
4108
  g90: "#f4f4f4",
4425
4109
  g100: "#f4f4f4"
4426
4110
  };
4427
- const buttonDisabled = {
4428
- whiteTheme: "#c6c6c6",
4429
- g10: "#c6c6c6",
4430
- g90: "rgb(141 141 141 / 30%)",
4431
- g100: "rgb(141 141 141 / 30%)"
4432
- };
4433
- //#endregion
4434
- //#region src/component-tokens/button/index.ts
4435
- var button_exports = /* @__PURE__ */ __exportAll({ buttonTokens: () => tokens_exports$4 });
4436
4111
  //#endregion
4437
- //#region src/component-tokens/tag/tokens.ts
4438
- /**
4439
- * Copyright IBM Corp. 2022, 2026
4440
- *
4441
- * This source code is licensed under the Apache-2.0 license found in the
4442
- * LICENSE file in the root directory of this source tree.
4443
- */
4444
- var tokens_exports$3 = /* @__PURE__ */ __exportAll({
4112
+ //#region js/generated/component-tokens/tag.js
4113
+ var tag_exports = /* @__PURE__ */ __exportAll({
4445
4114
  tagBackgroundBlue: () => tagBackgroundBlue,
4446
4115
  tagBackgroundCoolGray: () => tagBackgroundCoolGray,
4447
4116
  tagBackgroundCyan: () => tagBackgroundCyan,
@@ -4483,258 +4152,249 @@ var tokens_exports$3 = /* @__PURE__ */ __exportAll({
4483
4152
  tagHoverTeal: () => tagHoverTeal,
4484
4153
  tagHoverWarmGray: () => tagHoverWarmGray
4485
4154
  });
4486
- const tagBackgroundRed = {
4487
- whiteTheme: _carbon_colors.red20,
4488
- g10: _carbon_colors.red20,
4489
- g90: _carbon_colors.red70,
4490
- g100: _carbon_colors.red70
4155
+ const tagBackgroundBlue = {
4156
+ whiteTheme: "#d0e2ff",
4157
+ g10: "#d0e2ff",
4158
+ g90: "#0043ce",
4159
+ g100: "#0043ce"
4491
4160
  };
4492
- const tagColorRed = {
4493
- whiteTheme: _carbon_colors.red70,
4494
- g10: _carbon_colors.red70,
4495
- g90: _carbon_colors.red20,
4496
- g100: _carbon_colors.red20
4161
+ const tagBackgroundCoolGray = {
4162
+ whiteTheme: "#dde1e6",
4163
+ g10: "#dde1e6",
4164
+ g90: "#4d5358",
4165
+ g100: "#4d5358"
4497
4166
  };
4498
- const tagHoverRed = {
4499
- whiteTheme: _carbon_colors.red20Hover,
4500
- g10: _carbon_colors.red20Hover,
4501
- g90: _carbon_colors.red70Hover,
4502
- g100: _carbon_colors.red70Hover
4167
+ const tagBackgroundCyan = {
4168
+ whiteTheme: "#bae6ff",
4169
+ g10: "#bae6ff",
4170
+ g90: "#00539a",
4171
+ g100: "#00539a"
4503
4172
  };
4504
- const tagBackgroundMagenta = {
4505
- whiteTheme: _carbon_colors.magenta20,
4506
- g10: _carbon_colors.magenta20,
4507
- g90: _carbon_colors.magenta70,
4508
- g100: _carbon_colors.magenta70
4173
+ const tagBackgroundGray = {
4174
+ whiteTheme: "#e0e0e0",
4175
+ g10: "#e0e0e0",
4176
+ g90: "#525252",
4177
+ g100: "#525252"
4509
4178
  };
4510
- const tagColorMagenta = {
4511
- whiteTheme: _carbon_colors.magenta70,
4512
- g10: _carbon_colors.magenta70,
4513
- g90: _carbon_colors.magenta20,
4514
- g100: _carbon_colors.magenta20
4179
+ const tagBackgroundGreen = {
4180
+ whiteTheme: "#a7f0ba",
4181
+ g10: "#a7f0ba",
4182
+ g90: "#0e6027",
4183
+ g100: "#0e6027"
4515
4184
  };
4516
- const tagHoverMagenta = {
4517
- whiteTheme: _carbon_colors.magenta20Hover,
4518
- g10: _carbon_colors.magenta20Hover,
4519
- g90: _carbon_colors.magenta70Hover,
4520
- g100: _carbon_colors.magenta70Hover
4185
+ const tagBackgroundMagenta = {
4186
+ whiteTheme: "#ffd6e8",
4187
+ g10: "#ffd6e8",
4188
+ g90: "#9f1853",
4189
+ g100: "#9f1853"
4521
4190
  };
4522
4191
  const tagBackgroundPurple = {
4523
- whiteTheme: _carbon_colors.purple20,
4524
- g10: _carbon_colors.purple20,
4525
- g90: _carbon_colors.purple70,
4526
- g100: _carbon_colors.purple70
4192
+ whiteTheme: "#e8daff",
4193
+ g10: "#e8daff",
4194
+ g90: "#6929c4",
4195
+ g100: "#6929c4"
4527
4196
  };
4528
- const tagColorPurple = {
4529
- whiteTheme: _carbon_colors.purple70,
4530
- g10: _carbon_colors.purple70,
4531
- g90: _carbon_colors.purple20,
4532
- g100: _carbon_colors.purple20
4197
+ const tagBackgroundRed = {
4198
+ whiteTheme: "#ffd7d9",
4199
+ g10: "#ffd7d9",
4200
+ g90: "#a2191f",
4201
+ g100: "#a2191f"
4533
4202
  };
4534
- const tagHoverPurple = {
4535
- whiteTheme: _carbon_colors.purple20Hover,
4536
- g10: _carbon_colors.purple20Hover,
4537
- g90: _carbon_colors.purple70Hover,
4538
- g100: _carbon_colors.purple70Hover
4203
+ const tagBackgroundTeal = {
4204
+ whiteTheme: "#9ef0f0",
4205
+ g10: "#9ef0f0",
4206
+ g90: "#005d5d",
4207
+ g100: "#005d5d"
4539
4208
  };
4540
- const tagBackgroundBlue = {
4541
- whiteTheme: _carbon_colors.blue20,
4542
- g10: _carbon_colors.blue20,
4543
- g90: _carbon_colors.blue70,
4544
- g100: _carbon_colors.blue70
4209
+ const tagBackgroundWarmGray = {
4210
+ whiteTheme: "#e5e0df",
4211
+ g10: "#e5e0df",
4212
+ g90: "#565151",
4213
+ g100: "#565151"
4545
4214
  };
4546
- const tagColorBlue = {
4547
- whiteTheme: _carbon_colors.blue70,
4548
- g10: _carbon_colors.blue70,
4549
- g90: _carbon_colors.blue20,
4550
- g100: _carbon_colors.blue20
4215
+ const tagBorderBlue = {
4216
+ whiteTheme: "#78a9ff",
4217
+ g10: "#78a9ff",
4218
+ g90: "#4589ff",
4219
+ g100: "#4589ff"
4551
4220
  };
4552
- const tagHoverBlue = {
4553
- whiteTheme: _carbon_colors.blue20Hover,
4554
- g10: _carbon_colors.blue20Hover,
4555
- g90: _carbon_colors.blue70Hover,
4556
- g100: _carbon_colors.blue70Hover
4221
+ const tagBorderCoolGray = {
4222
+ whiteTheme: "#a2a9b0",
4223
+ g10: "#a2a9b0",
4224
+ g90: "#878d96",
4225
+ g100: "#878d96"
4557
4226
  };
4558
- const tagBackgroundCyan = {
4559
- whiteTheme: _carbon_colors.cyan20,
4560
- g10: _carbon_colors.cyan20,
4561
- g90: _carbon_colors.cyan70,
4562
- g100: _carbon_colors.cyan70
4227
+ const tagBorderCyan = {
4228
+ whiteTheme: "#33b1ff",
4229
+ g10: "#33b1ff",
4230
+ g90: "#1192e8",
4231
+ g100: "#1192e8"
4563
4232
  };
4564
- const tagColorCyan = {
4565
- whiteTheme: _carbon_colors.cyan70,
4566
- g10: _carbon_colors.cyan70,
4567
- g90: _carbon_colors.cyan20,
4568
- g100: _carbon_colors.cyan20
4233
+ const tagBorderGray = {
4234
+ whiteTheme: "#a8a8a8",
4235
+ g10: "#a8a8a8",
4236
+ g90: "#8d8d8d",
4237
+ g100: "#8d8d8d"
4569
4238
  };
4570
- const tagHoverCyan = {
4571
- whiteTheme: _carbon_colors.cyan20Hover,
4572
- g10: _carbon_colors.cyan20Hover,
4573
- g90: _carbon_colors.cyan70Hover,
4574
- g100: _carbon_colors.cyan70Hover
4239
+ const tagBorderGreen = {
4240
+ whiteTheme: "#42be65",
4241
+ g10: "#42be65",
4242
+ g90: "#24a148",
4243
+ g100: "#24a148"
4575
4244
  };
4576
- const tagBackgroundTeal = {
4577
- whiteTheme: _carbon_colors.teal20,
4578
- g10: _carbon_colors.teal20,
4579
- g90: _carbon_colors.teal70,
4580
- g100: _carbon_colors.teal70
4245
+ const tagBorderMagenta = {
4246
+ whiteTheme: "#ff7eb6",
4247
+ g10: "#ff7eb6",
4248
+ g90: "#ee5396",
4249
+ g100: "#ee5396"
4581
4250
  };
4582
- const tagColorTeal = {
4583
- whiteTheme: _carbon_colors.teal70,
4584
- g10: _carbon_colors.teal70,
4585
- g90: _carbon_colors.teal20,
4586
- g100: _carbon_colors.teal20
4251
+ const tagBorderPurple = {
4252
+ whiteTheme: "#be95ff",
4253
+ g10: "#be95ff",
4254
+ g90: "#a56eff",
4255
+ g100: "#a56eff"
4587
4256
  };
4588
- const tagHoverTeal = {
4589
- whiteTheme: _carbon_colors.teal20Hover,
4590
- g10: _carbon_colors.teal20Hover,
4591
- g90: _carbon_colors.teal70Hover,
4592
- g100: _carbon_colors.teal70Hover
4257
+ const tagBorderRed = {
4258
+ whiteTheme: "#ff8389",
4259
+ g10: "#ff8389",
4260
+ g90: "#fa4d56",
4261
+ g100: "#fa4d56"
4593
4262
  };
4594
- const tagBackgroundGreen = {
4595
- whiteTheme: _carbon_colors.green20,
4596
- g10: _carbon_colors.green20,
4597
- g90: _carbon_colors.green70,
4598
- g100: _carbon_colors.green70
4263
+ const tagBorderTeal = {
4264
+ whiteTheme: "#08bdba",
4265
+ g10: "#08bdba",
4266
+ g90: "#009d9a",
4267
+ g100: "#009d9a"
4599
4268
  };
4600
- const tagColorGreen = {
4601
- whiteTheme: _carbon_colors.green70,
4602
- g10: _carbon_colors.green70,
4603
- g90: _carbon_colors.green20,
4604
- g100: _carbon_colors.green20
4269
+ const tagBorderWarmGray = {
4270
+ whiteTheme: "#ada8a8",
4271
+ g10: "#ada8a8",
4272
+ g90: "#8f8b8b",
4273
+ g100: "#8f8b8b"
4605
4274
  };
4606
- const tagHoverGreen = {
4607
- whiteTheme: _carbon_colors.green20Hover,
4608
- g10: _carbon_colors.green20Hover,
4609
- g90: _carbon_colors.green70Hover,
4610
- g100: _carbon_colors.green70Hover
4275
+ const tagColorBlue = {
4276
+ whiteTheme: "#0043ce",
4277
+ g10: "#0043ce",
4278
+ g90: "#d0e2ff",
4279
+ g100: "#d0e2ff"
4611
4280
  };
4612
- const tagBackgroundGray = {
4613
- whiteTheme: _carbon_colors.gray20,
4614
- g10: _carbon_colors.gray20,
4615
- g90: _carbon_colors.gray70,
4616
- g100: _carbon_colors.gray70
4281
+ const tagColorCoolGray = {
4282
+ whiteTheme: "#121619",
4283
+ g10: "#121619",
4284
+ g90: "#f2f4f8",
4285
+ g100: "#f2f4f8"
4286
+ };
4287
+ const tagColorCyan = {
4288
+ whiteTheme: "#00539a",
4289
+ g10: "#00539a",
4290
+ g90: "#bae6ff",
4291
+ g100: "#bae6ff"
4617
4292
  };
4618
4293
  const tagColorGray = {
4619
- whiteTheme: _carbon_colors.gray100,
4620
- g10: _carbon_colors.gray100,
4621
- g90: _carbon_colors.gray10,
4622
- g100: _carbon_colors.gray10
4294
+ whiteTheme: "#161616",
4295
+ g10: "#161616",
4296
+ g90: "#f4f4f4",
4297
+ g100: "#f4f4f4"
4623
4298
  };
4624
- const tagHoverGray = {
4625
- whiteTheme: _carbon_colors.gray20Hover,
4626
- g10: _carbon_colors.gray20Hover,
4627
- g90: _carbon_colors.gray70Hover,
4628
- g100: _carbon_colors.gray70Hover
4299
+ const tagColorGreen = {
4300
+ whiteTheme: "#0e6027",
4301
+ g10: "#0e6027",
4302
+ g90: "#a7f0ba",
4303
+ g100: "#a7f0ba"
4629
4304
  };
4630
- const tagBackgroundCoolGray = {
4631
- whiteTheme: _carbon_colors.coolGray20,
4632
- g10: _carbon_colors.coolGray20,
4633
- g90: _carbon_colors.coolGray70,
4634
- g100: _carbon_colors.coolGray70
4305
+ const tagColorMagenta = {
4306
+ whiteTheme: "#9f1853",
4307
+ g10: "#9f1853",
4308
+ g90: "#ffd6e8",
4309
+ g100: "#ffd6e8"
4635
4310
  };
4636
- const tagColorCoolGray = {
4637
- whiteTheme: _carbon_colors.coolGray100,
4638
- g10: _carbon_colors.coolGray100,
4639
- g90: _carbon_colors.coolGray10,
4640
- g100: _carbon_colors.coolGray10
4311
+ const tagColorPurple = {
4312
+ whiteTheme: "#6929c4",
4313
+ g10: "#6929c4",
4314
+ g90: "#e8daff",
4315
+ g100: "#e8daff"
4641
4316
  };
4642
- const tagHoverCoolGray = {
4643
- whiteTheme: _carbon_colors.coolGray20Hover,
4644
- g10: _carbon_colors.coolGray20Hover,
4645
- g90: _carbon_colors.coolGray70Hover,
4646
- g100: _carbon_colors.coolGray70Hover
4317
+ const tagColorRed = {
4318
+ whiteTheme: "#a2191f",
4319
+ g10: "#a2191f",
4320
+ g90: "#ffd7d9",
4321
+ g100: "#ffd7d9"
4647
4322
  };
4648
- const tagBackgroundWarmGray = {
4649
- whiteTheme: _carbon_colors.warmGray20,
4650
- g10: _carbon_colors.warmGray20,
4651
- g90: _carbon_colors.warmGray70,
4652
- g100: _carbon_colors.warmGray70
4323
+ const tagColorTeal = {
4324
+ whiteTheme: "#005d5d",
4325
+ g10: "#005d5d",
4326
+ g90: "#9ef0f0",
4327
+ g100: "#9ef0f0"
4653
4328
  };
4654
4329
  const tagColorWarmGray = {
4655
- whiteTheme: _carbon_colors.warmGray100,
4656
- g10: _carbon_colors.warmGray100,
4657
- g90: _carbon_colors.warmGray10,
4658
- g100: _carbon_colors.warmGray10
4659
- };
4660
- const tagHoverWarmGray = {
4661
- whiteTheme: _carbon_colors.warmGray20Hover,
4662
- g10: _carbon_colors.warmGray20Hover,
4663
- g90: _carbon_colors.warmGray70Hover,
4664
- g100: _carbon_colors.warmGray70Hover
4330
+ whiteTheme: "#171414",
4331
+ g10: "#171414",
4332
+ g90: "#f7f3f2",
4333
+ g100: "#f7f3f2"
4665
4334
  };
4666
- const tagBorderRed = {
4667
- whiteTheme: _carbon_colors.red40,
4668
- g10: _carbon_colors.red40,
4669
- g90: _carbon_colors.red50,
4670
- g100: _carbon_colors.red50
4335
+ const tagHoverBlue = {
4336
+ whiteTheme: "#b8d3ff",
4337
+ g10: "#b8d3ff",
4338
+ g90: "#0053ff",
4339
+ g100: "#0053ff"
4671
4340
  };
4672
- const tagBorderBlue = {
4673
- whiteTheme: _carbon_colors.blue40,
4674
- g10: _carbon_colors.blue40,
4675
- g90: _carbon_colors.blue50,
4676
- g100: _carbon_colors.blue50
4341
+ const tagHoverCoolGray = {
4342
+ whiteTheme: "#cdd3da",
4343
+ g10: "#cdd3da",
4344
+ g90: "#5d646a",
4345
+ g100: "#5d646a"
4677
4346
  };
4678
- const tagBorderCyan = {
4679
- whiteTheme: _carbon_colors.cyan40,
4680
- g10: _carbon_colors.cyan40,
4681
- g90: _carbon_colors.cyan50,
4682
- g100: _carbon_colors.cyan50
4347
+ const tagHoverCyan = {
4348
+ whiteTheme: "#99daff",
4349
+ g10: "#99daff",
4350
+ g90: "#0066bd",
4351
+ g100: "#0066bd"
4683
4352
  };
4684
- const tagBorderTeal = {
4685
- whiteTheme: _carbon_colors.teal40,
4686
- g10: _carbon_colors.teal40,
4687
- g90: _carbon_colors.teal50,
4688
- g100: _carbon_colors.teal50
4353
+ const tagHoverGray = {
4354
+ whiteTheme: "#d1d1d1",
4355
+ g10: "#d1d1d1",
4356
+ g90: "#636363",
4357
+ g100: "#636363"
4689
4358
  };
4690
- const tagBorderGreen = {
4691
- whiteTheme: _carbon_colors.green40,
4692
- g10: _carbon_colors.green40,
4693
- g90: _carbon_colors.green50,
4694
- g100: _carbon_colors.green50
4359
+ const tagHoverGreen = {
4360
+ whiteTheme: "#74e792",
4361
+ g10: "#74e792",
4362
+ g90: "#11742f",
4363
+ g100: "#11742f"
4695
4364
  };
4696
- const tagBorderMagenta = {
4697
- whiteTheme: _carbon_colors.magenta40,
4698
- g10: _carbon_colors.magenta40,
4699
- g90: _carbon_colors.magenta50,
4700
- g100: _carbon_colors.magenta50
4365
+ const tagHoverMagenta = {
4366
+ whiteTheme: "#ffbdda",
4367
+ g10: "#ffbdda",
4368
+ g90: "#bf1d63",
4369
+ g100: "#bf1d63"
4701
4370
  };
4702
- const tagBorderPurple = {
4703
- whiteTheme: _carbon_colors.purple40,
4704
- g10: _carbon_colors.purple40,
4705
- g90: _carbon_colors.purple50,
4706
- g100: _carbon_colors.purple50
4371
+ const tagHoverPurple = {
4372
+ whiteTheme: "#dcc7ff",
4373
+ g10: "#dcc7ff",
4374
+ g90: "#7c3dd6",
4375
+ g100: "#7c3dd6"
4707
4376
  };
4708
- const tagBorderGray = {
4709
- whiteTheme: _carbon_colors.gray40,
4710
- g10: _carbon_colors.gray40,
4711
- g90: _carbon_colors.gray50,
4712
- g100: _carbon_colors.gray50
4377
+ const tagHoverRed = {
4378
+ whiteTheme: "#ffc2c5",
4379
+ g10: "#ffc2c5",
4380
+ g90: "#c21e25",
4381
+ g100: "#c21e25"
4713
4382
  };
4714
- const tagBorderCoolGray = {
4715
- whiteTheme: _carbon_colors.coolGray40,
4716
- g10: _carbon_colors.coolGray40,
4717
- g90: _carbon_colors.coolGray50,
4718
- g100: _carbon_colors.coolGray50
4383
+ const tagHoverTeal = {
4384
+ whiteTheme: "#57e5e5",
4385
+ g10: "#57e5e5",
4386
+ g90: "#007070",
4387
+ g100: "#007070"
4719
4388
  };
4720
- const tagBorderWarmGray = {
4721
- whiteTheme: _carbon_colors.warmGray40,
4722
- g10: _carbon_colors.warmGray40,
4723
- g90: _carbon_colors.warmGray50,
4724
- g100: _carbon_colors.warmGray50
4389
+ const tagHoverWarmGray = {
4390
+ whiteTheme: "#d8d0cf",
4391
+ g10: "#d8d0cf",
4392
+ g90: "#696363",
4393
+ g100: "#696363"
4725
4394
  };
4726
4395
  //#endregion
4727
- //#region src/component-tokens/tag/index.ts
4728
- var tag_exports = /* @__PURE__ */ __exportAll({ tagTokens: () => tokens_exports$3 });
4729
- //#endregion
4730
- //#region src/component-tokens/notification/tokens.ts
4731
- /**
4732
- * Copyright IBM Corp. 2022, 2026
4733
- *
4734
- * This source code is licensed under the Apache-2.0 license found in the
4735
- * LICENSE file in the root directory of this source tree.
4736
- */
4737
- var tokens_exports$2 = /* @__PURE__ */ __exportAll({
4396
+ //#region js/generated/component-tokens/notification.js
4397
+ var notification_exports = /* @__PURE__ */ __exportAll({
4738
4398
  notificationActionHover: () => notificationActionHover,
4739
4399
  notificationActionTertiaryInverse: () => notificationActionTertiaryInverse,
4740
4400
  notificationActionTertiaryInverseActive: () => notificationActionTertiaryInverseActive,
@@ -4746,76 +4406,67 @@ var tokens_exports$2 = /* @__PURE__ */ __exportAll({
4746
4406
  notificationBackgroundSuccess: () => notificationBackgroundSuccess,
4747
4407
  notificationBackgroundWarning: () => notificationBackgroundWarning
4748
4408
  });
4749
- const notificationBackgroundError = {
4750
- whiteTheme: _carbon_colors.red10,
4751
- g10: _carbon_colors.red10,
4752
- g90: _carbon_colors.gray80,
4753
- g100: _carbon_colors.gray90
4754
- };
4755
- const notificationBackgroundSuccess = {
4756
- whiteTheme: _carbon_colors.green10,
4757
- g10: _carbon_colors.green10,
4758
- g90: _carbon_colors.gray80,
4759
- g100: _carbon_colors.gray90
4760
- };
4761
- const notificationBackgroundInfo = {
4762
- whiteTheme: _carbon_colors.blue10,
4763
- g10: _carbon_colors.blue10,
4764
- g90: _carbon_colors.gray80,
4765
- g100: _carbon_colors.gray90
4766
- };
4767
- const notificationBackgroundWarning = {
4768
- whiteTheme: _carbon_colors.yellow10,
4769
- g10: _carbon_colors.yellow10,
4770
- g90: _carbon_colors.gray80,
4771
- g100: _carbon_colors.gray90
4772
- };
4773
4409
  const notificationActionHover = {
4774
- whiteTheme: _carbon_colors.white0,
4775
- g10: _carbon_colors.white0
4410
+ whiteTheme: "#ffffff",
4411
+ g10: "#ffffff"
4776
4412
  };
4777
4413
  const notificationActionTertiaryInverse = {
4778
- whiteTheme: buttonTertiary.g100,
4779
- g10: buttonTertiary.g90,
4780
- g90: buttonTertiary.g10,
4781
- g100: buttonTertiary.whiteTheme
4414
+ whiteTheme: "#ffffff",
4415
+ g10: "#ffffff",
4416
+ g90: "#0f62fe",
4417
+ g100: "#0f62fe"
4782
4418
  };
4783
4419
  const notificationActionTertiaryInverseActive = {
4784
- whiteTheme: buttonTertiaryActive.g100,
4785
- g10: buttonTertiaryActive.g90,
4786
- g90: buttonTertiaryActive.g10,
4787
- g100: buttonTertiaryActive.whiteTheme
4420
+ whiteTheme: "#c6c6c6",
4421
+ g10: "#c6c6c6",
4422
+ g90: "#002d9c",
4423
+ g100: "#002d9c"
4788
4424
  };
4789
4425
  const notificationActionTertiaryInverseHover = {
4790
- whiteTheme: buttonTertiaryHover.g100,
4791
- g10: buttonTertiaryHover.g90,
4792
- g90: buttonTertiaryHover.g10,
4793
- g100: buttonTertiaryHover.whiteTheme
4426
+ whiteTheme: "#f4f4f4",
4427
+ g10: "#f4f4f4",
4428
+ g90: "#0050e6",
4429
+ g100: "#0050e6"
4794
4430
  };
4795
4431
  const notificationActionTertiaryInverseText = {
4796
- whiteTheme: textInverse$5,
4797
- g10: textInverse$6,
4798
- g90: textInverse$7,
4799
- g100: textInverse
4432
+ whiteTheme: "#161616",
4433
+ g10: "#161616",
4434
+ g90: "#ffffff",
4435
+ g100: "#ffffff"
4800
4436
  };
4801
4437
  const notificationActionTertiaryInverseTextOnColorDisabled = {
4802
- whiteTheme: textOnColorDisabled$5,
4803
- g10: textOnColorDisabled$6,
4804
- g90: textOnColorDisabled$7,
4805
- g100: textOnColorDisabled
4438
+ whiteTheme: "rgba(255, 255, 255, 0.25)",
4439
+ g10: "rgba(255, 255, 255, 0.25)",
4440
+ g90: "#8d8d8d",
4441
+ g100: "#8d8d8d"
4442
+ };
4443
+ const notificationBackgroundError = {
4444
+ whiteTheme: "#fff1f1",
4445
+ g10: "#fff1f1",
4446
+ g90: "#393939",
4447
+ g100: "#262626"
4448
+ };
4449
+ const notificationBackgroundInfo = {
4450
+ whiteTheme: "#edf5ff",
4451
+ g10: "#edf5ff",
4452
+ g90: "#393939",
4453
+ g100: "#262626"
4454
+ };
4455
+ const notificationBackgroundSuccess = {
4456
+ whiteTheme: "#defbe6",
4457
+ g10: "#defbe6",
4458
+ g90: "#393939",
4459
+ g100: "#262626"
4460
+ };
4461
+ const notificationBackgroundWarning = {
4462
+ whiteTheme: "#fcf4d6",
4463
+ g10: "#fcf4d6",
4464
+ g90: "#393939",
4465
+ g100: "#262626"
4806
4466
  };
4807
4467
  //#endregion
4808
- //#region src/component-tokens/notification/index.ts
4809
- var notification_exports = /* @__PURE__ */ __exportAll({ notificationTokens: () => tokens_exports$2 });
4810
- //#endregion
4811
- //#region src/component-tokens/status/tokens.ts
4812
- /**
4813
- * Copyright IBM Corp. 2025, 2026
4814
- *
4815
- * This source code is licensed under the Apache-2.0 license found in the
4816
- * LICENSE file in the root directory of this source tree.
4817
- */
4818
- var tokens_exports$1 = /* @__PURE__ */ __exportAll({
4468
+ //#region js/generated/component-tokens/status.js
4469
+ var status_exports = /* @__PURE__ */ __exportAll({
4819
4470
  statusAccessibilityBackground: () => statusAccessibilityBackground,
4820
4471
  statusBlue: () => statusBlue,
4821
4472
  statusGray: () => statusGray,
@@ -4827,100 +4478,87 @@ var tokens_exports$1 = /* @__PURE__ */ __exportAll({
4827
4478
  statusYellow: () => statusYellow,
4828
4479
  statusYellowOutline: () => statusYellowOutline
4829
4480
  });
4830
- const statusRed = {
4831
- whiteTheme: _carbon_colors.red60,
4832
- g10: _carbon_colors.red60,
4833
- g90: _carbon_colors.red50,
4834
- g100: _carbon_colors.red50
4481
+ const statusAccessibilityBackground = {
4482
+ whiteTheme: "#ffffff",
4483
+ g10: "#ffffff",
4484
+ g90: "#161616",
4485
+ g100: "#161616"
4835
4486
  };
4836
- const statusOrange = {
4837
- whiteTheme: _carbon_colors.orange40,
4838
- g10: _carbon_colors.orange40,
4839
- g90: _carbon_colors.orange40,
4840
- g100: _carbon_colors.orange40
4487
+ const statusBlue = {
4488
+ whiteTheme: "#0043ce",
4489
+ g10: "#0043ce",
4490
+ g90: "#4589ff",
4491
+ g100: "#4589ff"
4841
4492
  };
4842
- const statusOrangeOutline = {
4843
- whiteTheme: _carbon_colors.orange60,
4844
- g10: _carbon_colors.orange60
4493
+ const statusGray = {
4494
+ whiteTheme: "#6f6f6f",
4495
+ g10: "#6f6f6f",
4496
+ g90: "#8d8d8d",
4497
+ g100: "#8d8d8d"
4845
4498
  };
4846
- const statusYellow = {
4847
- whiteTheme: _carbon_colors.yellow30,
4848
- g10: _carbon_colors.yellow30,
4849
- g90: _carbon_colors.yellow30,
4850
- g100: _carbon_colors.yellow30
4499
+ const statusGreen = {
4500
+ whiteTheme: "#24a148",
4501
+ g10: "#24a148",
4502
+ g90: "#42be65",
4503
+ g100: "#42be65"
4851
4504
  };
4852
- const statusYellowOutline = {
4853
- whiteTheme: _carbon_colors.yellow60,
4854
- g10: _carbon_colors.yellow60
4505
+ const statusOrange = {
4506
+ whiteTheme: "#ff832b",
4507
+ g10: "#ff832b",
4508
+ g90: "#ff832b",
4509
+ g100: "#ff832b"
4855
4510
  };
4856
- const statusPurple = {
4857
- whiteTheme: _carbon_colors.purple60,
4858
- g10: _carbon_colors.purple60,
4859
- g90: _carbon_colors.purple50,
4860
- g100: _carbon_colors.purple50
4511
+ const statusOrangeOutline = {
4512
+ whiteTheme: "#ba4e00",
4513
+ g10: "#ba4e00"
4861
4514
  };
4862
- const statusGreen = {
4863
- whiteTheme: _carbon_colors.green50,
4864
- g10: _carbon_colors.green50,
4865
- g90: _carbon_colors.green40,
4866
- g100: _carbon_colors.green40
4515
+ const statusPurple = {
4516
+ whiteTheme: "#8a3ffc",
4517
+ g10: "#8a3ffc",
4518
+ g90: "#a56eff",
4519
+ g100: "#a56eff"
4867
4520
  };
4868
- const statusBlue = {
4869
- whiteTheme: _carbon_colors.blue70,
4870
- g10: _carbon_colors.blue70,
4871
- g90: _carbon_colors.blue50,
4872
- g100: _carbon_colors.blue50
4521
+ const statusRed = {
4522
+ whiteTheme: "#da1e28",
4523
+ g10: "#da1e28",
4524
+ g90: "#fa4d56",
4525
+ g100: "#fa4d56"
4873
4526
  };
4874
- const statusGray = {
4875
- whiteTheme: _carbon_colors.gray60,
4876
- g10: _carbon_colors.gray60,
4877
- g90: _carbon_colors.gray50,
4878
- g100: _carbon_colors.gray50
4527
+ const statusYellow = {
4528
+ whiteTheme: "#f1c21b",
4529
+ g10: "#f1c21b",
4530
+ g90: "#f1c21b",
4531
+ g100: "#f1c21b"
4879
4532
  };
4880
- const statusAccessibilityBackground = {
4881
- whiteTheme: _carbon_colors.white,
4882
- g10: _carbon_colors.white,
4883
- g90: _carbon_colors.gray100,
4884
- g100: _carbon_colors.gray100
4533
+ const statusYellowOutline = {
4534
+ whiteTheme: "#8e6a00",
4535
+ g10: "#8e6a00"
4885
4536
  };
4886
4537
  //#endregion
4887
- //#region src/component-tokens/status/index.ts
4888
- var status_exports = /* @__PURE__ */ __exportAll({ statusTokens: () => tokens_exports$1 });
4889
- //#endregion
4890
- //#region src/component-tokens/content-switcher/tokens.ts
4891
- /**
4892
- * Copyright IBM Corp. 2025, 2026
4893
- *
4894
- * This source code is licensed under the Apache-2.0 license found in the
4895
- * LICENSE file in the root directory of this source tree.
4896
- */
4897
- var tokens_exports = /* @__PURE__ */ __exportAll({
4538
+ //#region js/generated/component-tokens/content-switcher.js
4539
+ var content_switcher_exports = /* @__PURE__ */ __exportAll({
4898
4540
  contentSwitcherBackground: () => contentSwitcherBackground,
4899
4541
  contentSwitcherBackgroundHover: () => contentSwitcherBackgroundHover,
4900
4542
  contentSwitcherSelected: () => contentSwitcherSelected
4901
4543
  });
4902
- const transparent = "rgba(0, 0, 0, 0)";
4903
- const contentSwitcherSelected = {
4904
- whiteTheme: _carbon_colors.white,
4905
- g10: _carbon_colors.white,
4906
- g90: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .24),
4907
- g100: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .24)
4908
- };
4909
4544
  const contentSwitcherBackground = {
4910
- whiteTheme: _carbon_colors.gray20,
4911
- g10: _carbon_colors.gray20,
4912
- g90: transparent,
4913
- g100: transparent
4545
+ whiteTheme: "#e0e0e0",
4546
+ g10: "#e0e0e0",
4547
+ g90: "rgba(0, 0, 0, 0)",
4548
+ g100: "rgba(0, 0, 0, 0)"
4914
4549
  };
4915
4550
  const contentSwitcherBackgroundHover = {
4916
- whiteTheme: _carbon_colors.gray20Hover,
4917
- g10: _carbon_colors.gray20Hover,
4918
- g90: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .12),
4919
- g100: (0, _carbon_colors.rgba)(_carbon_colors.gray50, .12)
4551
+ whiteTheme: "#d1d1d1",
4552
+ g10: "#d1d1d1",
4553
+ g90: "rgba(141, 141, 141, 0.12)",
4554
+ g100: "rgba(141, 141, 141, 0.12)"
4555
+ };
4556
+ const contentSwitcherSelected = {
4557
+ whiteTheme: "#ffffff",
4558
+ g10: "#ffffff",
4559
+ g90: "rgba(141, 141, 141, 0.24)",
4560
+ g100: "rgba(141, 141, 141, 0.24)"
4920
4561
  };
4921
- //#endregion
4922
- //#region src/component-tokens/content-switcher/index.ts
4923
- var content_switcher_exports = /* @__PURE__ */ __exportAll({ contentSwitcherTokens: () => tokens_exports });
4924
4562
  //#endregion
4925
4563
  //#region src/tokens/Token.ts
4926
4564
  var Token = class Token {