Adding a "dark theme" would be super nice. The white skin is pretty eye straining in some conditions.
You know, for the night operators. ;)
Theming is normally done in Windows design settings. And I guess just making background colors dark would make HeidiSQL really ugly. That also implies light font colors, different grey scales in borders and disabled buttons etc.
Did you try to set a dark theme in your Windows settings?
See this forum thread: https://www.heidisql.com/forum.php?t=23756
See attached screeny from a quick color assignment. Ugly. I guess real theming needs some dedicated theming component.

Right - like the Jetbrains IDEs, e.g. PHPStorm and so on.
PHPStorm is Java-based, while HeidiSQL uses the Windows API for painting dialogs and other controls.
What about changing colors in your Windows design settings?
For me no problem, don't know about the thread creator, just wanted to give some input.
What about changing colors in your Windows design settings?
Is never really a valid solution.
While I've never had an issue with the colour scheme in Heidi, a simple solution to implement that gives users freedom isn't too hard.
New UI screen in settings, Have maybe 10 boxes which contain the default colours for certain components, allow changing them. Then just have BG/Borders/etc get their colours from there. Simple reset to default button and you're done. While I am not familiar with Delphi, I'd assume that it lets you do styling of windows to some basic extent.
Of course with Delphi you can style some basic things, while it was never designed to implement its own style including border colors and some other minor things. You can see that in the screenshot above.
Seems very complex make it possible because the Windows API, and too that there are a lot of places that need attention to make it really a full dark theme (and not only changing the white backgrounds to dark). It need change colors scheme, borders, shadows, so on. I could understand the "night operators" but I think that we could use solutions like WindowBlinds to fix it.
This is a high-dpi screeny of a sample program created in Rad Studio 10 (trial), with an applied "carbon" theme. That's one from many, I guess 30 or 40, supported by RS10. Looks nice, doesn't it?

@ansgarbecker Looks for sure better then the white skin. But the icons seems to be a little bit too large? (Like the icon in the title-bar).
What about tables?
The icons are large because my Windows was in 150% mode. That was another thing I wanted to test with the new Rad Studio.
I will try to load Heidi's sources into that trial version, compile and make a screenshot to see how many new issues I have then :)
Here we go: HeidiSQL compiled with Rad Studio 10.2 and Carbon Style selected.
Glitches I can most probably fix easily:
Issues which I have no idea about yet:









Some code hints for myself:
Adding styles is doable via .rc file:
Carbon VCLSTYLE "Redist\Styles\Vcl\Carbon.vsf"
Listing included styles via style manager:
TStyleManager.StyleNames
Apply style to application:
TStyleManager.TrySetStyle('Carbon');
Tada, here we go: The newest HeidiSQL build has 39 selectable style themes. You can set it in Tools > Preferences > General, at the very bottom.
Though there are a few new issues with this now. So be warned! We are still in the nightly builds here.
New Dark theme looks amazing! I think you alluded it to it with the other issues you noted, but is it possible to change the font colors and row background colors in lock step with the theme?
Not yet. But that should probably be the way to go? But that would mean I have to go through 39 themes and watch out for fitting foreground/background colors. That sounds quite unsexy.
Is there an easier way to open the vsf files besides the RAD trial?
.vsf styles can be created and edited with the integrated BitmapStyleDesigner.exe. Not sure if that's available separately from Delphi or RAD Studio.
Various foreground/background colors are now "locked" to the active theme, so we don't have a light background on dark themes any more.
Though the SQL editors are still hardcoded white. They have many different font colors which are quite incompatible to dark themes, so it's not optimal to just adapt the background to the active theme. But I'll start over doing exactly that. Selecting better fitting SQL font colors may be left up to the user then.
This is how it looks like, with some issues fixed:

Hi,
A little display issue related to this new theme feature I think, there is an empty space on the left of main menu buttons for the default theme (Windows) :

EDIT : Another issue, buttons between "SQL help" and "Load a SQL file" are transparents when you select another theme than Windows (default one).

EDIT 2 : it actually takes this transparent apparence when a button is disabled, so maybe you wanted to make it look like that ?
HeidiSQL version : 9.5.0.5314
Language : french
A little display issue related to this new theme feature I think, there is an empty space on the left of main menu buttons for the default theme (Windows) :
Yes, I can confirm that, although sporadically only. I have no clue about the reason, and no clue how to fix that.
EDIT : Another issue, buttons between "SQL help" and "Load a SQL file" are transparents when you select another theme than Windows (default one).
Yes, these are disabled buttons. This is intentionally done by the underlying library. Ok, they could look more stylish, yes, but I have very few to no influence on that look.
I think we are complete at this point with themes. At least for the obvious stuff. So I'll close this issue now.
If anyone finds more issues with theming, then please report that in a new issue. Thanks!
Using version 9.5.0.5371 my left panel (database tables) still shows up with a white background
on all themes
@anselal Works great for me; have you tried clearing your settings?
@cookieguru thanks, clearing the settings did the job !!!!!
@cookieguru is there a specific like I can remove from my settings file to get the work done ? Don't wanna lose all of my settings
@anselal No idea. I would clear the settings, copy them, change the theme, then diff those, and go from there.
I found that yo must set the TreeBackground option like:
Servers\Unnamed\TreeBackground<|||>3<|||>536870911
this is for the Carbon theme.
It is the "Session background color", which you have probably set for your sessions. You can safely remove that TreeBackground value from your registry. Or - preferably - you just select another color, via File > Select session background color.
Most helpful comment
Tada, here we go: The newest HeidiSQL build has 39 selectable style themes. You can set it in Tools > Preferences > General, at the very bottom.
Though there are a few new issues with this now. So be warned! We are still in the nightly builds here.