Originally Posted by
Bagzli
On final note what would the command be to change TabbedPane selected Foreground? I couldn't figure that one out.
For future reference, you can iterate over the UIDefaults to check the UI options available and search for the specific key you need to set the UI default value
UIDefaults ui = UIManager.getLookAndFeel().getDefaults();
for ( Object o : ui.keySet() ){
System.out.println(o.toString());
}
The above code will print the keys available, which you can then search for the appropriate syntax to use for the value you need