Skip to content

Instantly share code, notes, and snippets.

@arondeparon
Created December 12, 2018 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arondeparon/5b844c9fa5c85ca3f6f30507b659dcb6 to your computer and use it in GitHub Desktop.
Save arondeparon/5b844c9fa5c85ca3f6f30507b659dcb6 to your computer and use it in GitHub Desktop.
Turn off dark mode for Microsoft Office on Mac
# So, Microsoft made their Office suite dark-mode compatible, sort of.
# Thing is, it looks absolutely terrible and there is no simple way to turn it off.
# Oh wait, there is! Paste these commands in your terminal to excempt the app from Dark Mode in Mac OS.
defaults write com.microsoft.Excel NSRequiresAquaSystemAppearance -bool yes
defaults write com.microsoft.Word NSRequiresAquaSystemAppearance -bool yes
defaults write com.microsoft.Outlook NSRequiresAquaSystemAppearance -bool yes
defaults write com.microsoft.Powerpoint NSRequiresAquaSystemAppearance -bool yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment