Skip to content

Instantly share code, notes, and snippets.

@xtraclass
Created May 25, 2013 19:55
Show Gist options
  • Save xtraclass/5650550 to your computer and use it in GitHub Desktop.
Save xtraclass/5650550 to your computer and use it in GitHub Desktop.
Java SWING PLAF
public static final void setupPLAF()
{
Options.setUseNarrowButtons( false );
PlasticLookAndFeel.setHighContrastFocusColorsEnabled( true );
PlasticLookAndFeel.setPlasticTheme( new SkyYellow() );
try
{
UIManager.setLookAndFeel( new Plastic3DLookAndFeel() );
}
catch ( Exception x )
{
x.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment