boardColorButton_ = new JButton("...");
GameBoardViewer v = ((GameBoardViewer)controller_.getViewer());
boardColorButton_.setBackground(v.getBackground());
gridColorButton_ = new JButton("...");
gridColorButton_.setBackground(v.getGridColor());
JPanel boardColorPanel = new ColorInputPanel(GameContext.getLabel("SELECT_BOARD_COLOR"),
GameContext.getLabel("SELECT_BOARD_COLOR_TIP"),
boardColorButton_);
JPanel gridColorPanel = new ColorInputPanel(GameContext.getLabel("SELECT_GRID_COLOR"),
GameContext.getLabel("SELECT_GRID_COLOR_TIP"),
gridColorButton_);
p.add( boardColorPanel );
p.add( gridColorPanel );
JPanel spacer = new JPanel();