Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to toggle Dark Mode on/off for individual apps in macOS Mojave? [closed]

Is there a way in Terminal to toggle Dark Mode On/Off for an individual app without affecting the rest of the environment?

I use calendar on my Mac, and the appearance is dreadful. The rest of the apps look great in Dark Mode. I want to disable it JUST for that one app.

like image 796
David M Avatar asked Aug 30 '25 17:08

David M


1 Answers

From Terminal, run this command:

defaults write com.apple.iCal NSRequiresAquaSystemAppearance true

To revert the change:

defaults write com.apple.iCal NSRequiresAquaSystemAppearance false
like image 93
TheNextman Avatar answered Sep 03 '25 18:09

TheNextman