Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mac OS X Mojave Font thinner on Chrome - how to fix?

Every font is thinner on Mac OS X Mojave on Chrome. See references like (here or here).

That is my main problem and I need your suggestions what to do. I'm currently developing a website, but now the design looks way off. On Safari it's okay. But should I "wait" until there is a fix?

The reason is that they removed subpixel font aliasing.

What does this mean for a CSS developer?

Is there a fix somehow?

like image 573
Philipp Mochine Avatar asked Sep 24 '18 19:09

Philipp Mochine


People also ask

How do I fix blurry fonts on OSX Mojave?

To do this, click the Apple icon on the top left corner and select System Preferences. Go to General settings by clicking the General icon on System Preferences window. At the bottom of the General settings page, you will find the option for “Use font smoothening when available”. Enable the option if it is disabled.

What is font smoothing on Mac?

What is font smoothing? Font smoothing is something that macOS does to make your fonts look slightly bolder. This has the side-effect of messing with carefully designed character shapes produced by font creators, and makes text more blurry.

How do I disable font smoothing on Mac?

For macOS Catalina (10.15) or below If you are currently on macOS Catalina (10.15) or below, you can remove the text smoothing by: Open System preferences and Appearances. Uncheck the checkbox next to “Use LCD font smoothing when available.”


2 Answers

Try this command in terminal:

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
like image 95
ihar Avatar answered Oct 17 '22 20:10

ihar


An easy fix I discovered was to disable the font smoothing disabler.

All you have to do is open up your Terminal application (COMMAND (⌘) +SPACE then search for Terminal) and run the following command.

defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO

Here, I made a nice image of entering this thing in my terminal:

macos font issue

EXPLANATION:

We are switching off the disabler which is disabling the font smoothing process on non-retina screens. In simple words enabling the font smoothing.

🙌 I wrote more details about how I found this setting in the fix macOS font post.

NEXT STEPS:

I recommend you restart your computer now, but logging out and in should fix it.

macos log out in

You can also Log out with COMAND (⌘) + SHIFT (⇧) + Q.

like image 24
Ahmad Awais Avatar answered Oct 17 '22 20:10

Ahmad Awais