I know I can set System L&F using
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
and change the theme for a certain L&F (say, "Metal") using
MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
Is there a way to change the theme (light/dark) for the System Look and Feel?
System Dark (What I wish to achieve)
I want the dark theme of the System L&F.
If a dark theme does not exist, I wish to invert the colours of the default theme.
