I am trying to change the windows borders of my application. The aim is to be independent from the Windows theme of the user. For that I use the already implemented LookAndFeel class of my company but I don't find the correct attribute which I should change the color.
My last try is with InternalFrame but it doesn't work.
putComponentColor("InternalFrame.activeTitleBackground", new ColorUIResource(30, 144, 255));
putComponentColor("InternalFrame.inactiveTitleBackground", new ColorUIResource(30, 144, 255));
You can see below the orange windows theme that I put. It should be override in blue.
What is the attribute to change the windows title color?