Letra desenfocada

Hi guys,

This text does not look very clear, can somebody tell me how make it more defined?

Thanks

void setup(){
  size(270,540);
  background(0,0,0);
  noStroke();
  smooth();
}  

void draw() {
  fill(255, 255, 255, 255);
  textSize(height/12);
  textAlign(RIGHT, CENTER);   
  text("deep", width/2, height/2);
  fill(255, 204 , 0, 255);
  textSize(height/12);
  textAlign(LEFT, CENTER);
  text("focus", width/2, height/2); 
  fill(255, 95, 95, 255);
  textSize(height/36);
  textAlign(CENTER, CENTER);
  text("@deepfocusapp", width/2, height/1.1);
 
}
1 Like
void setup() {
  size(270, 540);
  background(0, 0, 0);
  noStroke();
  smooth();
}  

void draw() {
  background(0, 0, 0);
  fill(255, 255, 255, 255);
  textSize(height/12);
  textAlign(RIGHT, CENTER);   
  text("deep", width/2, height/2);
  fill(255, 204, 0, 255);
  textSize(height/12);
  textAlign(LEFT, CENTER);
  text("focus", width/2, height/2); 
  fill(255, 95, 95, 255);
  textSize(height/36);
  textAlign(CENTER, CENTER);
  text("@deepfocusapp", width/2, height/1.1);
}

I added background to start of draw().

:slight_smile:

1 Like

Oh my god, it was so easy! thank u so much