button.getBackground
protected JButton createColorButton(String caption, Color color){ final JButton b = new JButton(caption); b.setBackground(color); b.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { Color c = JColorChooser.showDialog(IRCOptionPane.this, "Farbe auswählen", b.getBackground()); if (c != null) b.setBackground(c); } }); b.setRequestFocusEnabled(false); return b;}