@@ -481,50 +481,91 @@ type McpUiStyleVariableKey =
481481 | " --color-background-primary"
482482 | " --color-background-secondary"
483483 | " --color-background-tertiary"
484- | " --color-background-inverted"
484+ | " --color-background-inverse"
485+ | " --color-background-ghost"
486+ | " --color-background-info"
487+ | " --color-background-danger"
488+ | " --color-background-success"
489+ | " --color-background-warning"
490+ | " --color-background-disabled"
485491 // Text colors
486492 | " --color-text-primary"
487493 | " --color-text-secondary"
488494 | " --color-text-tertiary"
489- | " --color-text-inverted "
490- // Icon colors
491- | " --color-icon-primary "
492- | " --color-icon-secondary "
493- | " --color-icon-tertiary "
494- | " --color-icon-inverted "
495+ | " --color-text-inverse "
496+ | " --color-text-info "
497+ | " --color-text-danger "
498+ | " --color-text-success "
499+ | " --color-text-warning "
500+ | " --color-text-disabled "
495501 // Border colors
496502 | " --color-border-primary"
497503 | " --color-border-secondary"
498- // Accent colors
499- | " --color-accent-info"
500- | " --color-accent-danger"
501- | " --color-accent-success"
502- | " --color-accent-warning"
504+ | " --color-border-tertiary"
505+ | " --color-border-inverse"
506+ | " --color-border-ghost"
507+ | " --color-border-info"
508+ | " --color-border-danger"
509+ | " --color-border-success"
510+ | " --color-border-warning"
511+ | " --color-border-disabled"
512+ // Ring colors
513+ | " --color-ring-primary"
514+ | " --color-ring-secondary"
515+ | " --color-ring-inverse"
516+ | " --color-ring-info"
517+ | " --color-ring-danger"
518+ | " --color-ring-success"
519+ | " --color-ring-warning"
503520 // Typography - Family
504- | " --font-family-sans"
505- // Typography - Size
506- | " --font-size-heading"
507- | " --font-size-body"
508- | " --font-size-caption"
521+ | " --font-sans"
522+ | " --font-mono"
509523 // Typography - Weight
510- | " --font-weight-regular"
511- | " --font-weight-emphasized"
512- // Typography - Line height
513- | " --font-leading-regular"
514- | " --font-leading-tight"
515- // Typography - Composite styles
516- | " --font-style-heading"
517- | " --font-style-body"
518- | " --font-style-body-emphasized"
519- | " --font-style-caption"
520- | " --font-style-caption-emphasized"
524+ | " --font-weight-normal"
525+ | " --font-weight-medium"
526+ | " --font-weight-semibold"
527+ | " --font-weight-bold"
528+ // Typography - Text Size
529+ | " --font-text-xs-size"
530+ | " --font-text-sm-size"
531+ | " --font-text-md-size"
532+ | " --font-text-lg-size"
533+ // Typography - Heading Size
534+ | " --font-heading-xs-size"
535+ | " --font-heading-sm-size"
536+ | " --font-heading-md-size"
537+ | " --font-heading-lg-size"
538+ | " --font-heading-xl-size"
539+ | " --font-heading-2xl-size"
540+ | " --font-heading-3xl-size"
541+ // Typography - Text Line Height
542+ | " --font-text-xs-line-height"
543+ | " --font-text-sm-line-height"
544+ | " --font-text-md-line-height"
545+ | " --font-text-lg-line-height"
546+ // Typography - Heading Line Height
547+ | " --font-heading-xs-line-height"
548+ | " --font-heading-sm-line-height"
549+ | " --font-heading-md-line-height"
550+ | " --font-heading-lg-line-height"
551+ | " --font-heading-xl-line-height"
552+ | " --font-heading-2xl-line-height"
553+ | " --font-heading-3xl-line-height"
521554 // Border radius
522- | " --border-radius-small"
523- | " --border-radius-medium"
524- | " --border-radius-large"
555+ | " --border-radius-xs"
556+ | " --border-radius-sm"
557+ | " --border-radius-md"
558+ | " --border-radius-lg"
559+ | " --border-radius-xl"
525560 | " --border-radius-full"
526561 // Border width
527- | " --border-width-regular" ;
562+ | " --border-width-regular"
563+ // Shadows
564+ | " --shadow-hairline"
565+ | " --shadow-sm"
566+ | " --shadow-md"
567+ | " --shadow-lg" ;
568+ ```
528569
529570#### Host Behavior
530571
0 commit comments