PImage cloudy; color black = color(0); color c; void setup(){ size(230,230); cloudy = loadImage("cloudy.jpg"); } void draw(){ image(cloudy,0,0); tint(random(50), random(50), random(50)); }