void setup(){ size(400,400); colorMode(HSB); noStroke(); } void draw(){ background(0); fill(mouseX,mouseY,255); rect(0,0,width,height); }