I sent you a sample of how to implement the look and feel in netbeans.
public static void main(String args[]) {
try {
NimRODTheme nt = new NimRODTheme();
nt.setPrimary(new Color(153, 244, 51));
nt.setPrimary1(new Color(133, 224, 31));
nt.setPrimary2(new Color(143, 234, 41));
nt.setPrimary3(new Color(153, 244, 51));
nt.setSecondary(new Color(222, 230, 250));
nt.setSecondary1(new Color(202, 210, 230));
nt.setSecondary2(new Color(212, 220, 240));
nt.setSecondary3(new Color(222, 230, 250));
nt.setMenuOpacity(20);
nt.setFrameOpacity(20);
nt.setOpacity(20);
NimRODLookAndFeel NimRODLF = new NimRODLookAndFeel();
NimRODLF.setCurrentTheme(nt);
UIManager.setLookAndFeel(NimRODLF);
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new PRINCIPAL().setVisible(true);
}
});
} catch (UnsupportedLookAndFeelException ex) {
Logger.getLogger(PRINCIPAL.class.getName()).log(Level.SEVERE, null, ex);
}
}
I used it numerously when I used swing