xxxxxxxxxx
18
function setup() {
createCanvas(100, 100);
background(251);
let span = createSpan('NEW');
span.position(25, 35);
span.style('background-color', '#00549E');
span.style('color', 'white');
span.style('padding', '0.2em');
span.style('font-weight', '900');
span.style('font-family', 'Verdana');
span.style('font-size', '8px');
span.style('border-radius', '0.4em');
span.style('text-rendering: optimizeLegibility');
describe('A rectangle with the text "NEW" written in its center.');
}