humano
1
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
glv
2
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().
1 Like
humano
3
Oh my god, it was so easy! thank u so much