PFont font; float speed = 0; color loco; void setup (){ size(480, 120); smooth(); font=loadFont("CurlzMT-36.vlw"); //Font style textFont(font); } void draw (){ loco = color(random(0,255)); //color is randome background (loco); //Background color is randome because loco is randome textSize(55); text("VivE La ViDA LocA", 25, 60);//Frase that is going to stay in the screen as the background changes }