xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB);
background(184, 100, 82);
}
function draw() {
drawingContext.shadowOffsetX = 15;
drawingContext.shadowOffsetY = -15;
drawingContext.shadowBlur = 30;
drawingContext.shadowColor = color(344, 91, 100, 0.08);
ellipse(mouseX, mouseY, random(50, 50));
fill(56, 100, 98);
stroke(317, 78, 93);
}