SketchBook

結局秋が一番好きやな

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

function draw() {
var from = color(200, 170, 255);
var to = color(250, 200, 25);

for (var i = 0.0; i < width; i = i + 40.0) {
for (var j = 0.0; j < height; j = j + 40.0) {
stroke(203,81,142);
fill(lerpColor(from, to, (i + j) / (width + height)));
rect(i, j, 40.0, 40.0);
}

}
}