Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 626 Bytes

File metadata and controls

31 lines (28 loc) · 626 Bytes

fontWeight

| Token                 | Value |
| --------------------- | ----- |
| fontWeight.thin       | 100   |
| fontWeight.extralight | 200   |
| fontWeight.light      | 300   |
| fontWeight.normal     | 400   |
| fontWeight.medium     | 500   |
| fontWeight.semibold   | 600   |
| fontWeight.bold       | 700   |
| fontWeight.extrabold  | 800   |
| fontWeight.black      | 900   |
import { fontWeight } from 'solarwindcss/font-weight.stylex'

function Example() {
  return (
    <div
      {...apply({
        fontWeight: fontWeight.light,
      })}
    >
      Lorem Ipsum
    </div>
  )
}