GUI of the Project I'm working on uses Nimbus lookandfeel. I can't change it. It effects too much things. on the other hand, I also need to change lots of color properties.
So I want to use Nimbus and edit some properties
But:
When I use
UIManager.setLookAndFeel(info.getClassName());
UIManager.installLookAndFeel(info);
UIManager.put("Label.background", colorA);
UIManager.put("Panel.background", colorA);
UIManager.put("CheckBox.background", colorA);
UIManager.put("TextField.background", colorA);
.
.
some of the properties does not change. I believe UIManager.put can not override lookandfeel properties. For example, JPanel backrounds stay grey, instead of colorA.
Thanks!