To view this content, you need to install Java from java.com

Set background color
Version: 4/25/2006

Set the canvas size to 150 width by 100 height.
Define a color variable.
Set the background to the color of the color variable.

Source Code:


// set the canvas size
size(150, 100);

// define a color variable and set it to a color
color colorBBB = color(134, 66, 221);

// set the background to the color
background(colorBBB);

Source code: background_00010

Built with Processing