Revert new XE8 IDE look to XE7 “skin”

Immediately after you start new RAD Studio XE8 for the first time, you will notice significant UI change in IDE. Bigger font size (Object Inspector, menu, Tool Palette…) and even blue toolbar and main menu backgroud. Here is how to revert this new look to “conservative” XE7 (and older versions) look.

Just to compare new XE8 and older XE7 look:

XE8 new IDE look

XE8 new IDE look

XE7-like IDE look

XE7-like IDE look

IMHO, especially the blue background is ugly and feels like “few years old MS Office look”. Unfortunately there is no configuration dialog in the IDE to change this, you need to edit system registry. Here is the official Embarcadero Wiki page describing the procedure. All you need to do is to create new system registry record describing font type, font size and background. To revert to XE7 look, create new file (using Notepad), name it as you wish with .REG extension, paste following code to it and run it.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Embarcadero\BDS\16.0\ModernTheme]
"FontName"="Segoe UI"
"FontSize"=dword:00000009
"MainToolBarColor"="clBtnFace"

Of course, you can change font, size and background color to any values you wish and completely change IDE look. To return to default XE8 look, just delete new added registry key or change settings to these values:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Embarcadero\BDS\16.0\ModernTheme]
"FontName"="Segoe UI"
"FontSize"=dword:0000000a
"MainToolBarColor"="clGradientActiveCaption"

Here you can find list of color constants.