@terrazzo/token-tools
Version:
Various utilities for token types
22 lines • 471 B
JavaScript
/** Mapping of valid names to numeric weights */
export const FONT_WEIGHTS = {
thin: 100,
hairline: 100,
'extra-light': 200,
'ultra-light': 200,
light: 300,
normal: 400,
regular: 400,
book: 400,
medium: 500,
'semi-bold': 600,
'demi-bold': 600,
bold: 700,
'extra-bold': 800,
'ultra-bold': 800,
black: 900,
heavy: 900,
'extra-black': 950,
'ultra-black': 950,
};
//# sourceMappingURL=font-weight.js.map