Вы могли бы сделать пару вещей. Вы можете вызвать getDelegate().setBackground(BackgroundFactory.createSolidBackground(Color.BLACK))
или переопределить метод рисования экрана на
protected void paint(Graphics graphics) {
int oldColor = graphics.getColor();
graphics.setColor(Color.BLACK);
graphics.clear();
graphics.setColor(oldColor);
super.paint(graphics);
}