# font-weight

https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight

## 100
```css
.selector {
  composes: n100 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n100 from 'hydrogencss/font-weight/100.css'
}
```

## 200
```css
.selector {
  composes: n200 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n200 from 'hydrogencss/font-weight/200.css'
}
```

## 300
```css
.selector {
  composes: n300 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n300 from 'hydrogencss/font-weight/300.css'
}
```

## 400
```css
.selector {
  composes: n400 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n400 from 'hydrogencss/font-weight/400.css'
}
```

## 500
```css
.selector {
  composes: n500 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n500 from 'hydrogencss/font-weight/500.css'
}
```

## 600
```css
.selector {
  composes: n600 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n600 from 'hydrogencss/font-weight/600.css'
}
```

## 700
```css
.selector {
  composes: n700 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n700 from 'hydrogencss/font-weight/700.css'
}
```

## 800
```css
.selector {
  composes: n800 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n800 from 'hydrogencss/font-weight/800.css'
}
```

## 900
```css
.selector {
  composes: n900 from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: n900 from 'hydrogencss/font-weight/900.css'
}
```

## bold
```css
.selector {
  composes: bold from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: bold from 'hydrogencss/font-weight/bold.css'
}
```

## bolder
```css
.selector {
  composes: bolder from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: bolder from 'hydrogencss/font-weight/bolder.css'
}
```

## lighter
```css
.selector {
  composes: lighter from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: lighter from 'hydrogencss/font-weight/lighter.css'
}
```

## normal
```css
.selector {
  composes: normal from 'hydrogencss/font-weight.css'
}
```

or:
```css
.selector {
  composes: normal from 'hydrogencss/font-weight/normal.css'
}
```

