PFont myFont; void setup() { size(320, 100); background(255); smooth(); noLoop(); myFont = loadFont("Calibri-48.vlw"); textFont(myFont, 48); } void draw() { fill(#E2007C, 200); text("Graphic", 10, 60); fill(#E2007C, 50); text("Coding", 170, 60); }