Set the background color of drawing operations. Used when calling clear() or drawing text.
YourScreen.background(r, g, b)
YourScreen.background(color)
Nothing
YourScreen.beginDraw();
YourScreen.background(255, 0, 0);
YourScreen.clear();
YourScreen.endDraw();