import javax.swing.*; import java.awt.*; public class ColorItem extends JRadioButtonMenuItem { Color c; public ColorItem(String name, Color color) { super(name); setBackground(c); c = color; } public Color getColor() { return c; } }