PFont fontA; void setup() { size(200,200); background (130); fontA = loadFont ("CourierFinalDraft-Regular-48.vlw"); textAlign(CENTER); int h=hour(); textFont (fontA, 150); } void draw () { int m=minute(); int s=second(); strokeWeight(m/2); stroke(245,245,10); line(s,100,s,100); int h=hour(); fill (random(230-h,255), random(230-h,255), random(230-h,255)); text(h,95,95); fill (random(230-m*2,255), random(230-m*2,255), random(230-m*2,255)); text(m,95,197); }