Web font rendering on Macs

Macs render fonts bolder than they are, especially on dark background. This can be fixed by configuring the font smoothing:

body
  -webkit-font-smoothing: antialiased
  -moz-osx-font-smoothing: grayscale

You should do this on every project, all the time.

Dominik Schöler Over 7 years ago