Screenshot of my new java app ! vote it 05-03-2013, 08:09 AM
#1
Here's the Screenshot of my new Java Application - Immortal SysCleaner v0.0.1
Spoiler:
![[Image: cooltext980231940.gif]](http://s13.postimg.org/fpc42h0lj/cooltext980231940.gif)
Screenshot of my new java app ! vote it filter_list | |
private static void setLookAndFeelBlue() {
UIManager.put("nimbusBase", new Color(0, 0, 15));
UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
UIManager.put("control", Color.black);
UIManager.put("text", Color.white);
UIManager.put("nimbusSelectionBackground", Color.gray);
UIManager.put("nimbusSelectedText", Color.white);
UIManager.put("textHighlight", Color.lightGray);
UIManager.put("nimbusFocus", new Color(20, 120, 250));
UIManager.put("nimbusSelection", new Color(0, 0, 220));
UIManager.put("textBackground", Color.black);
UIManager.put("nimbusLightBackground", Color.black);
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
try {
UIManager.setLookAndFeel(info.getClassName());
} catch (Exception e) {
System.err.println(e.getMessage());
}
break;
}
}
}
private static void setLookAndFeelBlue() {
UIManager.put("nimbusBase", new Color(0, 0, 15));
UIManager.put("nimbusBlueGrey", new Color(0, 0, 220));
UIManager.put("control", Color.black);
UIManager.put("text", Color.white);
UIManager.put("nimbusSelectionBackground", Color.gray);
UIManager.put("nimbusSelectedText", Color.white);
UIManager.put("textHighlight", Color.lightGray);
UIManager.put("nimbusFocus", new Color(20, 120, 250));
UIManager.put("nimbusSelection", new Color(0, 0, 220));
UIManager.put("textBackground", Color.black);
UIManager.put("nimbusLightBackground", Color.black);
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
try {
UIManager.setLookAndFeel(info.getClassName());
} catch (Exception e) {
System.err.println(e.getMessage());
}
break;
}
}
}