fullscreen int counter;
void setup() { //setup function called initially, only once
size(250, 250);
background(255); //set background white
colorMode(HSB); //set colors to Hue, Saturation, Brightness mode
counter = 0;
}
void setup(){
size(640, 360); //resizing window
background(165,293,4);//setting background color
text("SOMTO" , 280,180);
}
void draw(){
if(mousePressed == true){
background(143,56,199);
line(320,180,380 ,180);
text(" SOMTO 0J0KO", 280,180);
fill(201,36,87);
}
}