Java JButton Get Background Color

AbstractButton button = (AbstractButton) e.getSource();
Color color = button.getBackground();
Plat00n