DEV Community

Burke Holland
Burke Holland

Posted on • Originally published at burkeholland.github.io on

How to use 'Dark Mode' in VS Code

After my post on how to auto-switch your theme based on the time of day, a few readers pointed out that VS Code “does this automatically”. In other words, you don’t need the extension that I recommended to do this.

I had no idea! Is this true? Kind of…

While VS Code doesn’t have built-in ability to change your theme based on the time of day, it does have the ability to change your theme based on whether or not you are using “Dark Mode” in your Operating System. This is done via the workbench.prefferedLightTheme and workbench.preferredDarkColorTheme settings. You must use these in conjunction with the autoDetectColorScheme setting in order for them to have any effect.

"window.autoDetectColorScheme": true,
"workbench.preferredDarkColorTheme": "GitHub Dark",
"workbench.preferredLightColorTheme": "GitHub Light"

Enter fullscreen mode Exit fullscreen mode

By the way, I think the GitHub themes are the most underrated VS Code themes out there. Both the Light and the Dark are clean, sharp and Burke approved. Highly recommended.

Now this doesn’t really solve the issue I was trying to tackle in the previous blog post about switching themes based on time of day, but it can.

Switch to Dark Mode based on time of day

You can switch your entire operating system to Dark Mode based on the time of day. Dark Mode at night and Light Mode during the day. Or vice-versa if you think society is a platypus.

For macOS

If you’re on a Mac, this is built-in as of Catalina. There is an “Auto” setting when you choose between Light and Dark mode. This will switch you to dark mode with the sun goes down, and back to light when it comes back up. Unfortunately, Apple will decide that for you because let’s be honest - they know what’s best for you. Stop trying to live your life your way.

If you want to control the exact time when this happens, you can use the NightOwl app.

For Windows

This is not yet built-in to Windows, but you can either setup a scheduled task to do it, or consider installing the Windows Auto Night Mode program.

I opted for the scheduled task as I’m not big into installing unsigned .exe’s - even though that one looks legit.

Now VS Code will automatically switch color themes based on the time of day, and you don’t need any extensions to do it.

I’ve been using it for about a week now and…

I’m going back to the extension

I just don’t like Dark Mode. It’s one thing to have a dark VS Code theme. It’s quite another to have it applied to the entire OS. I have trouble reading web pages and discerning parts of the screen. I’ll stick with switching the theme in VS Code and leave Windows alone.

I know we’re all supposed to love Dark Mode these days, but I just can’t get into it. But let this blog post stand as the record that I did try.

Top comments (0)