Border Radius

Border Radius
Border Radius Value Token Usage
50 0.25rem --border-radius-50 Small border radius for badges and other small visual components
100 0.5rem --border-radius-100 Standard border radius
200 1rem --border-radius-200 Large border radius
Legacy 0.5rem --border-radius Legacy border radius, use 'border-radius-100' instead

Usage Guidelines

Border radius tokens provide consistent rounded corners across the design system:

Examples

/* Small badge */
.badge {
    border-radius: var(--border-radius-50);
}

/* Standard button */
.button {
    border-radius: var(--border-radius-100);
}

/* Large card */
.card {
    border-radius: var(--border-radius-200);
}