@synergy-design-system/styles
Version:
Utility classes and helpers for applications using the Synergy Design System
17 lines (13 loc) • 326 B
CSS
/**
* Typographic weight classes
* @variant {normal | semibold | bold} syn-weight The font weight to apply
*/
.syn-weight--normal {
font-weight: var(--syn-font-weight-normal);
}
.syn-weight--semibold {
font-weight: var(--syn-font-weight-semibold);
}
.syn-weight--bold {
font-weight: var(--syn-font-weight-bold);
}