How to disable Google Chrome Dark Mode?

DrZoo

How do I disable the Google Chrome dark mode, but still keep using the dark mode appearance for the OS?

Up until today, Google Chrome was still the white material design. Now when I open it, I get the dark theme.

I can make it white again if I change the system appearance to white, but I like the dark theme for the OS.

I've searched chrome://flags and didn't see anything. I've also looked through the settings in Chrome and didn't find anything either.

Any ideas of why it suddenly changed, and how to change it back?

Chrome Version: 73.0.3683.86 (Official Build) (64-bit)

macOS Version: 10.14.3 (18D109)

Dark Mode

enter image description here

Light Mode

enter image description here

jw910731

Use Command

defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool Yes

run this in Terminal will do.

Disable dark mode of other app

If you want to disable the dark mode of other application you'll need to get the Bundle Identifier first.

osascript -e 'id of app "<App Name>"'

This will get the Bundle Identifier. Use the following command to disable dark mod of it.

defaults write <Bundle Identifier> NSRequiresAquaSystemAppearance -bool Yes

If you want to enable the dark mode of it again

defaults delete <Bundle Identifier> NSRequiresAquaSystemAppearance

will do.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I preview PDFs with Google Chrome in dark mode?

From Dev

How to Enforce Dark Mode on Chrome Web Store?

From Dev

How to disable Chrome kiosk mode?

From Java

How to force disable iOS dark mode in React Native

From Dev

How to disable Chrome's Incognito Mode?

From Dev

How to disable Chrome's Incognito Mode?

From Dev

Disable dark mode for mac OSX App in Swift

From Dev

Dark mode in chrome-based browsers

From Dev

Enable dark mode on chrome's internal pages

From Java

How to check for Dark Mode in iOS?

From Java

How to enable Dark Mode for Xcode

From Java

How to enable Dark Mode on the Simulator?

From Java

How to disable Google Chrome auto update?

From Dev

How to disable Google Chrome extension autoupdate

From Dev

How to disable DirectWrite in Google Chrome 37?

From Dev

How to disable profile name in Google Chrome?

From Dev

How to disable google chrome cross domain security

From Dev

How to disable auto-assume in Google Chrome

From Dev

How to disable Google Chrome tab preview on hover?

From Dev

How can I disable guest browsing mode in Chrome?

From Dev

How can I enable dark mode on Chrome on Windows 7 SP1 x64 Ultimate so that the setting page has a dark mode?

From Dev

Disable Google Chrome Quicksearch

From Dev

How to quickly switch to dark mode in Ubuntu with GNOME and to make it fully dark?

From Dev

How to quickly switch to dark mode in Ubuntu with GNOME and to make it fully dark?

From Dev

Google Chrome looks Dark/Grayed Out?

From Dev

How to disable landscape mode?

From Java

How to use dark mode in simulator iOS 13?

From Java

How to detect if the OS is in dark mode in browsers?

From Dev

How to detect if OS X is in dark mode?

Related Related

HotTag

Archive