diff --git a/docs/_docs/16-stylesheets.md b/docs/_docs/16-stylesheets.md index c1181f770eff..4460b5aa9c8b 100644 --- a/docs/_docs/16-stylesheets.md +++ b/docs/_docs/16-stylesheets.md @@ -89,7 +89,7 @@ By default the theme uses [system fonts](https://medium.com/designing-medium/sys ```scss /* system typefaces */ $serif : Georgia, Times, serif; -$sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; +$sans-serif : -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; $monospace : Monaco, Consolas, "Lucida Console", monospace; ``` @@ -114,7 +114,7 @@ Not a fan of the refreshed typography of the theme and want to revert back an ol ```scss $serif : "PT Serif", Georgia, Times, serif; -$sans-serif-narrow : "PT Sans Narrow", -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; +$sans-serif-narrow : "PT Sans Narrow", -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; $global-font-family : $serif; $header-font-family : $sans-serif-narrow;