@@ -396,25 +396,28 @@ export type Elements = {
396
396
export type Variables = {
397
397
/**
398
398
* The primary color used throughout the components. Set this to your brand color.
399
- * @default #42434D
399
+ * @default '#2F3037'
400
400
*/
401
401
colorPrimary ?: CssColorOrScale ;
402
402
/**
403
403
* The color of text appearing on top of an element that with a background color of {@link Variables.colorPrimary},
404
404
* eg: solid primary buttons.
405
- * @default white
405
+ * @default ' white'
406
406
*/
407
407
colorTextOnPrimaryBackground ?: CssColor ;
408
408
/**
409
409
* The color used to indicate errors or destructive actions. Set this to your brand's danger color.
410
+ * @default '#EF4444'
410
411
*/
411
412
colorDanger ?: CssColorOrScale ;
412
413
/**
413
414
* The color used to indicate an action that completed successfully or a positive result.
415
+ * @default '#22C543'
414
416
*/
415
417
colorSuccess ?: CssColorOrScale ;
416
418
/**
417
419
* The color used for potentially destructive actions or when the user's attention is required.
420
+ * @default '#F36B16'
418
421
*/
419
422
colorWarning ?: CssColorOrScale ;
420
423
/**
@@ -426,79 +429,73 @@ export type Variables = {
426
429
colorNeutral ?: CssColorOrAlphaScale ;
427
430
/**
428
431
* The default text color.
429
- * @default #131316
432
+ * @default '#212126'
430
433
*/
431
434
colorText ?: CssColor ;
432
435
/**
433
436
* The text color for elements of lower importance, eg: a subtitle text.
434
- * @default A lighter shade of {@link Variables.colorText}
437
+ * This color is a lighter shade of {@link Variables.colorText}.
438
+ * @default '#747686'
435
439
*/
436
440
colorTextSecondary ?: CssColor ;
437
- /**
438
- * The text color for elements of even lower importance.
439
- * @default An lighter shade of {@link Variables.colorTextSecondary}
440
- */
441
- colorTextTertiary ?: CssColor ;
442
- /**
443
- * The text color for labels.
444
- * @default #42434D
445
- */
446
- colorTextLabel ?: CssColor ;
447
441
/**
448
442
* The background color for the card container.
443
+ * @default 'white'
449
444
*/
450
445
colorBackground ?: CssColor ;
451
446
/**
452
447
* The default text color inside input elements. To customise the input background color instead, use {@link Variables.colorInputBackground}.
453
- * @default The value of { @link Variables.colorInputText}
448
+ * @default 'black'
454
449
*/
455
450
colorInputText ?: CssColor ;
456
451
/**
457
452
* The background color for all input elements.
453
+ * @default 'white'
458
454
*/
459
455
colorInputBackground ?: CssColor ;
460
456
/**
461
457
* The color of the avatar shimmer
462
- * @default rgba(255, 255, 255, 0.36)
458
+ * @default ' rgba(255, 255, 255, 0.36)'
463
459
*/
464
460
colorShimmer ?: CssColor ;
465
461
/**
466
462
* The default font that will be used in all components.
467
463
* This can be the name of a custom font loaded by your code or the name of a web-safe font ((@link WebSafeFont})
468
464
* If a specific fontFamily is not provided, the components will inherit the font of the parent element.
469
- * @default inherit
465
+ * @default ' inherit'
470
466
* @example
471
467
* { fontFamily: 'Montserrat' }
472
468
*/
473
469
fontFamily ?: FontFamily ;
474
470
/**
475
471
* The default font that will be used in all buttons. See {@link Variables.fontFamily} for details.
476
472
* If not provided, {@link Variables.fontFamily} will be used instead.
477
- * @default inherit
473
+ * @default ' inherit'
478
474
*/
479
475
fontFamilyButtons ?: FontFamily ;
480
476
/**
481
- * The value will be used as the base `md` to calculate all the other scale values (`2xs`, ` xs`, `sm`, `lg` and `xl`).
477
+ * The value will be used as the base `md` to calculate all the other scale values (`xs`, `sm`, `lg` and `xl`).
482
478
* By default, this value is relative to the root fontSize of the html element.
483
- * @default 1rem;
479
+ * @default '0.8125rem'
484
480
*/
485
481
fontSize ?: CssLengthUnit ;
486
482
/**
487
- * The font weight the components will use. By default, the components will use the 400, 500 and 600 weights for normal, medium and bold
488
- * text respectively. You can override the default weights by passing a {@FontWeightScale } object
489
- * @default { normal: 400, medium: 500, bold: 600 };
483
+ * The font weight the components will use. By default, the components will use the 400, 500, 600 and 700 weights
484
+ * for normal, medium, semibold and bold text respectively.
485
+ * You can override the default weights by passing a {@FontWeightScale } object
486
+ * @default { normal: 400, medium: 500, semibold: 600, bold: 700 };
490
487
*/
491
488
fontWeight ?: FontWeightScale ;
492
489
/**
493
490
* The size that will be used as the `md` base borderRadius value. This is used as the base to calculate the `sm`, `lg`, `xl`,
494
491
* our components use. As a general rule, the bigger an element is, the larger its borderRadius is going to be.
495
492
* eg: the Card element uses 'xl'
496
- * @default 0.375rem
493
+ * @default ' 0.375rem'
497
494
*/
498
495
borderRadius ?: CssLengthUnit ;
499
496
/**
500
497
* The base spacing unit that all margins, paddings and gaps between the elements are derived from.
501
- * @default 1rem
498
+ * @default ' 1rem'
502
499
*/
503
500
spacingUnit ?: CssLengthUnit ;
504
501
} ;
0 commit comments