@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.
- package/es/index.js +1360 -1722
- package/js/generated/component-tokens/button.d.ts +98 -0
- package/{src/component-tokens/button/tokens.ts → js/generated/component-tokens/button.js} +65 -97
- package/js/generated/component-tokens/content-switcher.d.ts +25 -0
- package/js/generated/component-tokens/content-switcher.js +25 -0
- package/js/generated/component-tokens/notification.d.ts +65 -0
- package/js/generated/component-tokens/notification.js +65 -0
- package/js/generated/component-tokens/status.d.ts +63 -0
- package/js/generated/component-tokens/status.js +63 -0
- package/js/generated/component-tokens/tag.d.ts +247 -0
- package/js/generated/component-tokens/tag.js +247 -0
- package/js/generated/themes/g10.d.ts +242 -0
- package/js/generated/themes/g10.js +242 -0
- package/js/generated/themes/g100.d.ts +242 -0
- package/js/generated/themes/g100.js +242 -0
- package/js/generated/themes/g90.d.ts +242 -0
- package/js/generated/themes/g90.js +242 -0
- package/js/generated/themes/white.d.ts +242 -0
- package/js/generated/themes/white.js +242 -0
- package/lib/index.d.ts +12 -10
- package/lib/index.js +1360 -1722
- package/package.json +12 -9
- package/scss/generated/_button-tokens.scss +2 -2
- package/src/dtcg/README.md +210 -0
- package/src/dtcg/color-palette.json +3204 -0
- package/src/dtcg/components/button.json +193 -0
- package/src/dtcg/components/content-switcher.json +60 -0
- package/src/dtcg/components/notification.json +130 -0
- package/src/dtcg/components/status.json +122 -0
- package/src/dtcg/components/tag.json +486 -0
- package/src/dtcg/g10.json +1453 -0
- package/src/dtcg/g100.json +1478 -0
- package/src/dtcg/g90.json +1478 -0
- package/src/dtcg/white.json +1345 -0
- package/src/index.ts +96 -10
- package/test-dtcg.scss +28 -0
- package/umd/index.js +1363 -1725
- package/lib/component-tokens/button/index.d.ts +0 -7
- package/lib/component-tokens/button/tokens.d.ts +0 -98
- package/lib/component-tokens/content-switcher/index.d.ts +0 -7
- package/lib/component-tokens/content-switcher/tokens.d.ts +0 -24
- package/lib/component-tokens/notification/index.d.ts +0 -7
- package/lib/component-tokens/notification/tokens.d.ts +0 -64
- package/lib/component-tokens/status/index.d.ts +0 -7
- package/lib/component-tokens/status/tokens.d.ts +0 -62
- package/lib/component-tokens/tag/index.d.ts +0 -7
- package/lib/component-tokens/tag/tokens.d.ts +0 -246
- package/lib/g10.d.ts +0 -242
- package/lib/g100.d.ts +0 -242
- package/lib/g90.d.ts +0 -242
- package/lib/white.d.ts +0 -243
- package/src/component-tokens/button/index.ts +0 -8
- package/src/component-tokens/content-switcher/index.ts +0 -7
- package/src/component-tokens/content-switcher/tokens.ts +0 -29
- package/src/component-tokens/notification/index.ts +0 -8
- package/src/component-tokens/notification/tokens.ts +0 -105
- package/src/component-tokens/status/index.ts +0 -8
- package/src/component-tokens/status/tokens.ts +0 -90
- package/src/component-tokens/tag/index.ts +0 -8
- package/src/component-tokens/tag/tokens.ts +0 -353
- package/src/g10.ts +0 -452
- package/src/g100.ts +0 -453
- package/src/g90.ts +0 -455
- 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
|
|
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 =
|
|
418
|
-
const backgroundInverse =
|
|
419
|
-
const backgroundBrand =
|
|
420
|
-
const backgroundActive =
|
|
421
|
-
const backgroundHover =
|
|
422
|
-
const backgroundInverseHover =
|
|
423
|
-
const backgroundSelected =
|
|
424
|
-
const backgroundSelectedHover =
|
|
425
|
-
const layer01 =
|
|
426
|
-
const layerActive01 =
|
|
427
|
-
const layerBackground01 =
|
|
428
|
-
const layerHover01 =
|
|
429
|
-
const layerSelected01 =
|
|
430
|
-
const layerSelectedHover01 =
|
|
431
|
-
const layer02 =
|
|
432
|
-
const layerActive02 =
|
|
433
|
-
const layerBackground02 =
|
|
434
|
-
const layerHover02 =
|
|
435
|
-
const layerSelected02 =
|
|
436
|
-
const layerSelectedHover02 =
|
|
437
|
-
const layer03 =
|
|
438
|
-
const layerActive03 =
|
|
439
|
-
const layerBackground03 =
|
|
440
|
-
const layerHover03 =
|
|
441
|
-
const layerSelected03 =
|
|
442
|
-
const layerSelectedHover03 =
|
|
443
|
-
const layerSelectedInverse =
|
|
444
|
-
const layerSelectedDisabled =
|
|
445
|
-
const layerAccent01 =
|
|
446
|
-
const layerAccentActive01 =
|
|
447
|
-
const layerAccentHover01 =
|
|
448
|
-
const layerAccent02 =
|
|
449
|
-
const layerAccentActive02 =
|
|
450
|
-
const layerAccentHover02 =
|
|
451
|
-
const layerAccent03 =
|
|
452
|
-
const layerAccentActive03 =
|
|
453
|
-
const layerAccentHover03 =
|
|
454
|
-
const field01 =
|
|
455
|
-
const fieldHover01 =
|
|
456
|
-
const field02 =
|
|
457
|
-
const fieldHover02 =
|
|
458
|
-
const field03 =
|
|
459
|
-
const fieldHover03 =
|
|
460
|
-
const borderSubtle00 =
|
|
461
|
-
const borderSubtle01 =
|
|
462
|
-
const borderSubtleSelected01 =
|
|
463
|
-
const borderSubtle02 =
|
|
464
|
-
const borderSubtleSelected02 =
|
|
465
|
-
const borderSubtle03 =
|
|
466
|
-
const borderSubtleSelected03 =
|
|
467
|
-
const borderStrong01 =
|
|
468
|
-
const borderStrong02 =
|
|
469
|
-
const borderStrong03 =
|
|
470
|
-
const borderTile01 =
|
|
471
|
-
const borderTile02 =
|
|
472
|
-
const borderTile03 =
|
|
473
|
-
const borderInverse =
|
|
474
|
-
const borderInteractive =
|
|
475
|
-
const borderDisabled =
|
|
476
|
-
const textPrimary =
|
|
477
|
-
const textSecondary =
|
|
478
|
-
const textPlaceholder =
|
|
479
|
-
const textHelper =
|
|
480
|
-
const textError =
|
|
481
|
-
const textInverse =
|
|
482
|
-
const textOnColor =
|
|
483
|
-
const textOnColorDisabled =
|
|
484
|
-
const textDisabled =
|
|
485
|
-
const linkPrimary =
|
|
486
|
-
const linkPrimaryHover =
|
|
487
|
-
const linkSecondary =
|
|
488
|
-
const linkInverse =
|
|
489
|
-
const linkVisited =
|
|
490
|
-
const linkInverseVisited =
|
|
491
|
-
const linkInverseActive =
|
|
492
|
-
const linkInverseHover =
|
|
493
|
-
const iconPrimary =
|
|
494
|
-
const iconSecondary =
|
|
495
|
-
const iconInverse =
|
|
496
|
-
const iconOnColor =
|
|
497
|
-
const iconOnColorDisabled =
|
|
498
|
-
const iconDisabled =
|
|
499
|
-
const iconInteractive =
|
|
500
|
-
const supportError =
|
|
501
|
-
const supportSuccess =
|
|
502
|
-
const supportWarning =
|
|
503
|
-
const supportInfo =
|
|
504
|
-
const supportErrorInverse =
|
|
505
|
-
const supportSuccessInverse =
|
|
506
|
-
const supportWarningInverse =
|
|
507
|
-
const supportInfoInverse =
|
|
508
|
-
const supportCautionMinor =
|
|
509
|
-
const supportCautionMajor =
|
|
510
|
-
const supportCautionUndefined =
|
|
511
|
-
const focus =
|
|
512
|
-
const focusInset =
|
|
513
|
-
const focusInverse =
|
|
514
|
-
const
|
|
515
|
-
const
|
|
516
|
-
const
|
|
517
|
-
const
|
|
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
|
|
522
|
-
const
|
|
523
|
-
const
|
|
524
|
-
const
|
|
525
|
-
const
|
|
526
|
-
const
|
|
527
|
-
const
|
|
528
|
-
const
|
|
529
|
-
const
|
|
530
|
-
const
|
|
531
|
-
const
|
|
532
|
-
const
|
|
533
|
-
const
|
|
534
|
-
const
|
|
535
|
-
const
|
|
536
|
-
const
|
|
537
|
-
const
|
|
538
|
-
const
|
|
539
|
-
const
|
|
540
|
-
const
|
|
541
|
-
const
|
|
542
|
-
const
|
|
543
|
-
const
|
|
544
|
-
const
|
|
545
|
-
const
|
|
546
|
-
const
|
|
547
|
-
const
|
|
548
|
-
const
|
|
549
|
-
const
|
|
550
|
-
const
|
|
551
|
-
const
|
|
552
|
-
const
|
|
553
|
-
const
|
|
554
|
-
const
|
|
555
|
-
const
|
|
556
|
-
const
|
|
557
|
-
const
|
|
558
|
-
const
|
|
559
|
-
const
|
|
560
|
-
const
|
|
561
|
-
const
|
|
562
|
-
const
|
|
563
|
-
const
|
|
564
|
-
const
|
|
565
|
-
const
|
|
566
|
-
const
|
|
567
|
-
const
|
|
568
|
-
const
|
|
569
|
-
const
|
|
570
|
-
const
|
|
571
|
-
const
|
|
572
|
-
const
|
|
573
|
-
const
|
|
574
|
-
const
|
|
575
|
-
const
|
|
576
|
-
const
|
|
577
|
-
const
|
|
578
|
-
const
|
|
579
|
-
const
|
|
580
|
-
const
|
|
581
|
-
const
|
|
582
|
-
const
|
|
583
|
-
const
|
|
584
|
-
const
|
|
585
|
-
const
|
|
586
|
-
const
|
|
587
|
-
const
|
|
588
|
-
const
|
|
589
|
-
const
|
|
590
|
-
const
|
|
591
|
-
const
|
|
592
|
-
const
|
|
593
|
-
const
|
|
594
|
-
const
|
|
595
|
-
const
|
|
596
|
-
const
|
|
597
|
-
const
|
|
598
|
-
const
|
|
599
|
-
const
|
|
600
|
-
const
|
|
601
|
-
const
|
|
602
|
-
const
|
|
603
|
-
const
|
|
604
|
-
const
|
|
605
|
-
const
|
|
606
|
-
const
|
|
607
|
-
const
|
|
608
|
-
const
|
|
609
|
-
const
|
|
610
|
-
const
|
|
611
|
-
const
|
|
612
|
-
const
|
|
613
|
-
const
|
|
614
|
-
const
|
|
615
|
-
const
|
|
616
|
-
const
|
|
617
|
-
const
|
|
618
|
-
const
|
|
619
|
-
const
|
|
620
|
-
const
|
|
621
|
-
const
|
|
622
|
-
const
|
|
623
|
-
const
|
|
624
|
-
const
|
|
625
|
-
const
|
|
626
|
-
const
|
|
627
|
-
const
|
|
628
|
-
const
|
|
629
|
-
const
|
|
630
|
-
const
|
|
631
|
-
const
|
|
632
|
-
const
|
|
633
|
-
const
|
|
634
|
-
const
|
|
635
|
-
const
|
|
636
|
-
const
|
|
637
|
-
const
|
|
638
|
-
const
|
|
639
|
-
const
|
|
640
|
-
const
|
|
641
|
-
const
|
|
642
|
-
const
|
|
643
|
-
const
|
|
644
|
-
const
|
|
645
|
-
const
|
|
646
|
-
const
|
|
647
|
-
const
|
|
648
|
-
const
|
|
649
|
-
const
|
|
650
|
-
const
|
|
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
|
|
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
|
|
969
|
-
const
|
|
970
|
-
const
|
|
971
|
-
const
|
|
972
|
-
const
|
|
973
|
-
const
|
|
974
|
-
const
|
|
975
|
-
const
|
|
976
|
-
const
|
|
977
|
-
const
|
|
978
|
-
const
|
|
979
|
-
const
|
|
980
|
-
const
|
|
981
|
-
const
|
|
982
|
-
const
|
|
983
|
-
const
|
|
984
|
-
const
|
|
985
|
-
const
|
|
986
|
-
const
|
|
987
|
-
const
|
|
988
|
-
const
|
|
989
|
-
const
|
|
990
|
-
const
|
|
991
|
-
const
|
|
992
|
-
const
|
|
993
|
-
const
|
|
994
|
-
const
|
|
995
|
-
const
|
|
996
|
-
const
|
|
997
|
-
const
|
|
998
|
-
const
|
|
999
|
-
const
|
|
1000
|
-
const
|
|
1001
|
-
const
|
|
1002
|
-
const
|
|
1003
|
-
const
|
|
1004
|
-
const
|
|
1005
|
-
const
|
|
1006
|
-
const
|
|
1007
|
-
const
|
|
1008
|
-
const
|
|
1009
|
-
const
|
|
1010
|
-
const
|
|
1011
|
-
const
|
|
1012
|
-
const
|
|
1013
|
-
const
|
|
1014
|
-
const
|
|
1015
|
-
const
|
|
1016
|
-
const
|
|
1017
|
-
const
|
|
1018
|
-
const
|
|
1019
|
-
const
|
|
1020
|
-
const
|
|
1021
|
-
const
|
|
1022
|
-
const
|
|
1023
|
-
const
|
|
1024
|
-
const
|
|
1025
|
-
const
|
|
1026
|
-
const
|
|
1027
|
-
const
|
|
1028
|
-
const
|
|
1029
|
-
const
|
|
1030
|
-
const
|
|
1031
|
-
const
|
|
1032
|
-
const
|
|
1033
|
-
const
|
|
1034
|
-
const
|
|
1035
|
-
const
|
|
1036
|
-
const
|
|
1037
|
-
const
|
|
1038
|
-
const
|
|
1039
|
-
const
|
|
1040
|
-
const
|
|
1041
|
-
const
|
|
1042
|
-
const
|
|
1043
|
-
const
|
|
1044
|
-
const
|
|
1045
|
-
const
|
|
1046
|
-
const iconInverse$7 =
|
|
1047
|
-
const iconOnColor$7 =
|
|
1048
|
-
const iconOnColorDisabled$7 =
|
|
1049
|
-
const
|
|
1050
|
-
const
|
|
1051
|
-
const
|
|
1052
|
-
const
|
|
1053
|
-
const
|
|
1054
|
-
const
|
|
1055
|
-
const
|
|
1056
|
-
const
|
|
1057
|
-
const
|
|
1058
|
-
const
|
|
1059
|
-
const
|
|
1060
|
-
const
|
|
1061
|
-
const
|
|
1062
|
-
const
|
|
1063
|
-
const
|
|
1064
|
-
const
|
|
1065
|
-
const
|
|
1066
|
-
const
|
|
1067
|
-
const
|
|
1068
|
-
const
|
|
1069
|
-
const
|
|
1070
|
-
const
|
|
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
|
|
1073
|
-
const
|
|
1074
|
-
const
|
|
1075
|
-
const
|
|
1076
|
-
const
|
|
1077
|
-
const
|
|
1078
|
-
const
|
|
1079
|
-
const
|
|
1080
|
-
const
|
|
1081
|
-
const
|
|
1082
|
-
const
|
|
1083
|
-
const
|
|
1084
|
-
const
|
|
1085
|
-
const
|
|
1086
|
-
const
|
|
1087
|
-
const
|
|
1088
|
-
const
|
|
1089
|
-
const
|
|
1090
|
-
const
|
|
1091
|
-
const
|
|
1092
|
-
const
|
|
1093
|
-
const
|
|
1094
|
-
const
|
|
1095
|
-
const
|
|
1096
|
-
const
|
|
1097
|
-
const
|
|
1098
|
-
const
|
|
1099
|
-
const
|
|
1100
|
-
const
|
|
1101
|
-
const
|
|
1102
|
-
const
|
|
1103
|
-
const
|
|
1104
|
-
const
|
|
1105
|
-
const
|
|
1106
|
-
const
|
|
1107
|
-
const
|
|
1108
|
-
const
|
|
1109
|
-
const
|
|
1110
|
-
const
|
|
1111
|
-
const
|
|
1112
|
-
const
|
|
1113
|
-
const
|
|
1114
|
-
const
|
|
1115
|
-
const
|
|
1116
|
-
const
|
|
1117
|
-
const
|
|
1118
|
-
const
|
|
1119
|
-
const
|
|
1120
|
-
const
|
|
1121
|
-
const
|
|
1122
|
-
const
|
|
1123
|
-
const
|
|
1124
|
-
const
|
|
1125
|
-
const
|
|
1126
|
-
const
|
|
1127
|
-
const
|
|
1128
|
-
const
|
|
1129
|
-
const
|
|
1130
|
-
const
|
|
1131
|
-
const
|
|
1132
|
-
const
|
|
1133
|
-
const
|
|
1134
|
-
const
|
|
1135
|
-
const
|
|
1136
|
-
const
|
|
1137
|
-
const
|
|
1138
|
-
const
|
|
1139
|
-
const
|
|
1140
|
-
const
|
|
1141
|
-
const
|
|
1142
|
-
const
|
|
1143
|
-
const
|
|
1144
|
-
const
|
|
1145
|
-
const
|
|
1146
|
-
const
|
|
1147
|
-
const
|
|
1148
|
-
const
|
|
1149
|
-
const
|
|
1150
|
-
const
|
|
1151
|
-
const
|
|
1152
|
-
const
|
|
1153
|
-
const
|
|
1154
|
-
const
|
|
1155
|
-
const
|
|
1156
|
-
const
|
|
1157
|
-
const
|
|
1158
|
-
const
|
|
1159
|
-
const
|
|
1160
|
-
const
|
|
1161
|
-
const
|
|
1162
|
-
const
|
|
1163
|
-
const
|
|
1164
|
-
const
|
|
1165
|
-
const
|
|
1166
|
-
const
|
|
1167
|
-
const
|
|
1168
|
-
const
|
|
1169
|
-
const
|
|
1170
|
-
const
|
|
1171
|
-
const
|
|
1172
|
-
const
|
|
1173
|
-
const
|
|
1174
|
-
const
|
|
1175
|
-
const
|
|
1176
|
-
const
|
|
1177
|
-
const
|
|
1178
|
-
const
|
|
1179
|
-
const
|
|
1180
|
-
const
|
|
1181
|
-
const
|
|
1182
|
-
const
|
|
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
|
|
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
|
|
1520
|
-
const
|
|
1521
|
-
const
|
|
1522
|
-
const
|
|
1523
|
-
const
|
|
1524
|
-
const
|
|
1525
|
-
const
|
|
1526
|
-
const
|
|
1527
|
-
const
|
|
1528
|
-
const
|
|
1529
|
-
const
|
|
1530
|
-
const
|
|
1531
|
-
const
|
|
1532
|
-
const
|
|
1533
|
-
const
|
|
1534
|
-
const
|
|
1535
|
-
const
|
|
1536
|
-
const
|
|
1537
|
-
const
|
|
1538
|
-
const
|
|
1539
|
-
const
|
|
1540
|
-
const
|
|
1541
|
-
const
|
|
1542
|
-
const
|
|
1543
|
-
const
|
|
1544
|
-
const
|
|
1545
|
-
const
|
|
1546
|
-
const
|
|
1547
|
-
const
|
|
1548
|
-
const
|
|
1549
|
-
const
|
|
1550
|
-
const
|
|
1551
|
-
const
|
|
1552
|
-
const
|
|
1553
|
-
const
|
|
1554
|
-
const
|
|
1555
|
-
const
|
|
1556
|
-
const
|
|
1557
|
-
const
|
|
1558
|
-
const
|
|
1559
|
-
const
|
|
1560
|
-
const
|
|
1561
|
-
const
|
|
1562
|
-
const
|
|
1563
|
-
const
|
|
1564
|
-
const
|
|
1565
|
-
const
|
|
1566
|
-
const
|
|
1567
|
-
const
|
|
1568
|
-
const
|
|
1569
|
-
const
|
|
1570
|
-
const
|
|
1571
|
-
const
|
|
1572
|
-
const
|
|
1573
|
-
const
|
|
1574
|
-
const
|
|
1575
|
-
const
|
|
1576
|
-
const
|
|
1577
|
-
const
|
|
1578
|
-
const
|
|
1579
|
-
const
|
|
1580
|
-
const
|
|
1581
|
-
const
|
|
1582
|
-
const
|
|
1583
|
-
const
|
|
1584
|
-
const
|
|
1585
|
-
const
|
|
1586
|
-
const
|
|
1587
|
-
const
|
|
1588
|
-
const
|
|
1589
|
-
const
|
|
1590
|
-
const
|
|
1591
|
-
const
|
|
1592
|
-
const
|
|
1593
|
-
const
|
|
1594
|
-
const
|
|
1595
|
-
const
|
|
1596
|
-
const
|
|
1597
|
-
const iconInverse$6 =
|
|
1598
|
-
const iconOnColor$6 =
|
|
1599
|
-
const iconOnColorDisabled$6 =
|
|
1600
|
-
const
|
|
1601
|
-
const
|
|
1602
|
-
const
|
|
1603
|
-
const
|
|
1604
|
-
const
|
|
1605
|
-
const
|
|
1606
|
-
const
|
|
1607
|
-
const
|
|
1608
|
-
const
|
|
1609
|
-
const
|
|
1610
|
-
const
|
|
1611
|
-
const
|
|
1612
|
-
const
|
|
1613
|
-
const
|
|
1614
|
-
const
|
|
1615
|
-
const
|
|
1616
|
-
const
|
|
1617
|
-
const
|
|
1618
|
-
const
|
|
1619
|
-
const
|
|
1620
|
-
const
|
|
1621
|
-
const
|
|
1622
|
-
const
|
|
1623
|
-
const
|
|
1624
|
-
const
|
|
1625
|
-
const
|
|
1626
|
-
const
|
|
1627
|
-
const
|
|
1628
|
-
const
|
|
1629
|
-
const
|
|
1630
|
-
const
|
|
1631
|
-
const
|
|
1632
|
-
const
|
|
1633
|
-
const
|
|
1634
|
-
const
|
|
1635
|
-
const
|
|
1636
|
-
const
|
|
1637
|
-
const
|
|
1638
|
-
const
|
|
1639
|
-
const
|
|
1640
|
-
const
|
|
1641
|
-
const
|
|
1642
|
-
const
|
|
1643
|
-
const
|
|
1644
|
-
const
|
|
1645
|
-
const
|
|
1646
|
-
const
|
|
1647
|
-
const
|
|
1648
|
-
const
|
|
1649
|
-
const
|
|
1650
|
-
const
|
|
1651
|
-
const
|
|
1652
|
-
const
|
|
1653
|
-
const
|
|
1654
|
-
const
|
|
1655
|
-
const
|
|
1656
|
-
const
|
|
1657
|
-
const
|
|
1658
|
-
const
|
|
1659
|
-
const
|
|
1660
|
-
const
|
|
1661
|
-
const
|
|
1662
|
-
const
|
|
1663
|
-
const
|
|
1664
|
-
const
|
|
1665
|
-
const
|
|
1666
|
-
const
|
|
1667
|
-
const
|
|
1668
|
-
const
|
|
1669
|
-
const
|
|
1670
|
-
const
|
|
1671
|
-
const
|
|
1672
|
-
const
|
|
1673
|
-
const
|
|
1674
|
-
const
|
|
1675
|
-
const
|
|
1676
|
-
const
|
|
1677
|
-
const
|
|
1678
|
-
const
|
|
1679
|
-
const
|
|
1680
|
-
const
|
|
1681
|
-
const
|
|
1682
|
-
const
|
|
1683
|
-
const
|
|
1684
|
-
const
|
|
1685
|
-
const
|
|
1686
|
-
const
|
|
1687
|
-
const
|
|
1688
|
-
const
|
|
1689
|
-
const
|
|
1690
|
-
const
|
|
1691
|
-
const
|
|
1692
|
-
const
|
|
1693
|
-
const
|
|
1694
|
-
const
|
|
1695
|
-
const
|
|
1696
|
-
const
|
|
1697
|
-
const
|
|
1698
|
-
const syntaxInvalid$2 =
|
|
1699
|
-
const
|
|
1700
|
-
const
|
|
1701
|
-
const
|
|
1702
|
-
const
|
|
1703
|
-
const
|
|
1704
|
-
const
|
|
1705
|
-
const
|
|
1706
|
-
const
|
|
1707
|
-
const
|
|
1708
|
-
const
|
|
1709
|
-
const
|
|
1710
|
-
const
|
|
1711
|
-
const
|
|
1712
|
-
const
|
|
1713
|
-
const
|
|
1714
|
-
const
|
|
1715
|
-
const
|
|
1716
|
-
const
|
|
1717
|
-
const
|
|
1718
|
-
const
|
|
1719
|
-
const
|
|
1720
|
-
const
|
|
1721
|
-
const
|
|
1722
|
-
const
|
|
1723
|
-
const
|
|
1724
|
-
const
|
|
1725
|
-
const
|
|
1726
|
-
const
|
|
1727
|
-
const
|
|
1728
|
-
const
|
|
1729
|
-
const
|
|
1730
|
-
const
|
|
1731
|
-
const
|
|
1732
|
-
const
|
|
1733
|
-
const
|
|
1734
|
-
const
|
|
1735
|
-
const
|
|
1736
|
-
const
|
|
1737
|
-
const
|
|
1738
|
-
const
|
|
1739
|
-
const
|
|
1740
|
-
const
|
|
1741
|
-
const
|
|
1742
|
-
const
|
|
1743
|
-
const
|
|
1744
|
-
const
|
|
1745
|
-
const
|
|
1746
|
-
const
|
|
1747
|
-
const
|
|
1748
|
-
const
|
|
1749
|
-
const
|
|
1750
|
-
const
|
|
1751
|
-
const
|
|
1752
|
-
const
|
|
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
|
|
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
|
|
2071
|
-
const
|
|
2072
|
-
const
|
|
2073
|
-
const
|
|
2074
|
-
const
|
|
2075
|
-
const
|
|
2076
|
-
const
|
|
2077
|
-
const
|
|
2078
|
-
const
|
|
2079
|
-
const
|
|
2080
|
-
const
|
|
2081
|
-
const
|
|
2082
|
-
const
|
|
2083
|
-
const
|
|
2084
|
-
const
|
|
2085
|
-
const
|
|
2086
|
-
const
|
|
2087
|
-
const
|
|
2088
|
-
const
|
|
2089
|
-
const
|
|
2090
|
-
const
|
|
2091
|
-
const
|
|
2092
|
-
const
|
|
2093
|
-
const
|
|
2094
|
-
const
|
|
2095
|
-
const
|
|
2096
|
-
const
|
|
2097
|
-
const
|
|
2098
|
-
const
|
|
2099
|
-
const
|
|
2100
|
-
const
|
|
2101
|
-
const
|
|
2102
|
-
const
|
|
2103
|
-
const
|
|
2104
|
-
const
|
|
2105
|
-
const
|
|
2106
|
-
const
|
|
2107
|
-
const
|
|
2108
|
-
const
|
|
2109
|
-
const
|
|
2110
|
-
const
|
|
2111
|
-
const
|
|
2112
|
-
const
|
|
2113
|
-
const
|
|
2114
|
-
const
|
|
2115
|
-
const
|
|
2116
|
-
const
|
|
2117
|
-
const
|
|
2118
|
-
const
|
|
2119
|
-
const
|
|
2120
|
-
const
|
|
2121
|
-
const
|
|
2122
|
-
const
|
|
2123
|
-
const
|
|
2124
|
-
const
|
|
2125
|
-
const
|
|
2126
|
-
const
|
|
2127
|
-
const
|
|
2128
|
-
const
|
|
2129
|
-
const
|
|
2130
|
-
const
|
|
2131
|
-
const
|
|
2132
|
-
const
|
|
2133
|
-
const
|
|
2134
|
-
const
|
|
2135
|
-
const
|
|
2136
|
-
const
|
|
2137
|
-
const
|
|
2138
|
-
const
|
|
2139
|
-
const
|
|
2140
|
-
const
|
|
2141
|
-
const
|
|
2142
|
-
const
|
|
2143
|
-
const
|
|
2144
|
-
const
|
|
2145
|
-
const
|
|
2146
|
-
const
|
|
2147
|
-
const
|
|
2148
|
-
const iconInverse$5 =
|
|
2149
|
-
const iconOnColor$5 =
|
|
2150
|
-
const iconOnColorDisabled$5 =
|
|
2151
|
-
const
|
|
2152
|
-
const
|
|
2153
|
-
const
|
|
2154
|
-
const
|
|
2155
|
-
const
|
|
2156
|
-
const
|
|
2157
|
-
const
|
|
2158
|
-
const
|
|
2159
|
-
const
|
|
2160
|
-
const
|
|
2161
|
-
const
|
|
2162
|
-
const
|
|
2163
|
-
const
|
|
2164
|
-
const
|
|
2165
|
-
const
|
|
2166
|
-
const
|
|
2167
|
-
const
|
|
2168
|
-
const
|
|
2169
|
-
const
|
|
2170
|
-
const
|
|
2171
|
-
const
|
|
2172
|
-
const
|
|
2173
|
-
const
|
|
2174
|
-
const
|
|
2175
|
-
const
|
|
2176
|
-
const
|
|
2177
|
-
const
|
|
2178
|
-
const
|
|
2179
|
-
const
|
|
2180
|
-
const
|
|
2181
|
-
const
|
|
2182
|
-
const
|
|
2183
|
-
const
|
|
2184
|
-
const
|
|
2185
|
-
const
|
|
2186
|
-
const
|
|
2187
|
-
const
|
|
2188
|
-
const
|
|
2189
|
-
const
|
|
2190
|
-
const
|
|
2191
|
-
const
|
|
2192
|
-
const
|
|
2193
|
-
const
|
|
2194
|
-
const
|
|
2195
|
-
const
|
|
2196
|
-
const
|
|
2197
|
-
const
|
|
2198
|
-
const
|
|
2199
|
-
const
|
|
2200
|
-
const
|
|
2201
|
-
const
|
|
2202
|
-
const
|
|
2203
|
-
const
|
|
2204
|
-
const
|
|
2205
|
-
const
|
|
2206
|
-
const
|
|
2207
|
-
const
|
|
2208
|
-
const
|
|
2209
|
-
const
|
|
2210
|
-
const
|
|
2211
|
-
const
|
|
2212
|
-
const
|
|
2213
|
-
const
|
|
2214
|
-
const
|
|
2215
|
-
const
|
|
2216
|
-
const
|
|
2217
|
-
const
|
|
2218
|
-
const
|
|
2219
|
-
const
|
|
2220
|
-
const
|
|
2221
|
-
const
|
|
2222
|
-
const
|
|
2223
|
-
const
|
|
2224
|
-
const
|
|
2225
|
-
const
|
|
2226
|
-
const
|
|
2227
|
-
const
|
|
2228
|
-
const
|
|
2229
|
-
const
|
|
2230
|
-
const
|
|
2231
|
-
const
|
|
2232
|
-
const
|
|
2233
|
-
const
|
|
2234
|
-
const
|
|
2235
|
-
const
|
|
2236
|
-
const
|
|
2237
|
-
const
|
|
2238
|
-
const
|
|
2239
|
-
const
|
|
2240
|
-
const
|
|
2241
|
-
const
|
|
2242
|
-
const
|
|
2243
|
-
const
|
|
2244
|
-
const
|
|
2245
|
-
const
|
|
2246
|
-
const
|
|
2247
|
-
const
|
|
2248
|
-
const
|
|
2249
|
-
const syntaxInvalid$1 =
|
|
2250
|
-
const
|
|
2251
|
-
const
|
|
2252
|
-
const
|
|
2253
|
-
const
|
|
2254
|
-
const
|
|
2255
|
-
const
|
|
2256
|
-
const
|
|
2257
|
-
const
|
|
2258
|
-
const
|
|
2259
|
-
const
|
|
2260
|
-
const
|
|
2261
|
-
const
|
|
2262
|
-
const
|
|
2263
|
-
const
|
|
2264
|
-
const
|
|
2265
|
-
const
|
|
2266
|
-
const
|
|
2267
|
-
const
|
|
2268
|
-
const
|
|
2269
|
-
const
|
|
2270
|
-
const
|
|
2271
|
-
const
|
|
2272
|
-
const
|
|
2273
|
-
const
|
|
2274
|
-
const
|
|
2275
|
-
const
|
|
2276
|
-
const
|
|
2277
|
-
const
|
|
2278
|
-
const
|
|
2279
|
-
const
|
|
2280
|
-
const
|
|
2281
|
-
const
|
|
2282
|
-
const
|
|
2283
|
-
const
|
|
2284
|
-
const
|
|
2285
|
-
const
|
|
2286
|
-
const
|
|
2287
|
-
const
|
|
2288
|
-
const
|
|
2289
|
-
const
|
|
2290
|
-
const
|
|
2291
|
-
const
|
|
2292
|
-
const
|
|
2293
|
-
const
|
|
2294
|
-
const
|
|
2295
|
-
const
|
|
2296
|
-
const
|
|
2297
|
-
const
|
|
2298
|
-
const
|
|
2299
|
-
const
|
|
2300
|
-
const
|
|
2301
|
-
const
|
|
2302
|
-
const
|
|
2303
|
-
const
|
|
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
|
|
4319
|
-
var
|
|
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
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
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
|
|
4362
|
-
whiteTheme: "#
|
|
4363
|
-
g10: "#
|
|
4364
|
-
g90: "#
|
|
4365
|
-
g100: "#
|
|
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
|
|
4380
|
-
whiteTheme: "#
|
|
4381
|
-
g10: "#
|
|
4382
|
-
g90: "
|
|
4383
|
-
g100: "
|
|
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
|
|
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
|
|
4487
|
-
whiteTheme:
|
|
4488
|
-
g10:
|
|
4489
|
-
g90:
|
|
4490
|
-
g100:
|
|
4155
|
+
const tagBackgroundBlue = {
|
|
4156
|
+
whiteTheme: "#d0e2ff",
|
|
4157
|
+
g10: "#d0e2ff",
|
|
4158
|
+
g90: "#0043ce",
|
|
4159
|
+
g100: "#0043ce"
|
|
4491
4160
|
};
|
|
4492
|
-
const
|
|
4493
|
-
whiteTheme:
|
|
4494
|
-
g10:
|
|
4495
|
-
g90:
|
|
4496
|
-
g100:
|
|
4161
|
+
const tagBackgroundCoolGray = {
|
|
4162
|
+
whiteTheme: "#dde1e6",
|
|
4163
|
+
g10: "#dde1e6",
|
|
4164
|
+
g90: "#4d5358",
|
|
4165
|
+
g100: "#4d5358"
|
|
4497
4166
|
};
|
|
4498
|
-
const
|
|
4499
|
-
whiteTheme:
|
|
4500
|
-
g10:
|
|
4501
|
-
g90:
|
|
4502
|
-
g100:
|
|
4167
|
+
const tagBackgroundCyan = {
|
|
4168
|
+
whiteTheme: "#bae6ff",
|
|
4169
|
+
g10: "#bae6ff",
|
|
4170
|
+
g90: "#00539a",
|
|
4171
|
+
g100: "#00539a"
|
|
4503
4172
|
};
|
|
4504
|
-
const
|
|
4505
|
-
whiteTheme:
|
|
4506
|
-
g10:
|
|
4507
|
-
g90:
|
|
4508
|
-
g100:
|
|
4173
|
+
const tagBackgroundGray = {
|
|
4174
|
+
whiteTheme: "#e0e0e0",
|
|
4175
|
+
g10: "#e0e0e0",
|
|
4176
|
+
g90: "#525252",
|
|
4177
|
+
g100: "#525252"
|
|
4509
4178
|
};
|
|
4510
|
-
const
|
|
4511
|
-
whiteTheme:
|
|
4512
|
-
g10:
|
|
4513
|
-
g90:
|
|
4514
|
-
g100:
|
|
4179
|
+
const tagBackgroundGreen = {
|
|
4180
|
+
whiteTheme: "#a7f0ba",
|
|
4181
|
+
g10: "#a7f0ba",
|
|
4182
|
+
g90: "#0e6027",
|
|
4183
|
+
g100: "#0e6027"
|
|
4515
4184
|
};
|
|
4516
|
-
const
|
|
4517
|
-
whiteTheme:
|
|
4518
|
-
g10:
|
|
4519
|
-
g90:
|
|
4520
|
-
g100:
|
|
4185
|
+
const tagBackgroundMagenta = {
|
|
4186
|
+
whiteTheme: "#ffd6e8",
|
|
4187
|
+
g10: "#ffd6e8",
|
|
4188
|
+
g90: "#9f1853",
|
|
4189
|
+
g100: "#9f1853"
|
|
4521
4190
|
};
|
|
4522
4191
|
const tagBackgroundPurple = {
|
|
4523
|
-
whiteTheme:
|
|
4524
|
-
g10:
|
|
4525
|
-
g90:
|
|
4526
|
-
g100:
|
|
4192
|
+
whiteTheme: "#e8daff",
|
|
4193
|
+
g10: "#e8daff",
|
|
4194
|
+
g90: "#6929c4",
|
|
4195
|
+
g100: "#6929c4"
|
|
4527
4196
|
};
|
|
4528
|
-
const
|
|
4529
|
-
whiteTheme:
|
|
4530
|
-
g10:
|
|
4531
|
-
g90:
|
|
4532
|
-
g100:
|
|
4197
|
+
const tagBackgroundRed = {
|
|
4198
|
+
whiteTheme: "#ffd7d9",
|
|
4199
|
+
g10: "#ffd7d9",
|
|
4200
|
+
g90: "#a2191f",
|
|
4201
|
+
g100: "#a2191f"
|
|
4533
4202
|
};
|
|
4534
|
-
const
|
|
4535
|
-
whiteTheme:
|
|
4536
|
-
g10:
|
|
4537
|
-
g90:
|
|
4538
|
-
g100:
|
|
4203
|
+
const tagBackgroundTeal = {
|
|
4204
|
+
whiteTheme: "#9ef0f0",
|
|
4205
|
+
g10: "#9ef0f0",
|
|
4206
|
+
g90: "#005d5d",
|
|
4207
|
+
g100: "#005d5d"
|
|
4539
4208
|
};
|
|
4540
|
-
const
|
|
4541
|
-
whiteTheme:
|
|
4542
|
-
g10:
|
|
4543
|
-
g90:
|
|
4544
|
-
g100:
|
|
4209
|
+
const tagBackgroundWarmGray = {
|
|
4210
|
+
whiteTheme: "#e5e0df",
|
|
4211
|
+
g10: "#e5e0df",
|
|
4212
|
+
g90: "#565151",
|
|
4213
|
+
g100: "#565151"
|
|
4545
4214
|
};
|
|
4546
|
-
const
|
|
4547
|
-
whiteTheme:
|
|
4548
|
-
g10:
|
|
4549
|
-
g90:
|
|
4550
|
-
g100:
|
|
4215
|
+
const tagBorderBlue = {
|
|
4216
|
+
whiteTheme: "#78a9ff",
|
|
4217
|
+
g10: "#78a9ff",
|
|
4218
|
+
g90: "#4589ff",
|
|
4219
|
+
g100: "#4589ff"
|
|
4551
4220
|
};
|
|
4552
|
-
const
|
|
4553
|
-
whiteTheme:
|
|
4554
|
-
g10:
|
|
4555
|
-
g90:
|
|
4556
|
-
g100:
|
|
4221
|
+
const tagBorderCoolGray = {
|
|
4222
|
+
whiteTheme: "#a2a9b0",
|
|
4223
|
+
g10: "#a2a9b0",
|
|
4224
|
+
g90: "#878d96",
|
|
4225
|
+
g100: "#878d96"
|
|
4557
4226
|
};
|
|
4558
|
-
const
|
|
4559
|
-
whiteTheme:
|
|
4560
|
-
g10:
|
|
4561
|
-
g90:
|
|
4562
|
-
g100:
|
|
4227
|
+
const tagBorderCyan = {
|
|
4228
|
+
whiteTheme: "#33b1ff",
|
|
4229
|
+
g10: "#33b1ff",
|
|
4230
|
+
g90: "#1192e8",
|
|
4231
|
+
g100: "#1192e8"
|
|
4563
4232
|
};
|
|
4564
|
-
const
|
|
4565
|
-
whiteTheme:
|
|
4566
|
-
g10:
|
|
4567
|
-
g90:
|
|
4568
|
-
g100:
|
|
4233
|
+
const tagBorderGray = {
|
|
4234
|
+
whiteTheme: "#a8a8a8",
|
|
4235
|
+
g10: "#a8a8a8",
|
|
4236
|
+
g90: "#8d8d8d",
|
|
4237
|
+
g100: "#8d8d8d"
|
|
4569
4238
|
};
|
|
4570
|
-
const
|
|
4571
|
-
whiteTheme:
|
|
4572
|
-
g10:
|
|
4573
|
-
g90:
|
|
4574
|
-
g100:
|
|
4239
|
+
const tagBorderGreen = {
|
|
4240
|
+
whiteTheme: "#42be65",
|
|
4241
|
+
g10: "#42be65",
|
|
4242
|
+
g90: "#24a148",
|
|
4243
|
+
g100: "#24a148"
|
|
4575
4244
|
};
|
|
4576
|
-
const
|
|
4577
|
-
whiteTheme:
|
|
4578
|
-
g10:
|
|
4579
|
-
g90:
|
|
4580
|
-
g100:
|
|
4245
|
+
const tagBorderMagenta = {
|
|
4246
|
+
whiteTheme: "#ff7eb6",
|
|
4247
|
+
g10: "#ff7eb6",
|
|
4248
|
+
g90: "#ee5396",
|
|
4249
|
+
g100: "#ee5396"
|
|
4581
4250
|
};
|
|
4582
|
-
const
|
|
4583
|
-
whiteTheme:
|
|
4584
|
-
g10:
|
|
4585
|
-
g90:
|
|
4586
|
-
g100:
|
|
4251
|
+
const tagBorderPurple = {
|
|
4252
|
+
whiteTheme: "#be95ff",
|
|
4253
|
+
g10: "#be95ff",
|
|
4254
|
+
g90: "#a56eff",
|
|
4255
|
+
g100: "#a56eff"
|
|
4587
4256
|
};
|
|
4588
|
-
const
|
|
4589
|
-
whiteTheme:
|
|
4590
|
-
g10:
|
|
4591
|
-
g90:
|
|
4592
|
-
g100:
|
|
4257
|
+
const tagBorderRed = {
|
|
4258
|
+
whiteTheme: "#ff8389",
|
|
4259
|
+
g10: "#ff8389",
|
|
4260
|
+
g90: "#fa4d56",
|
|
4261
|
+
g100: "#fa4d56"
|
|
4593
4262
|
};
|
|
4594
|
-
const
|
|
4595
|
-
whiteTheme:
|
|
4596
|
-
g10:
|
|
4597
|
-
g90:
|
|
4598
|
-
g100:
|
|
4263
|
+
const tagBorderTeal = {
|
|
4264
|
+
whiteTheme: "#08bdba",
|
|
4265
|
+
g10: "#08bdba",
|
|
4266
|
+
g90: "#009d9a",
|
|
4267
|
+
g100: "#009d9a"
|
|
4599
4268
|
};
|
|
4600
|
-
const
|
|
4601
|
-
whiteTheme:
|
|
4602
|
-
g10:
|
|
4603
|
-
g90:
|
|
4604
|
-
g100:
|
|
4269
|
+
const tagBorderWarmGray = {
|
|
4270
|
+
whiteTheme: "#ada8a8",
|
|
4271
|
+
g10: "#ada8a8",
|
|
4272
|
+
g90: "#8f8b8b",
|
|
4273
|
+
g100: "#8f8b8b"
|
|
4605
4274
|
};
|
|
4606
|
-
const
|
|
4607
|
-
whiteTheme:
|
|
4608
|
-
g10:
|
|
4609
|
-
g90:
|
|
4610
|
-
g100:
|
|
4275
|
+
const tagColorBlue = {
|
|
4276
|
+
whiteTheme: "#0043ce",
|
|
4277
|
+
g10: "#0043ce",
|
|
4278
|
+
g90: "#d0e2ff",
|
|
4279
|
+
g100: "#d0e2ff"
|
|
4611
4280
|
};
|
|
4612
|
-
const
|
|
4613
|
-
whiteTheme:
|
|
4614
|
-
g10:
|
|
4615
|
-
g90:
|
|
4616
|
-
g100:
|
|
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:
|
|
4620
|
-
g10:
|
|
4621
|
-
g90:
|
|
4622
|
-
g100:
|
|
4294
|
+
whiteTheme: "#161616",
|
|
4295
|
+
g10: "#161616",
|
|
4296
|
+
g90: "#f4f4f4",
|
|
4297
|
+
g100: "#f4f4f4"
|
|
4623
4298
|
};
|
|
4624
|
-
const
|
|
4625
|
-
whiteTheme:
|
|
4626
|
-
g10:
|
|
4627
|
-
g90:
|
|
4628
|
-
g100:
|
|
4299
|
+
const tagColorGreen = {
|
|
4300
|
+
whiteTheme: "#0e6027",
|
|
4301
|
+
g10: "#0e6027",
|
|
4302
|
+
g90: "#a7f0ba",
|
|
4303
|
+
g100: "#a7f0ba"
|
|
4629
4304
|
};
|
|
4630
|
-
const
|
|
4631
|
-
whiteTheme:
|
|
4632
|
-
g10:
|
|
4633
|
-
g90:
|
|
4634
|
-
g100:
|
|
4305
|
+
const tagColorMagenta = {
|
|
4306
|
+
whiteTheme: "#9f1853",
|
|
4307
|
+
g10: "#9f1853",
|
|
4308
|
+
g90: "#ffd6e8",
|
|
4309
|
+
g100: "#ffd6e8"
|
|
4635
4310
|
};
|
|
4636
|
-
const
|
|
4637
|
-
whiteTheme:
|
|
4638
|
-
g10:
|
|
4639
|
-
g90:
|
|
4640
|
-
g100:
|
|
4311
|
+
const tagColorPurple = {
|
|
4312
|
+
whiteTheme: "#6929c4",
|
|
4313
|
+
g10: "#6929c4",
|
|
4314
|
+
g90: "#e8daff",
|
|
4315
|
+
g100: "#e8daff"
|
|
4641
4316
|
};
|
|
4642
|
-
const
|
|
4643
|
-
whiteTheme:
|
|
4644
|
-
g10:
|
|
4645
|
-
g90:
|
|
4646
|
-
g100:
|
|
4317
|
+
const tagColorRed = {
|
|
4318
|
+
whiteTheme: "#a2191f",
|
|
4319
|
+
g10: "#a2191f",
|
|
4320
|
+
g90: "#ffd7d9",
|
|
4321
|
+
g100: "#ffd7d9"
|
|
4647
4322
|
};
|
|
4648
|
-
const
|
|
4649
|
-
whiteTheme:
|
|
4650
|
-
g10:
|
|
4651
|
-
g90:
|
|
4652
|
-
g100:
|
|
4323
|
+
const tagColorTeal = {
|
|
4324
|
+
whiteTheme: "#005d5d",
|
|
4325
|
+
g10: "#005d5d",
|
|
4326
|
+
g90: "#9ef0f0",
|
|
4327
|
+
g100: "#9ef0f0"
|
|
4653
4328
|
};
|
|
4654
4329
|
const tagColorWarmGray = {
|
|
4655
|
-
whiteTheme:
|
|
4656
|
-
g10:
|
|
4657
|
-
g90:
|
|
4658
|
-
g100:
|
|
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
|
|
4667
|
-
whiteTheme:
|
|
4668
|
-
g10:
|
|
4669
|
-
g90:
|
|
4670
|
-
g100:
|
|
4335
|
+
const tagHoverBlue = {
|
|
4336
|
+
whiteTheme: "#b8d3ff",
|
|
4337
|
+
g10: "#b8d3ff",
|
|
4338
|
+
g90: "#0053ff",
|
|
4339
|
+
g100: "#0053ff"
|
|
4671
4340
|
};
|
|
4672
|
-
const
|
|
4673
|
-
whiteTheme:
|
|
4674
|
-
g10:
|
|
4675
|
-
g90:
|
|
4676
|
-
g100:
|
|
4341
|
+
const tagHoverCoolGray = {
|
|
4342
|
+
whiteTheme: "#cdd3da",
|
|
4343
|
+
g10: "#cdd3da",
|
|
4344
|
+
g90: "#5d646a",
|
|
4345
|
+
g100: "#5d646a"
|
|
4677
4346
|
};
|
|
4678
|
-
const
|
|
4679
|
-
whiteTheme:
|
|
4680
|
-
g10:
|
|
4681
|
-
g90:
|
|
4682
|
-
g100:
|
|
4347
|
+
const tagHoverCyan = {
|
|
4348
|
+
whiteTheme: "#99daff",
|
|
4349
|
+
g10: "#99daff",
|
|
4350
|
+
g90: "#0066bd",
|
|
4351
|
+
g100: "#0066bd"
|
|
4683
4352
|
};
|
|
4684
|
-
const
|
|
4685
|
-
whiteTheme:
|
|
4686
|
-
g10:
|
|
4687
|
-
g90:
|
|
4688
|
-
g100:
|
|
4353
|
+
const tagHoverGray = {
|
|
4354
|
+
whiteTheme: "#d1d1d1",
|
|
4355
|
+
g10: "#d1d1d1",
|
|
4356
|
+
g90: "#636363",
|
|
4357
|
+
g100: "#636363"
|
|
4689
4358
|
};
|
|
4690
|
-
const
|
|
4691
|
-
whiteTheme:
|
|
4692
|
-
g10:
|
|
4693
|
-
g90:
|
|
4694
|
-
g100:
|
|
4359
|
+
const tagHoverGreen = {
|
|
4360
|
+
whiteTheme: "#74e792",
|
|
4361
|
+
g10: "#74e792",
|
|
4362
|
+
g90: "#11742f",
|
|
4363
|
+
g100: "#11742f"
|
|
4695
4364
|
};
|
|
4696
|
-
const
|
|
4697
|
-
whiteTheme:
|
|
4698
|
-
g10:
|
|
4699
|
-
g90:
|
|
4700
|
-
g100:
|
|
4365
|
+
const tagHoverMagenta = {
|
|
4366
|
+
whiteTheme: "#ffbdda",
|
|
4367
|
+
g10: "#ffbdda",
|
|
4368
|
+
g90: "#bf1d63",
|
|
4369
|
+
g100: "#bf1d63"
|
|
4701
4370
|
};
|
|
4702
|
-
const
|
|
4703
|
-
whiteTheme:
|
|
4704
|
-
g10:
|
|
4705
|
-
g90:
|
|
4706
|
-
g100:
|
|
4371
|
+
const tagHoverPurple = {
|
|
4372
|
+
whiteTheme: "#dcc7ff",
|
|
4373
|
+
g10: "#dcc7ff",
|
|
4374
|
+
g90: "#7c3dd6",
|
|
4375
|
+
g100: "#7c3dd6"
|
|
4707
4376
|
};
|
|
4708
|
-
const
|
|
4709
|
-
whiteTheme:
|
|
4710
|
-
g10:
|
|
4711
|
-
g90:
|
|
4712
|
-
g100:
|
|
4377
|
+
const tagHoverRed = {
|
|
4378
|
+
whiteTheme: "#ffc2c5",
|
|
4379
|
+
g10: "#ffc2c5",
|
|
4380
|
+
g90: "#c21e25",
|
|
4381
|
+
g100: "#c21e25"
|
|
4713
4382
|
};
|
|
4714
|
-
const
|
|
4715
|
-
whiteTheme:
|
|
4716
|
-
g10:
|
|
4717
|
-
g90:
|
|
4718
|
-
g100:
|
|
4383
|
+
const tagHoverTeal = {
|
|
4384
|
+
whiteTheme: "#57e5e5",
|
|
4385
|
+
g10: "#57e5e5",
|
|
4386
|
+
g90: "#007070",
|
|
4387
|
+
g100: "#007070"
|
|
4719
4388
|
};
|
|
4720
|
-
const
|
|
4721
|
-
whiteTheme:
|
|
4722
|
-
g10:
|
|
4723
|
-
g90:
|
|
4724
|
-
g100:
|
|
4389
|
+
const tagHoverWarmGray = {
|
|
4390
|
+
whiteTheme: "#d8d0cf",
|
|
4391
|
+
g10: "#d8d0cf",
|
|
4392
|
+
g90: "#696363",
|
|
4393
|
+
g100: "#696363"
|
|
4725
4394
|
};
|
|
4726
4395
|
//#endregion
|
|
4727
|
-
//#region
|
|
4728
|
-
var
|
|
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:
|
|
4775
|
-
g10:
|
|
4410
|
+
whiteTheme: "#ffffff",
|
|
4411
|
+
g10: "#ffffff"
|
|
4776
4412
|
};
|
|
4777
4413
|
const notificationActionTertiaryInverse = {
|
|
4778
|
-
whiteTheme:
|
|
4779
|
-
g10:
|
|
4780
|
-
g90:
|
|
4781
|
-
g100:
|
|
4414
|
+
whiteTheme: "#ffffff",
|
|
4415
|
+
g10: "#ffffff",
|
|
4416
|
+
g90: "#0f62fe",
|
|
4417
|
+
g100: "#0f62fe"
|
|
4782
4418
|
};
|
|
4783
4419
|
const notificationActionTertiaryInverseActive = {
|
|
4784
|
-
whiteTheme:
|
|
4785
|
-
g10:
|
|
4786
|
-
g90:
|
|
4787
|
-
g100:
|
|
4420
|
+
whiteTheme: "#c6c6c6",
|
|
4421
|
+
g10: "#c6c6c6",
|
|
4422
|
+
g90: "#002d9c",
|
|
4423
|
+
g100: "#002d9c"
|
|
4788
4424
|
};
|
|
4789
4425
|
const notificationActionTertiaryInverseHover = {
|
|
4790
|
-
whiteTheme:
|
|
4791
|
-
g10:
|
|
4792
|
-
g90:
|
|
4793
|
-
g100:
|
|
4426
|
+
whiteTheme: "#f4f4f4",
|
|
4427
|
+
g10: "#f4f4f4",
|
|
4428
|
+
g90: "#0050e6",
|
|
4429
|
+
g100: "#0050e6"
|
|
4794
4430
|
};
|
|
4795
4431
|
const notificationActionTertiaryInverseText = {
|
|
4796
|
-
whiteTheme:
|
|
4797
|
-
g10:
|
|
4798
|
-
g90:
|
|
4799
|
-
g100:
|
|
4432
|
+
whiteTheme: "#161616",
|
|
4433
|
+
g10: "#161616",
|
|
4434
|
+
g90: "#ffffff",
|
|
4435
|
+
g100: "#ffffff"
|
|
4800
4436
|
};
|
|
4801
4437
|
const notificationActionTertiaryInverseTextOnColorDisabled = {
|
|
4802
|
-
whiteTheme:
|
|
4803
|
-
g10:
|
|
4804
|
-
g90:
|
|
4805
|
-
g100:
|
|
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
|
|
4809
|
-
var
|
|
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
|
|
4831
|
-
whiteTheme:
|
|
4832
|
-
g10:
|
|
4833
|
-
g90:
|
|
4834
|
-
g100:
|
|
4481
|
+
const statusAccessibilityBackground = {
|
|
4482
|
+
whiteTheme: "#ffffff",
|
|
4483
|
+
g10: "#ffffff",
|
|
4484
|
+
g90: "#161616",
|
|
4485
|
+
g100: "#161616"
|
|
4835
4486
|
};
|
|
4836
|
-
const
|
|
4837
|
-
whiteTheme:
|
|
4838
|
-
g10:
|
|
4839
|
-
g90:
|
|
4840
|
-
g100:
|
|
4487
|
+
const statusBlue = {
|
|
4488
|
+
whiteTheme: "#0043ce",
|
|
4489
|
+
g10: "#0043ce",
|
|
4490
|
+
g90: "#4589ff",
|
|
4491
|
+
g100: "#4589ff"
|
|
4841
4492
|
};
|
|
4842
|
-
const
|
|
4843
|
-
whiteTheme:
|
|
4844
|
-
g10:
|
|
4493
|
+
const statusGray = {
|
|
4494
|
+
whiteTheme: "#6f6f6f",
|
|
4495
|
+
g10: "#6f6f6f",
|
|
4496
|
+
g90: "#8d8d8d",
|
|
4497
|
+
g100: "#8d8d8d"
|
|
4845
4498
|
};
|
|
4846
|
-
const
|
|
4847
|
-
whiteTheme:
|
|
4848
|
-
g10:
|
|
4849
|
-
g90:
|
|
4850
|
-
g100:
|
|
4499
|
+
const statusGreen = {
|
|
4500
|
+
whiteTheme: "#24a148",
|
|
4501
|
+
g10: "#24a148",
|
|
4502
|
+
g90: "#42be65",
|
|
4503
|
+
g100: "#42be65"
|
|
4851
4504
|
};
|
|
4852
|
-
const
|
|
4853
|
-
whiteTheme:
|
|
4854
|
-
g10:
|
|
4505
|
+
const statusOrange = {
|
|
4506
|
+
whiteTheme: "#ff832b",
|
|
4507
|
+
g10: "#ff832b",
|
|
4508
|
+
g90: "#ff832b",
|
|
4509
|
+
g100: "#ff832b"
|
|
4855
4510
|
};
|
|
4856
|
-
const
|
|
4857
|
-
whiteTheme:
|
|
4858
|
-
g10:
|
|
4859
|
-
g90: _carbon_colors.purple50,
|
|
4860
|
-
g100: _carbon_colors.purple50
|
|
4511
|
+
const statusOrangeOutline = {
|
|
4512
|
+
whiteTheme: "#ba4e00",
|
|
4513
|
+
g10: "#ba4e00"
|
|
4861
4514
|
};
|
|
4862
|
-
const
|
|
4863
|
-
whiteTheme:
|
|
4864
|
-
g10:
|
|
4865
|
-
g90:
|
|
4866
|
-
g100:
|
|
4515
|
+
const statusPurple = {
|
|
4516
|
+
whiteTheme: "#8a3ffc",
|
|
4517
|
+
g10: "#8a3ffc",
|
|
4518
|
+
g90: "#a56eff",
|
|
4519
|
+
g100: "#a56eff"
|
|
4867
4520
|
};
|
|
4868
|
-
const
|
|
4869
|
-
whiteTheme:
|
|
4870
|
-
g10:
|
|
4871
|
-
g90:
|
|
4872
|
-
g100:
|
|
4521
|
+
const statusRed = {
|
|
4522
|
+
whiteTheme: "#da1e28",
|
|
4523
|
+
g10: "#da1e28",
|
|
4524
|
+
g90: "#fa4d56",
|
|
4525
|
+
g100: "#fa4d56"
|
|
4873
4526
|
};
|
|
4874
|
-
const
|
|
4875
|
-
whiteTheme:
|
|
4876
|
-
g10:
|
|
4877
|
-
g90:
|
|
4878
|
-
g100:
|
|
4527
|
+
const statusYellow = {
|
|
4528
|
+
whiteTheme: "#f1c21b",
|
|
4529
|
+
g10: "#f1c21b",
|
|
4530
|
+
g90: "#f1c21b",
|
|
4531
|
+
g100: "#f1c21b"
|
|
4879
4532
|
};
|
|
4880
|
-
const
|
|
4881
|
-
whiteTheme:
|
|
4882
|
-
g10:
|
|
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
|
|
4888
|
-
var
|
|
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:
|
|
4911
|
-
g10:
|
|
4912
|
-
g90:
|
|
4913
|
-
g100:
|
|
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:
|
|
4917
|
-
g10:
|
|
4918
|
-
g90: (
|
|
4919
|
-
g100: (
|
|
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 {
|