AWT/Swing Skins

I want to give Swing my own "skin". I basically want to make buttons invisible, and just be an image, and set all the colors to the right theme. How do I do this?

button.setIcon(...)
button.setFocusPainted(false);
button.setBorderPainted(false);
button.setContentAreaFilled(false);

Thanks! Just what I needed.