code lines to choose from

sketch.js

function setup() {
  createCanvas(
      windowWidth,
      windowHeight
    );
}

function draw() {
  noStroke();
  fill("#E76F51");
  background("white");
}