@telia/teddy 0.6.12 → 0.6.14
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/dist/components/avatar/avatar-root.d.ts +1 -1
- package/dist/components/avatar/index.d.ts +1 -1
- package/dist/components/breadcrumbs/breadcrumbs-link.d.ts +1 -1
- package/dist/components/breadcrumbs/index.d.ts +1 -1
- package/dist/components/card/card-illustration.d.ts +1 -1
- package/dist/components/card/card-link.d.ts +1 -1
- package/dist/components/channel-button/channel-button-root.d.ts +6 -6
- package/dist/components/channel-button/index.d.ts +6 -6
- package/dist/components/checkbox/checkbox-group-list.d.ts +1 -1
- package/dist/components/checkbox/checkbox-group.d.ts +1 -1
- package/dist/components/checkbox/index.d.ts +2 -2
- package/dist/components/chip/chip-indicator.d.ts +1 -1
- package/dist/components/chip/index.d.ts +1 -1
- package/dist/components/dashboard-card/dashboard-card-avatar.d.ts +1 -1
- package/dist/components/expandable-card/expandable-card-button.d.ts +4 -4
- package/dist/components/expandable-card/index.d.ts +5 -5
- package/dist/components/flip-card/flip-card-trigger.d.ts +4 -4
- package/dist/components/icon/utils.d.ts +1 -1
- package/dist/components/index.cjs +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +2 -0
- package/dist/components/modal/modal-close.cjs +1 -0
- package/dist/components/modal/modal-close.js +1 -0
- package/dist/components/modal/modal-title.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.cjs +1 -0
- package/dist/components/navigation-menu/navigation-menu.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.js +1 -0
- package/dist/components/notabene/notabene-icon.d.ts +1 -1
- package/dist/components/notification/index.d.ts +4 -4
- package/dist/components/notification/notification-icon.d.ts +1 -1
- package/dist/components/notification/notification-root.d.ts +4 -4
- package/dist/components/radio-card-group/radio-card-group-content.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-content.js +1 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.js +1 -0
- package/dist/components/radio-card-group/radio-card-group-item.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-item.js +1 -0
- package/dist/components/scroll-area/index.d.ts +5 -5
- package/dist/components/scroll-area/scroll-area-button.d.ts +4 -4
- package/dist/components/select/index.cjs +31 -0
- package/dist/components/select/index.d.ts +51 -0
- package/dist/components/select/index.js +31 -0
- package/dist/components/select/select-content.cjs +38 -0
- package/dist/components/select/select-content.d.ts +5 -0
- package/dist/components/select/select-content.js +21 -0
- package/dist/components/select/select-group.cjs +31 -0
- package/dist/components/select/select-group.d.ts +9 -0
- package/dist/components/select/select-group.js +14 -0
- package/dist/components/select/select-indicator.cjs +14 -0
- package/dist/components/select/select-indicator.d.ts +5 -0
- package/dist/components/select/select-indicator.js +14 -0
- package/dist/components/select/select-item.cjs +34 -0
- package/dist/components/select/select-item.d.ts +5 -0
- package/dist/components/select/select-item.js +17 -0
- package/dist/components/select/select-portal.cjs +27 -0
- package/dist/components/select/select-portal.d.ts +5 -0
- package/dist/components/select/select-portal.js +10 -0
- package/dist/components/select/select-root.cjs +89 -0
- package/dist/components/select/select-root.d.ts +49 -0
- package/dist/components/select/select-root.js +72 -0
- package/dist/components/select/select-trigger.cjs +63 -0
- package/dist/components/select/select-trigger.d.ts +16 -0
- package/dist/components/select/select-trigger.js +46 -0
- package/dist/components/select/select-value.cjs +29 -0
- package/dist/components/select/select-value.d.ts +9 -0
- package/dist/components/select/select-value.js +12 -0
- package/dist/components/select/select-viewport.cjs +30 -0
- package/dist/components/select/select-viewport.d.ts +5 -0
- package/dist/components/select/select-viewport.js +13 -0
- package/dist/components/tabs/index.d.ts +1 -1
- package/dist/components/tabs/tabs-root.d.ts +1 -1
- package/dist/components/tabs/tabs-scroll-button.d.ts +4 -4
- package/dist/components/tabs/tabs-scroll.d.ts +1 -1
- package/dist/components/text-field/index.d.ts +4 -4
- package/dist/components/text-field/text-field-button.d.ts +4 -4
- package/dist/components/toggle/toggle.d.ts +1 -1
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/main.cjs +2 -0
- package/dist/main.js +2 -0
- package/dist/style.css +291 -38
- package/dist/tokens/color/variables.cjs +237 -0
- package/dist/tokens/color/variables.d.ts +79 -0
- package/dist/tokens/color/variables.js +237 -0
- package/package.json +2 -1
|
@@ -160,11 +160,23 @@ const teddyColorTextStatusInfoMedium = "#0078cb";
|
|
|
160
160
|
const teddyColorTextStatusNeutral = "rgba(0, 0, 0, 0.71)";
|
|
161
161
|
const teddyColorTextStatusSpecial = "#4e0174";
|
|
162
162
|
const teddyColorTextStatusAttention = "#ffffff";
|
|
163
|
+
const teddyColorTextStatusErrorStrongNegative = "#ffdde8";
|
|
164
|
+
const teddyColorTextStatusSuccessStrongNegative = "#c5efd9";
|
|
165
|
+
const teddyColorTextStatusWarningStrongNegative = "#ffe1b3";
|
|
166
|
+
const teddyColorTextStatusInfoStrongNegative = "#caeaff";
|
|
167
|
+
const teddyColorTextStatusNeutralNegative = "rgba(255, 255, 255, 0.84)";
|
|
168
|
+
const teddyColorTextStatusSpecialNegative = "rgba(255, 255, 255, 0.84)";
|
|
163
169
|
const teddyColorTextToneOnTonePrimary = "#f5e0ff";
|
|
164
170
|
const teddyColorTextToneOnToneSecondary = "#29003e";
|
|
165
171
|
const teddyColorTextToneOnToneTertiary = "#4f4741";
|
|
172
|
+
const teddyColorTextCardTeal = "#02534f";
|
|
173
|
+
const teddyColorTextCardTealNegative = "#edf5f5";
|
|
174
|
+
const teddyColorTextCardBeige = "#4f4741";
|
|
175
|
+
const teddyColorTextCardBeigeNegative = "#ede1d8";
|
|
166
176
|
const teddyColorBackgroundPrimary = "#ffffff";
|
|
177
|
+
const teddyColorBackgroundPrimaryNegative = "#1e1e20";
|
|
167
178
|
const teddyColorBackgroundSecondary = "#f3f3f8";
|
|
179
|
+
const teddyColorBackgroundSecondaryNegative = "#1e1e20";
|
|
168
180
|
const teddyColorBackgroundInteractivePrimary = "#4e0174";
|
|
169
181
|
const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
|
|
170
182
|
const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
|
|
@@ -201,10 +213,73 @@ const teddyColorBackgroundStatusWarningStrong = "#ffe1b3";
|
|
|
201
213
|
const teddyColorBackgroundStatusNeutral = "#e5e5eb";
|
|
202
214
|
const teddyColorBackgroundStatusSpecial = "#f5e0ff";
|
|
203
215
|
const teddyColorBackgroundStatusAttention = "#6d02a3";
|
|
216
|
+
const teddyColorBackgroundStatusInfoNegative = "#014d80";
|
|
217
|
+
const teddyColorBackgroundStatusInfoStrongNegative = "#0063a6";
|
|
218
|
+
const teddyColorBackgroundStatusSuccessNegative = "#02562b";
|
|
219
|
+
const teddyColorBackgroundStatusSuccessStrongNegative = "#017037";
|
|
220
|
+
const teddyColorBackgroundStatusErrorNegative = "#980233";
|
|
221
|
+
const teddyColorBackgroundStatusErrorStrongNegative = "#c00543";
|
|
222
|
+
const teddyColorBackgroundStatusWarningNegative = "#6a4102";
|
|
223
|
+
const teddyColorBackgroundStatusWarningStrongNegative = "#8b5301";
|
|
224
|
+
const teddyColorBackgroundStatusNeutralNegative = "#4a4a4d";
|
|
225
|
+
const teddyColorBackgroundStatusSpecialNegative = "#29003e";
|
|
226
|
+
const teddyColorBackgroundStatusSpecialStrong = "#f5e0ff";
|
|
227
|
+
const teddyColorBackgroundStatusSpecialStrongNegative = "#4e0174";
|
|
228
|
+
const teddyColorBackgroundStatusAttentionNegative = "#6d02a3";
|
|
204
229
|
const teddyColorBackgroundToneOnTonePrimary = "#29003e";
|
|
205
230
|
const teddyColorBackgroundToneOnToneSecondary = "#f5e0ff";
|
|
206
231
|
const teddyColorBackgroundToneOnToneTertiary = "#ede1d8";
|
|
207
232
|
const teddyColorBackgroundToneOnToneQuaternary = "#f9f1ec";
|
|
233
|
+
const teddyColorBackgroundLightPurple = "#faf0ff";
|
|
234
|
+
const teddyColorBackgroundLightPurpleNegative = "#4a4a4d";
|
|
235
|
+
const teddyColorBackgroundCardDefault = "#ffffff";
|
|
236
|
+
const teddyColorBackgroundCardDefaultNegative = "#1e1e20";
|
|
237
|
+
const teddyColorBackgroundCardDefaultHover = "#f5e0ff";
|
|
238
|
+
const teddyColorBackgroundCardDefaultHoverNegative = "#29003e";
|
|
239
|
+
const teddyColorBackgroundCardDefaultActive = "#f5e0ff";
|
|
240
|
+
const teddyColorBackgroundCardDefaultActiveNegative = "#29003e";
|
|
241
|
+
const teddyColorBackgroundCardGray = "#ffffff";
|
|
242
|
+
const teddyColorBackgroundCardGrayNegative = "#1e1e20";
|
|
243
|
+
const teddyColorBackgroundCardGrayHover = "#f5e0ff";
|
|
244
|
+
const teddyColorBackgroundCardGrayHoverNegative = "#29003e";
|
|
245
|
+
const teddyColorBackgroundCardGrayActive = "#f5e0ff";
|
|
246
|
+
const teddyColorBackgroundCardGrayActiveNegative = "#29003e";
|
|
247
|
+
const teddyColorBackgroundCardBeige = "#ffffff";
|
|
248
|
+
const teddyColorBackgroundCardBeigeNegative = "#1e1e20";
|
|
249
|
+
const teddyColorBackgroundCardBeigeHover = "#ede1d8";
|
|
250
|
+
const teddyColorBackgroundCardBeigeHoverNegative = "#29003e";
|
|
251
|
+
const teddyColorBackgroundCardBeigeActive = "#ede1d8";
|
|
252
|
+
const teddyColorBackgroundCardBeigeActiveNegative = "#29003e";
|
|
253
|
+
const teddyColorBackgroundCardBeigeEmphasis = "#ede1d8";
|
|
254
|
+
const teddyColorBackgroundCardBeigeEmphasisNegative = "#1e1e20";
|
|
255
|
+
const teddyColorBackgroundCardBeigeEmphasisHover = "#ede1d8";
|
|
256
|
+
const teddyColorBackgroundCardBeigeEmphasisHoverNegative = "#29003e";
|
|
257
|
+
const teddyColorBackgroundCardBeigeEmphasisActive = "#ede1d8";
|
|
258
|
+
const teddyColorBackgroundCardBeigeEmphasisActiveNegative = "#29003e";
|
|
259
|
+
const teddyColorBackgroundCardLightPurple = "#f5e0ff";
|
|
260
|
+
const teddyColorBackgroundCardLightPurpleNegative = "#29003e";
|
|
261
|
+
const teddyColorBackgroundCardLightPurpleHover = "#e4b6fb";
|
|
262
|
+
const teddyColorBackgroundCardLightPurpleHoverNegative = "#4e0174";
|
|
263
|
+
const teddyColorBackgroundCardLightPurpleActive = "#d58df9";
|
|
264
|
+
const teddyColorBackgroundCardLightPurpleActiveNegative = "#6d02a3";
|
|
265
|
+
const teddyColorBackgroundCardDarkPurple = "#e4b6fb";
|
|
266
|
+
const teddyColorBackgroundCardDarkPurpleNegative = "#4e0174";
|
|
267
|
+
const teddyColorBackgroundCardDarkPurpleHover = "#d58df9";
|
|
268
|
+
const teddyColorBackgroundCardDarkPurpleHoverNegative = "#6d02a3";
|
|
269
|
+
const teddyColorBackgroundCardDarkPurpleActive = "#c461f7";
|
|
270
|
+
const teddyColorBackgroundCardDarkPurpleActiveNegative = "#8c07d0";
|
|
271
|
+
const teddyColorBackgroundCardTeal = "#edf5f5";
|
|
272
|
+
const teddyColorBackgroundCardTealNegative = "#032220";
|
|
273
|
+
const teddyColorBackgroundCardTealHover = "#d5eae9";
|
|
274
|
+
const teddyColorBackgroundCardTealHoverNegative = "#063c39";
|
|
275
|
+
const teddyColorBackgroundCardTealActive = "#a1cfcd";
|
|
276
|
+
const teddyColorBackgroundCardTealActiveNegative = "#02534f";
|
|
277
|
+
const teddyColorBackgroundCardTealEmphasis = "#d5eae9";
|
|
278
|
+
const teddyColorBackgroundCardTealEmphasisNegative = "#063c39";
|
|
279
|
+
const teddyColorBackgroundCardTealEmphasisHover = "#a1cfcd";
|
|
280
|
+
const teddyColorBackgroundCardTealEmphasisHoverNegative = "#02534f";
|
|
281
|
+
const teddyColorBackgroundCardTealEmphasisActive = "#6eb5b2";
|
|
282
|
+
const teddyColorBackgroundCardTealEmphasisActiveNegative = "#006c67";
|
|
208
283
|
const teddyColorBorderMedium = "rgba(0, 0, 0, 0.33)";
|
|
209
284
|
const teddyColorBorderMediumNegative = "rgba(255, 255, 255, 0.29)";
|
|
210
285
|
const teddyColorBorderStrong = "rgba(0, 0, 0, 0.54)";
|
|
@@ -221,6 +296,10 @@ const teddyColorBorderInteractivePrimaryNegativeActive = "#e4b6fb";
|
|
|
221
296
|
const teddyColorBorderInteractiveSelected = "#990ae3";
|
|
222
297
|
const teddyColorBorderInteractiveSubtle = "rgba(0, 0, 0, 0.33)";
|
|
223
298
|
const teddyColorBorderInteractiveSubtleHover = "#4e0174";
|
|
299
|
+
const teddyColorBorderInteractiveFocusNegative = "#62b2e7";
|
|
300
|
+
const teddyColorBorderInteractiveExpressive = "#4e0174";
|
|
301
|
+
const teddyColorBorderInteractiveSubtleNegative = "rgba(255, 255, 255, 0.29)";
|
|
302
|
+
const teddyColorBorderInteractiveSubtleNegativeHover = "#e4b6fb";
|
|
224
303
|
const teddyColorBorderStatusError = "#e4175c";
|
|
225
304
|
const teddyColorBorderStatusWarning = "#cc7a00";
|
|
226
305
|
const teddyColorBorderStatusInfo = "#0078cb";
|
|
@@ -228,6 +307,54 @@ const teddyColorBorderStatusSuccess = "#018842";
|
|
|
228
307
|
const teddyColorOverlayDefault = "rgba(0, 0, 0, 0.33)";
|
|
229
308
|
const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
230
309
|
__proto__: null,
|
|
310
|
+
teddyColorBackgroundCardBeige,
|
|
311
|
+
teddyColorBackgroundCardBeigeActive,
|
|
312
|
+
teddyColorBackgroundCardBeigeActiveNegative,
|
|
313
|
+
teddyColorBackgroundCardBeigeEmphasis,
|
|
314
|
+
teddyColorBackgroundCardBeigeEmphasisActive,
|
|
315
|
+
teddyColorBackgroundCardBeigeEmphasisActiveNegative,
|
|
316
|
+
teddyColorBackgroundCardBeigeEmphasisHover,
|
|
317
|
+
teddyColorBackgroundCardBeigeEmphasisHoverNegative,
|
|
318
|
+
teddyColorBackgroundCardBeigeEmphasisNegative,
|
|
319
|
+
teddyColorBackgroundCardBeigeHover,
|
|
320
|
+
teddyColorBackgroundCardBeigeHoverNegative,
|
|
321
|
+
teddyColorBackgroundCardBeigeNegative,
|
|
322
|
+
teddyColorBackgroundCardDarkPurple,
|
|
323
|
+
teddyColorBackgroundCardDarkPurpleActive,
|
|
324
|
+
teddyColorBackgroundCardDarkPurpleActiveNegative,
|
|
325
|
+
teddyColorBackgroundCardDarkPurpleHover,
|
|
326
|
+
teddyColorBackgroundCardDarkPurpleHoverNegative,
|
|
327
|
+
teddyColorBackgroundCardDarkPurpleNegative,
|
|
328
|
+
teddyColorBackgroundCardDefault,
|
|
329
|
+
teddyColorBackgroundCardDefaultActive,
|
|
330
|
+
teddyColorBackgroundCardDefaultActiveNegative,
|
|
331
|
+
teddyColorBackgroundCardDefaultHover,
|
|
332
|
+
teddyColorBackgroundCardDefaultHoverNegative,
|
|
333
|
+
teddyColorBackgroundCardDefaultNegative,
|
|
334
|
+
teddyColorBackgroundCardGray,
|
|
335
|
+
teddyColorBackgroundCardGrayActive,
|
|
336
|
+
teddyColorBackgroundCardGrayActiveNegative,
|
|
337
|
+
teddyColorBackgroundCardGrayHover,
|
|
338
|
+
teddyColorBackgroundCardGrayHoverNegative,
|
|
339
|
+
teddyColorBackgroundCardGrayNegative,
|
|
340
|
+
teddyColorBackgroundCardLightPurple,
|
|
341
|
+
teddyColorBackgroundCardLightPurpleActive,
|
|
342
|
+
teddyColorBackgroundCardLightPurpleActiveNegative,
|
|
343
|
+
teddyColorBackgroundCardLightPurpleHover,
|
|
344
|
+
teddyColorBackgroundCardLightPurpleHoverNegative,
|
|
345
|
+
teddyColorBackgroundCardLightPurpleNegative,
|
|
346
|
+
teddyColorBackgroundCardTeal,
|
|
347
|
+
teddyColorBackgroundCardTealActive,
|
|
348
|
+
teddyColorBackgroundCardTealActiveNegative,
|
|
349
|
+
teddyColorBackgroundCardTealEmphasis,
|
|
350
|
+
teddyColorBackgroundCardTealEmphasisActive,
|
|
351
|
+
teddyColorBackgroundCardTealEmphasisActiveNegative,
|
|
352
|
+
teddyColorBackgroundCardTealEmphasisHover,
|
|
353
|
+
teddyColorBackgroundCardTealEmphasisHoverNegative,
|
|
354
|
+
teddyColorBackgroundCardTealEmphasisNegative,
|
|
355
|
+
teddyColorBackgroundCardTealHover,
|
|
356
|
+
teddyColorBackgroundCardTealHoverNegative,
|
|
357
|
+
teddyColorBackgroundCardTealNegative,
|
|
231
358
|
teddyColorBackgroundInteractiveDestructive,
|
|
232
359
|
teddyColorBackgroundInteractiveDestructiveActive,
|
|
233
360
|
teddyColorBackgroundInteractiveDestructiveHover,
|
|
@@ -253,19 +380,36 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
253
380
|
teddyColorBackgroundInteractiveTransparentHover,
|
|
254
381
|
teddyColorBackgroundInteractiveTransparentNegativeActive,
|
|
255
382
|
teddyColorBackgroundInteractiveTransparentNegativeHover,
|
|
383
|
+
teddyColorBackgroundLightPurple,
|
|
384
|
+
teddyColorBackgroundLightPurpleNegative,
|
|
256
385
|
teddyColorBackgroundPrimary,
|
|
386
|
+
teddyColorBackgroundPrimaryNegative,
|
|
257
387
|
teddyColorBackgroundSecondary,
|
|
388
|
+
teddyColorBackgroundSecondaryNegative,
|
|
258
389
|
teddyColorBackgroundStatusAttention,
|
|
390
|
+
teddyColorBackgroundStatusAttentionNegative,
|
|
259
391
|
teddyColorBackgroundStatusError,
|
|
392
|
+
teddyColorBackgroundStatusErrorNegative,
|
|
260
393
|
teddyColorBackgroundStatusErrorStrong,
|
|
394
|
+
teddyColorBackgroundStatusErrorStrongNegative,
|
|
261
395
|
teddyColorBackgroundStatusInfo,
|
|
396
|
+
teddyColorBackgroundStatusInfoNegative,
|
|
262
397
|
teddyColorBackgroundStatusInfoStrong,
|
|
398
|
+
teddyColorBackgroundStatusInfoStrongNegative,
|
|
263
399
|
teddyColorBackgroundStatusNeutral,
|
|
400
|
+
teddyColorBackgroundStatusNeutralNegative,
|
|
264
401
|
teddyColorBackgroundStatusSpecial,
|
|
402
|
+
teddyColorBackgroundStatusSpecialNegative,
|
|
403
|
+
teddyColorBackgroundStatusSpecialStrong,
|
|
404
|
+
teddyColorBackgroundStatusSpecialStrongNegative,
|
|
265
405
|
teddyColorBackgroundStatusSuccess,
|
|
406
|
+
teddyColorBackgroundStatusSuccessNegative,
|
|
266
407
|
teddyColorBackgroundStatusSuccessStrong,
|
|
408
|
+
teddyColorBackgroundStatusSuccessStrongNegative,
|
|
267
409
|
teddyColorBackgroundStatusWarning,
|
|
410
|
+
teddyColorBackgroundStatusWarningNegative,
|
|
268
411
|
teddyColorBackgroundStatusWarningStrong,
|
|
412
|
+
teddyColorBackgroundStatusWarningStrongNegative,
|
|
269
413
|
teddyColorBackgroundToneOnTonePrimary,
|
|
270
414
|
teddyColorBackgroundToneOnToneQuaternary,
|
|
271
415
|
teddyColorBackgroundToneOnToneSecondary,
|
|
@@ -292,7 +436,9 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
292
436
|
teddyColorBlue800,
|
|
293
437
|
teddyColorBlue900,
|
|
294
438
|
teddyColorBlue950,
|
|
439
|
+
teddyColorBorderInteractiveExpressive,
|
|
295
440
|
teddyColorBorderInteractiveFocus,
|
|
441
|
+
teddyColorBorderInteractiveFocusNegative,
|
|
296
442
|
teddyColorBorderInteractivePrimary,
|
|
297
443
|
teddyColorBorderInteractivePrimaryActive,
|
|
298
444
|
teddyColorBorderInteractivePrimaryHover,
|
|
@@ -302,6 +448,8 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
302
448
|
teddyColorBorderInteractiveSelected,
|
|
303
449
|
teddyColorBorderInteractiveSubtle,
|
|
304
450
|
teddyColorBorderInteractiveSubtleHover,
|
|
451
|
+
teddyColorBorderInteractiveSubtleNegative,
|
|
452
|
+
teddyColorBorderInteractiveSubtleNegativeHover,
|
|
305
453
|
teddyColorBorderMedium,
|
|
306
454
|
teddyColorBorderMediumNegative,
|
|
307
455
|
teddyColorBorderStatusError,
|
|
@@ -393,6 +541,10 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
393
541
|
teddyColorTeal800,
|
|
394
542
|
teddyColorTeal900,
|
|
395
543
|
teddyColorTeal950,
|
|
544
|
+
teddyColorTextCardBeige,
|
|
545
|
+
teddyColorTextCardBeigeNegative,
|
|
546
|
+
teddyColorTextCardTeal,
|
|
547
|
+
teddyColorTextCardTealNegative,
|
|
396
548
|
teddyColorTextDefault,
|
|
397
549
|
teddyColorTextDefaultNegative,
|
|
398
550
|
teddyColorTextInteractiveOnDestructive,
|
|
@@ -415,14 +567,20 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
415
567
|
teddyColorTextStatusDiscount,
|
|
416
568
|
teddyColorTextStatusErrorMedium,
|
|
417
569
|
teddyColorTextStatusErrorStrong,
|
|
570
|
+
teddyColorTextStatusErrorStrongNegative,
|
|
418
571
|
teddyColorTextStatusInfoMedium,
|
|
419
572
|
teddyColorTextStatusInfoStrong,
|
|
573
|
+
teddyColorTextStatusInfoStrongNegative,
|
|
420
574
|
teddyColorTextStatusNeutral,
|
|
575
|
+
teddyColorTextStatusNeutralNegative,
|
|
421
576
|
teddyColorTextStatusSpecial,
|
|
577
|
+
teddyColorTextStatusSpecialNegative,
|
|
422
578
|
teddyColorTextStatusSuccessMedium,
|
|
423
579
|
teddyColorTextStatusSuccessStrong,
|
|
580
|
+
teddyColorTextStatusSuccessStrongNegative,
|
|
424
581
|
teddyColorTextStatusWarningMedium,
|
|
425
582
|
teddyColorTextStatusWarningStrong,
|
|
583
|
+
teddyColorTextStatusWarningStrongNegative,
|
|
426
584
|
teddyColorTextToneOnTonePrimary,
|
|
427
585
|
teddyColorTextToneOnToneSecondary,
|
|
428
586
|
teddyColorTextToneOnToneTertiary,
|
|
@@ -455,6 +613,54 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
455
613
|
teddyColorTransparentWhite900,
|
|
456
614
|
teddyColorTransparentWhite950
|
|
457
615
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
616
|
+
exports.teddyColorBackgroundCardBeige = teddyColorBackgroundCardBeige;
|
|
617
|
+
exports.teddyColorBackgroundCardBeigeActive = teddyColorBackgroundCardBeigeActive;
|
|
618
|
+
exports.teddyColorBackgroundCardBeigeActiveNegative = teddyColorBackgroundCardBeigeActiveNegative;
|
|
619
|
+
exports.teddyColorBackgroundCardBeigeEmphasis = teddyColorBackgroundCardBeigeEmphasis;
|
|
620
|
+
exports.teddyColorBackgroundCardBeigeEmphasisActive = teddyColorBackgroundCardBeigeEmphasisActive;
|
|
621
|
+
exports.teddyColorBackgroundCardBeigeEmphasisActiveNegative = teddyColorBackgroundCardBeigeEmphasisActiveNegative;
|
|
622
|
+
exports.teddyColorBackgroundCardBeigeEmphasisHover = teddyColorBackgroundCardBeigeEmphasisHover;
|
|
623
|
+
exports.teddyColorBackgroundCardBeigeEmphasisHoverNegative = teddyColorBackgroundCardBeigeEmphasisHoverNegative;
|
|
624
|
+
exports.teddyColorBackgroundCardBeigeEmphasisNegative = teddyColorBackgroundCardBeigeEmphasisNegative;
|
|
625
|
+
exports.teddyColorBackgroundCardBeigeHover = teddyColorBackgroundCardBeigeHover;
|
|
626
|
+
exports.teddyColorBackgroundCardBeigeHoverNegative = teddyColorBackgroundCardBeigeHoverNegative;
|
|
627
|
+
exports.teddyColorBackgroundCardBeigeNegative = teddyColorBackgroundCardBeigeNegative;
|
|
628
|
+
exports.teddyColorBackgroundCardDarkPurple = teddyColorBackgroundCardDarkPurple;
|
|
629
|
+
exports.teddyColorBackgroundCardDarkPurpleActive = teddyColorBackgroundCardDarkPurpleActive;
|
|
630
|
+
exports.teddyColorBackgroundCardDarkPurpleActiveNegative = teddyColorBackgroundCardDarkPurpleActiveNegative;
|
|
631
|
+
exports.teddyColorBackgroundCardDarkPurpleHover = teddyColorBackgroundCardDarkPurpleHover;
|
|
632
|
+
exports.teddyColorBackgroundCardDarkPurpleHoverNegative = teddyColorBackgroundCardDarkPurpleHoverNegative;
|
|
633
|
+
exports.teddyColorBackgroundCardDarkPurpleNegative = teddyColorBackgroundCardDarkPurpleNegative;
|
|
634
|
+
exports.teddyColorBackgroundCardDefault = teddyColorBackgroundCardDefault;
|
|
635
|
+
exports.teddyColorBackgroundCardDefaultActive = teddyColorBackgroundCardDefaultActive;
|
|
636
|
+
exports.teddyColorBackgroundCardDefaultActiveNegative = teddyColorBackgroundCardDefaultActiveNegative;
|
|
637
|
+
exports.teddyColorBackgroundCardDefaultHover = teddyColorBackgroundCardDefaultHover;
|
|
638
|
+
exports.teddyColorBackgroundCardDefaultHoverNegative = teddyColorBackgroundCardDefaultHoverNegative;
|
|
639
|
+
exports.teddyColorBackgroundCardDefaultNegative = teddyColorBackgroundCardDefaultNegative;
|
|
640
|
+
exports.teddyColorBackgroundCardGray = teddyColorBackgroundCardGray;
|
|
641
|
+
exports.teddyColorBackgroundCardGrayActive = teddyColorBackgroundCardGrayActive;
|
|
642
|
+
exports.teddyColorBackgroundCardGrayActiveNegative = teddyColorBackgroundCardGrayActiveNegative;
|
|
643
|
+
exports.teddyColorBackgroundCardGrayHover = teddyColorBackgroundCardGrayHover;
|
|
644
|
+
exports.teddyColorBackgroundCardGrayHoverNegative = teddyColorBackgroundCardGrayHoverNegative;
|
|
645
|
+
exports.teddyColorBackgroundCardGrayNegative = teddyColorBackgroundCardGrayNegative;
|
|
646
|
+
exports.teddyColorBackgroundCardLightPurple = teddyColorBackgroundCardLightPurple;
|
|
647
|
+
exports.teddyColorBackgroundCardLightPurpleActive = teddyColorBackgroundCardLightPurpleActive;
|
|
648
|
+
exports.teddyColorBackgroundCardLightPurpleActiveNegative = teddyColorBackgroundCardLightPurpleActiveNegative;
|
|
649
|
+
exports.teddyColorBackgroundCardLightPurpleHover = teddyColorBackgroundCardLightPurpleHover;
|
|
650
|
+
exports.teddyColorBackgroundCardLightPurpleHoverNegative = teddyColorBackgroundCardLightPurpleHoverNegative;
|
|
651
|
+
exports.teddyColorBackgroundCardLightPurpleNegative = teddyColorBackgroundCardLightPurpleNegative;
|
|
652
|
+
exports.teddyColorBackgroundCardTeal = teddyColorBackgroundCardTeal;
|
|
653
|
+
exports.teddyColorBackgroundCardTealActive = teddyColorBackgroundCardTealActive;
|
|
654
|
+
exports.teddyColorBackgroundCardTealActiveNegative = teddyColorBackgroundCardTealActiveNegative;
|
|
655
|
+
exports.teddyColorBackgroundCardTealEmphasis = teddyColorBackgroundCardTealEmphasis;
|
|
656
|
+
exports.teddyColorBackgroundCardTealEmphasisActive = teddyColorBackgroundCardTealEmphasisActive;
|
|
657
|
+
exports.teddyColorBackgroundCardTealEmphasisActiveNegative = teddyColorBackgroundCardTealEmphasisActiveNegative;
|
|
658
|
+
exports.teddyColorBackgroundCardTealEmphasisHover = teddyColorBackgroundCardTealEmphasisHover;
|
|
659
|
+
exports.teddyColorBackgroundCardTealEmphasisHoverNegative = teddyColorBackgroundCardTealEmphasisHoverNegative;
|
|
660
|
+
exports.teddyColorBackgroundCardTealEmphasisNegative = teddyColorBackgroundCardTealEmphasisNegative;
|
|
661
|
+
exports.teddyColorBackgroundCardTealHover = teddyColorBackgroundCardTealHover;
|
|
662
|
+
exports.teddyColorBackgroundCardTealHoverNegative = teddyColorBackgroundCardTealHoverNegative;
|
|
663
|
+
exports.teddyColorBackgroundCardTealNegative = teddyColorBackgroundCardTealNegative;
|
|
458
664
|
exports.teddyColorBackgroundInteractiveDestructive = teddyColorBackgroundInteractiveDestructive;
|
|
459
665
|
exports.teddyColorBackgroundInteractiveDestructiveActive = teddyColorBackgroundInteractiveDestructiveActive;
|
|
460
666
|
exports.teddyColorBackgroundInteractiveDestructiveHover = teddyColorBackgroundInteractiveDestructiveHover;
|
|
@@ -480,19 +686,36 @@ exports.teddyColorBackgroundInteractiveTransparentActive = teddyColorBackgroundI
|
|
|
480
686
|
exports.teddyColorBackgroundInteractiveTransparentHover = teddyColorBackgroundInteractiveTransparentHover;
|
|
481
687
|
exports.teddyColorBackgroundInteractiveTransparentNegativeActive = teddyColorBackgroundInteractiveTransparentNegativeActive;
|
|
482
688
|
exports.teddyColorBackgroundInteractiveTransparentNegativeHover = teddyColorBackgroundInteractiveTransparentNegativeHover;
|
|
689
|
+
exports.teddyColorBackgroundLightPurple = teddyColorBackgroundLightPurple;
|
|
690
|
+
exports.teddyColorBackgroundLightPurpleNegative = teddyColorBackgroundLightPurpleNegative;
|
|
483
691
|
exports.teddyColorBackgroundPrimary = teddyColorBackgroundPrimary;
|
|
692
|
+
exports.teddyColorBackgroundPrimaryNegative = teddyColorBackgroundPrimaryNegative;
|
|
484
693
|
exports.teddyColorBackgroundSecondary = teddyColorBackgroundSecondary;
|
|
694
|
+
exports.teddyColorBackgroundSecondaryNegative = teddyColorBackgroundSecondaryNegative;
|
|
485
695
|
exports.teddyColorBackgroundStatusAttention = teddyColorBackgroundStatusAttention;
|
|
696
|
+
exports.teddyColorBackgroundStatusAttentionNegative = teddyColorBackgroundStatusAttentionNegative;
|
|
486
697
|
exports.teddyColorBackgroundStatusError = teddyColorBackgroundStatusError;
|
|
698
|
+
exports.teddyColorBackgroundStatusErrorNegative = teddyColorBackgroundStatusErrorNegative;
|
|
487
699
|
exports.teddyColorBackgroundStatusErrorStrong = teddyColorBackgroundStatusErrorStrong;
|
|
700
|
+
exports.teddyColorBackgroundStatusErrorStrongNegative = teddyColorBackgroundStatusErrorStrongNegative;
|
|
488
701
|
exports.teddyColorBackgroundStatusInfo = teddyColorBackgroundStatusInfo;
|
|
702
|
+
exports.teddyColorBackgroundStatusInfoNegative = teddyColorBackgroundStatusInfoNegative;
|
|
489
703
|
exports.teddyColorBackgroundStatusInfoStrong = teddyColorBackgroundStatusInfoStrong;
|
|
704
|
+
exports.teddyColorBackgroundStatusInfoStrongNegative = teddyColorBackgroundStatusInfoStrongNegative;
|
|
490
705
|
exports.teddyColorBackgroundStatusNeutral = teddyColorBackgroundStatusNeutral;
|
|
706
|
+
exports.teddyColorBackgroundStatusNeutralNegative = teddyColorBackgroundStatusNeutralNegative;
|
|
491
707
|
exports.teddyColorBackgroundStatusSpecial = teddyColorBackgroundStatusSpecial;
|
|
708
|
+
exports.teddyColorBackgroundStatusSpecialNegative = teddyColorBackgroundStatusSpecialNegative;
|
|
709
|
+
exports.teddyColorBackgroundStatusSpecialStrong = teddyColorBackgroundStatusSpecialStrong;
|
|
710
|
+
exports.teddyColorBackgroundStatusSpecialStrongNegative = teddyColorBackgroundStatusSpecialStrongNegative;
|
|
492
711
|
exports.teddyColorBackgroundStatusSuccess = teddyColorBackgroundStatusSuccess;
|
|
712
|
+
exports.teddyColorBackgroundStatusSuccessNegative = teddyColorBackgroundStatusSuccessNegative;
|
|
493
713
|
exports.teddyColorBackgroundStatusSuccessStrong = teddyColorBackgroundStatusSuccessStrong;
|
|
714
|
+
exports.teddyColorBackgroundStatusSuccessStrongNegative = teddyColorBackgroundStatusSuccessStrongNegative;
|
|
494
715
|
exports.teddyColorBackgroundStatusWarning = teddyColorBackgroundStatusWarning;
|
|
716
|
+
exports.teddyColorBackgroundStatusWarningNegative = teddyColorBackgroundStatusWarningNegative;
|
|
495
717
|
exports.teddyColorBackgroundStatusWarningStrong = teddyColorBackgroundStatusWarningStrong;
|
|
718
|
+
exports.teddyColorBackgroundStatusWarningStrongNegative = teddyColorBackgroundStatusWarningStrongNegative;
|
|
496
719
|
exports.teddyColorBackgroundToneOnTonePrimary = teddyColorBackgroundToneOnTonePrimary;
|
|
497
720
|
exports.teddyColorBackgroundToneOnToneQuaternary = teddyColorBackgroundToneOnToneQuaternary;
|
|
498
721
|
exports.teddyColorBackgroundToneOnToneSecondary = teddyColorBackgroundToneOnToneSecondary;
|
|
@@ -519,7 +742,9 @@ exports.teddyColorBlue700 = teddyColorBlue700;
|
|
|
519
742
|
exports.teddyColorBlue800 = teddyColorBlue800;
|
|
520
743
|
exports.teddyColorBlue900 = teddyColorBlue900;
|
|
521
744
|
exports.teddyColorBlue950 = teddyColorBlue950;
|
|
745
|
+
exports.teddyColorBorderInteractiveExpressive = teddyColorBorderInteractiveExpressive;
|
|
522
746
|
exports.teddyColorBorderInteractiveFocus = teddyColorBorderInteractiveFocus;
|
|
747
|
+
exports.teddyColorBorderInteractiveFocusNegative = teddyColorBorderInteractiveFocusNegative;
|
|
523
748
|
exports.teddyColorBorderInteractivePrimary = teddyColorBorderInteractivePrimary;
|
|
524
749
|
exports.teddyColorBorderInteractivePrimaryActive = teddyColorBorderInteractivePrimaryActive;
|
|
525
750
|
exports.teddyColorBorderInteractivePrimaryHover = teddyColorBorderInteractivePrimaryHover;
|
|
@@ -529,6 +754,8 @@ exports.teddyColorBorderInteractivePrimaryNegativeHover = teddyColorBorderIntera
|
|
|
529
754
|
exports.teddyColorBorderInteractiveSelected = teddyColorBorderInteractiveSelected;
|
|
530
755
|
exports.teddyColorBorderInteractiveSubtle = teddyColorBorderInteractiveSubtle;
|
|
531
756
|
exports.teddyColorBorderInteractiveSubtleHover = teddyColorBorderInteractiveSubtleHover;
|
|
757
|
+
exports.teddyColorBorderInteractiveSubtleNegative = teddyColorBorderInteractiveSubtleNegative;
|
|
758
|
+
exports.teddyColorBorderInteractiveSubtleNegativeHover = teddyColorBorderInteractiveSubtleNegativeHover;
|
|
532
759
|
exports.teddyColorBorderMedium = teddyColorBorderMedium;
|
|
533
760
|
exports.teddyColorBorderMediumNegative = teddyColorBorderMediumNegative;
|
|
534
761
|
exports.teddyColorBorderStatusError = teddyColorBorderStatusError;
|
|
@@ -620,6 +847,10 @@ exports.teddyColorTeal700 = teddyColorTeal700;
|
|
|
620
847
|
exports.teddyColorTeal800 = teddyColorTeal800;
|
|
621
848
|
exports.teddyColorTeal900 = teddyColorTeal900;
|
|
622
849
|
exports.teddyColorTeal950 = teddyColorTeal950;
|
|
850
|
+
exports.teddyColorTextCardBeige = teddyColorTextCardBeige;
|
|
851
|
+
exports.teddyColorTextCardBeigeNegative = teddyColorTextCardBeigeNegative;
|
|
852
|
+
exports.teddyColorTextCardTeal = teddyColorTextCardTeal;
|
|
853
|
+
exports.teddyColorTextCardTealNegative = teddyColorTextCardTealNegative;
|
|
623
854
|
exports.teddyColorTextDefault = teddyColorTextDefault;
|
|
624
855
|
exports.teddyColorTextDefaultNegative = teddyColorTextDefaultNegative;
|
|
625
856
|
exports.teddyColorTextInteractiveOnDestructive = teddyColorTextInteractiveOnDestructive;
|
|
@@ -642,14 +873,20 @@ exports.teddyColorTextStatusAttention = teddyColorTextStatusAttention;
|
|
|
642
873
|
exports.teddyColorTextStatusDiscount = teddyColorTextStatusDiscount;
|
|
643
874
|
exports.teddyColorTextStatusErrorMedium = teddyColorTextStatusErrorMedium;
|
|
644
875
|
exports.teddyColorTextStatusErrorStrong = teddyColorTextStatusErrorStrong;
|
|
876
|
+
exports.teddyColorTextStatusErrorStrongNegative = teddyColorTextStatusErrorStrongNegative;
|
|
645
877
|
exports.teddyColorTextStatusInfoMedium = teddyColorTextStatusInfoMedium;
|
|
646
878
|
exports.teddyColorTextStatusInfoStrong = teddyColorTextStatusInfoStrong;
|
|
879
|
+
exports.teddyColorTextStatusInfoStrongNegative = teddyColorTextStatusInfoStrongNegative;
|
|
647
880
|
exports.teddyColorTextStatusNeutral = teddyColorTextStatusNeutral;
|
|
881
|
+
exports.teddyColorTextStatusNeutralNegative = teddyColorTextStatusNeutralNegative;
|
|
648
882
|
exports.teddyColorTextStatusSpecial = teddyColorTextStatusSpecial;
|
|
883
|
+
exports.teddyColorTextStatusSpecialNegative = teddyColorTextStatusSpecialNegative;
|
|
649
884
|
exports.teddyColorTextStatusSuccessMedium = teddyColorTextStatusSuccessMedium;
|
|
650
885
|
exports.teddyColorTextStatusSuccessStrong = teddyColorTextStatusSuccessStrong;
|
|
886
|
+
exports.teddyColorTextStatusSuccessStrongNegative = teddyColorTextStatusSuccessStrongNegative;
|
|
651
887
|
exports.teddyColorTextStatusWarningMedium = teddyColorTextStatusWarningMedium;
|
|
652
888
|
exports.teddyColorTextStatusWarningStrong = teddyColorTextStatusWarningStrong;
|
|
889
|
+
exports.teddyColorTextStatusWarningStrongNegative = teddyColorTextStatusWarningStrongNegative;
|
|
653
890
|
exports.teddyColorTextToneOnTonePrimary = teddyColorTextToneOnTonePrimary;
|
|
654
891
|
exports.teddyColorTextToneOnToneSecondary = teddyColorTextToneOnToneSecondary;
|
|
655
892
|
exports.teddyColorTextToneOnToneTertiary = teddyColorTextToneOnToneTertiary;
|
|
@@ -158,11 +158,23 @@ export declare const teddyColorTextStatusInfoMedium = "#0078cb";
|
|
|
158
158
|
export declare const teddyColorTextStatusNeutral = "rgba(0, 0, 0, 0.71)";
|
|
159
159
|
export declare const teddyColorTextStatusSpecial = "#4e0174";
|
|
160
160
|
export declare const teddyColorTextStatusAttention = "#ffffff";
|
|
161
|
+
export declare const teddyColorTextStatusErrorStrongNegative = "#ffdde8";
|
|
162
|
+
export declare const teddyColorTextStatusSuccessStrongNegative = "#c5efd9";
|
|
163
|
+
export declare const teddyColorTextStatusWarningStrongNegative = "#ffe1b3";
|
|
164
|
+
export declare const teddyColorTextStatusInfoStrongNegative = "#caeaff";
|
|
165
|
+
export declare const teddyColorTextStatusNeutralNegative = "rgba(255, 255, 255, 0.84)";
|
|
166
|
+
export declare const teddyColorTextStatusSpecialNegative = "rgba(255, 255, 255, 0.84)";
|
|
161
167
|
export declare const teddyColorTextToneOnTonePrimary = "#f5e0ff";
|
|
162
168
|
export declare const teddyColorTextToneOnToneSecondary = "#29003e";
|
|
163
169
|
export declare const teddyColorTextToneOnToneTertiary = "#4f4741";
|
|
170
|
+
export declare const teddyColorTextCardTeal = "#02534f";
|
|
171
|
+
export declare const teddyColorTextCardTealNegative = "#edf5f5";
|
|
172
|
+
export declare const teddyColorTextCardBeige = "#4f4741";
|
|
173
|
+
export declare const teddyColorTextCardBeigeNegative = "#ede1d8";
|
|
164
174
|
export declare const teddyColorBackgroundPrimary = "#ffffff";
|
|
175
|
+
export declare const teddyColorBackgroundPrimaryNegative = "#1e1e20";
|
|
165
176
|
export declare const teddyColorBackgroundSecondary = "#f3f3f8";
|
|
177
|
+
export declare const teddyColorBackgroundSecondaryNegative = "#1e1e20";
|
|
166
178
|
export declare const teddyColorBackgroundInteractivePrimary = "#4e0174";
|
|
167
179
|
export declare const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
|
|
168
180
|
export declare const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
|
|
@@ -199,10 +211,73 @@ export declare const teddyColorBackgroundStatusWarningStrong = "#ffe1b3";
|
|
|
199
211
|
export declare const teddyColorBackgroundStatusNeutral = "#e5e5eb";
|
|
200
212
|
export declare const teddyColorBackgroundStatusSpecial = "#f5e0ff";
|
|
201
213
|
export declare const teddyColorBackgroundStatusAttention = "#6d02a3";
|
|
214
|
+
export declare const teddyColorBackgroundStatusInfoNegative = "#014d80";
|
|
215
|
+
export declare const teddyColorBackgroundStatusInfoStrongNegative = "#0063a6";
|
|
216
|
+
export declare const teddyColorBackgroundStatusSuccessNegative = "#02562b";
|
|
217
|
+
export declare const teddyColorBackgroundStatusSuccessStrongNegative = "#017037";
|
|
218
|
+
export declare const teddyColorBackgroundStatusErrorNegative = "#980233";
|
|
219
|
+
export declare const teddyColorBackgroundStatusErrorStrongNegative = "#c00543";
|
|
220
|
+
export declare const teddyColorBackgroundStatusWarningNegative = "#6a4102";
|
|
221
|
+
export declare const teddyColorBackgroundStatusWarningStrongNegative = "#8b5301";
|
|
222
|
+
export declare const teddyColorBackgroundStatusNeutralNegative = "#4a4a4d";
|
|
223
|
+
export declare const teddyColorBackgroundStatusSpecialNegative = "#29003e";
|
|
224
|
+
export declare const teddyColorBackgroundStatusSpecialStrong = "#f5e0ff";
|
|
225
|
+
export declare const teddyColorBackgroundStatusSpecialStrongNegative = "#4e0174";
|
|
226
|
+
export declare const teddyColorBackgroundStatusAttentionNegative = "#6d02a3";
|
|
202
227
|
export declare const teddyColorBackgroundToneOnTonePrimary = "#29003e";
|
|
203
228
|
export declare const teddyColorBackgroundToneOnToneSecondary = "#f5e0ff";
|
|
204
229
|
export declare const teddyColorBackgroundToneOnToneTertiary = "#ede1d8";
|
|
205
230
|
export declare const teddyColorBackgroundToneOnToneQuaternary = "#f9f1ec";
|
|
231
|
+
export declare const teddyColorBackgroundLightPurple = "#faf0ff";
|
|
232
|
+
export declare const teddyColorBackgroundLightPurpleNegative = "#4a4a4d";
|
|
233
|
+
export declare const teddyColorBackgroundCardDefault = "#ffffff";
|
|
234
|
+
export declare const teddyColorBackgroundCardDefaultNegative = "#1e1e20";
|
|
235
|
+
export declare const teddyColorBackgroundCardDefaultHover = "#f5e0ff";
|
|
236
|
+
export declare const teddyColorBackgroundCardDefaultHoverNegative = "#29003e";
|
|
237
|
+
export declare const teddyColorBackgroundCardDefaultActive = "#f5e0ff";
|
|
238
|
+
export declare const teddyColorBackgroundCardDefaultActiveNegative = "#29003e";
|
|
239
|
+
export declare const teddyColorBackgroundCardGray = "#ffffff";
|
|
240
|
+
export declare const teddyColorBackgroundCardGrayNegative = "#1e1e20";
|
|
241
|
+
export declare const teddyColorBackgroundCardGrayHover = "#f5e0ff";
|
|
242
|
+
export declare const teddyColorBackgroundCardGrayHoverNegative = "#29003e";
|
|
243
|
+
export declare const teddyColorBackgroundCardGrayActive = "#f5e0ff";
|
|
244
|
+
export declare const teddyColorBackgroundCardGrayActiveNegative = "#29003e";
|
|
245
|
+
export declare const teddyColorBackgroundCardBeige = "#ffffff";
|
|
246
|
+
export declare const teddyColorBackgroundCardBeigeNegative = "#1e1e20";
|
|
247
|
+
export declare const teddyColorBackgroundCardBeigeHover = "#ede1d8";
|
|
248
|
+
export declare const teddyColorBackgroundCardBeigeHoverNegative = "#29003e";
|
|
249
|
+
export declare const teddyColorBackgroundCardBeigeActive = "#ede1d8";
|
|
250
|
+
export declare const teddyColorBackgroundCardBeigeActiveNegative = "#29003e";
|
|
251
|
+
export declare const teddyColorBackgroundCardBeigeEmphasis = "#ede1d8";
|
|
252
|
+
export declare const teddyColorBackgroundCardBeigeEmphasisNegative = "#1e1e20";
|
|
253
|
+
export declare const teddyColorBackgroundCardBeigeEmphasisHover = "#ede1d8";
|
|
254
|
+
export declare const teddyColorBackgroundCardBeigeEmphasisHoverNegative = "#29003e";
|
|
255
|
+
export declare const teddyColorBackgroundCardBeigeEmphasisActive = "#ede1d8";
|
|
256
|
+
export declare const teddyColorBackgroundCardBeigeEmphasisActiveNegative = "#29003e";
|
|
257
|
+
export declare const teddyColorBackgroundCardLightPurple = "#f5e0ff";
|
|
258
|
+
export declare const teddyColorBackgroundCardLightPurpleNegative = "#29003e";
|
|
259
|
+
export declare const teddyColorBackgroundCardLightPurpleHover = "#e4b6fb";
|
|
260
|
+
export declare const teddyColorBackgroundCardLightPurpleHoverNegative = "#4e0174";
|
|
261
|
+
export declare const teddyColorBackgroundCardLightPurpleActive = "#d58df9";
|
|
262
|
+
export declare const teddyColorBackgroundCardLightPurpleActiveNegative = "#6d02a3";
|
|
263
|
+
export declare const teddyColorBackgroundCardDarkPurple = "#e4b6fb";
|
|
264
|
+
export declare const teddyColorBackgroundCardDarkPurpleNegative = "#4e0174";
|
|
265
|
+
export declare const teddyColorBackgroundCardDarkPurpleHover = "#d58df9";
|
|
266
|
+
export declare const teddyColorBackgroundCardDarkPurpleHoverNegative = "#6d02a3";
|
|
267
|
+
export declare const teddyColorBackgroundCardDarkPurpleActive = "#c461f7";
|
|
268
|
+
export declare const teddyColorBackgroundCardDarkPurpleActiveNegative = "#8c07d0";
|
|
269
|
+
export declare const teddyColorBackgroundCardTeal = "#edf5f5";
|
|
270
|
+
export declare const teddyColorBackgroundCardTealNegative = "#032220";
|
|
271
|
+
export declare const teddyColorBackgroundCardTealHover = "#d5eae9";
|
|
272
|
+
export declare const teddyColorBackgroundCardTealHoverNegative = "#063c39";
|
|
273
|
+
export declare const teddyColorBackgroundCardTealActive = "#a1cfcd";
|
|
274
|
+
export declare const teddyColorBackgroundCardTealActiveNegative = "#02534f";
|
|
275
|
+
export declare const teddyColorBackgroundCardTealEmphasis = "#d5eae9";
|
|
276
|
+
export declare const teddyColorBackgroundCardTealEmphasisNegative = "#063c39";
|
|
277
|
+
export declare const teddyColorBackgroundCardTealEmphasisHover = "#a1cfcd";
|
|
278
|
+
export declare const teddyColorBackgroundCardTealEmphasisHoverNegative = "#02534f";
|
|
279
|
+
export declare const teddyColorBackgroundCardTealEmphasisActive = "#6eb5b2";
|
|
280
|
+
export declare const teddyColorBackgroundCardTealEmphasisActiveNegative = "#006c67";
|
|
206
281
|
export declare const teddyColorBorderMedium = "rgba(0, 0, 0, 0.33)";
|
|
207
282
|
export declare const teddyColorBorderMediumNegative = "rgba(255, 255, 255, 0.29)";
|
|
208
283
|
export declare const teddyColorBorderStrong = "rgba(0, 0, 0, 0.54)";
|
|
@@ -219,6 +294,10 @@ export declare const teddyColorBorderInteractivePrimaryNegativeActive = "#e4b6fb
|
|
|
219
294
|
export declare const teddyColorBorderInteractiveSelected = "#990ae3";
|
|
220
295
|
export declare const teddyColorBorderInteractiveSubtle = "rgba(0, 0, 0, 0.33)";
|
|
221
296
|
export declare const teddyColorBorderInteractiveSubtleHover = "#4e0174";
|
|
297
|
+
export declare const teddyColorBorderInteractiveFocusNegative = "#62b2e7";
|
|
298
|
+
export declare const teddyColorBorderInteractiveExpressive = "#4e0174";
|
|
299
|
+
export declare const teddyColorBorderInteractiveSubtleNegative = "rgba(255, 255, 255, 0.29)";
|
|
300
|
+
export declare const teddyColorBorderInteractiveSubtleNegativeHover = "#e4b6fb";
|
|
222
301
|
export declare const teddyColorBorderStatusError = "#e4175c";
|
|
223
302
|
export declare const teddyColorBorderStatusWarning = "#cc7a00";
|
|
224
303
|
export declare const teddyColorBorderStatusInfo = "#0078cb";
|