Unlocking SQL Server Management Studio's hidden dark theme

If there's one minor annoyance I have with SQL Server Management Studio, it's how it looks. Specifically how bright it looks. This becomes obvious when using SSMS side-by-side with Visual Studio. Of course, Visual Studio has come with a dark theme since version 2012, which is how it should be for all IDEs. I mean, look at it:

So dark. So soothing. Like a warm bath for your eyeballs.

Then you alt-tab over to SSMS, and you instantly get your retinas singed by this horrible default-WinForms-theme looking abomination.

Seriously, it's like staring into the sun.

Fortunately, there is a cure. Well, a partial cure at least. You see, it turns out that SSMS does actually have a dark theme. It's just been disabled all this time. But it's there. And it's been waiting to be discovered, hungering for freedom like some terrible ancient horror.

It's actually quite silly. There's a file called ssms.pkgundef in the SSMS installation directory.

And in this file is a line of configuration code with a comment that literally states its purpose is to disable the dark theme.

All you have to do to enable the dark theme is comment out this single line, turning

...

// Remove Dark theme
[$RootKey$\Themes\{1ded0138-47ce-435e-84ef-9ec1f439b749}]

...

into

...

// Remove Dark theme
// [$RootKey$\Themes\{1ded0138-47ce-435e-84ef-9ec1f439b749}]

...

Then, when you restart SSMS, you can select the dark theme in its settings dialog:

It really is that simple.

But, like I said, the cure is not perfect:

Not all elements of the UI support the dark theme, which is probably why it's disabled out-of-the-box. Still, it's an improvement, and one I wish I knew of earlier.