Inscription #57201016#57,201,016htmlInscription #27715406#27,715,406htmlInscription #26745803#26,745,803htmlInscription #26745802#26,745,802html#26,735,548jsInscription #26723019#26,723,019htmlInscription #26723018#26,723,018htmlInscription #25937947#25,937,947htmlInscription #25436799#25,436,799htmlInscription #25429743#25,429,743htmlInscription #25429742#25,429,742htmlInscription #25429582#25,429,582htmlInscription #25228888#25,228,888html#25,228,291jsInscription #24772417#24,772,417html#23,197,160js#23,192,401js#23,171,644js#23,159,005js#23,138,506jsInscription #22684791#22,684,791htmlInscription #22684747#22,684,747htmlInscription #22237045#22,237,045htmlInscription #20929797#20,929,797htmlInscription #20427256#20,427,256htmlInscription #20061090#20,061,090htmlInscription #19783366#19,783,366htmlInscription #19629893#19,629,893htmlInscription #19568311#19,568,311htmlInscription #19555798#19,555,798htmlInscription #19554671#19,554,671htmlInscription #19530346#19,530,346htmlInscription #19512095#19,512,095htmlInscription #19447652#19,447,652htmlInscription #19442426#19,442,426htmlInscription #19438962#19,438,962htmlInscription #19068709#19,068,709htmlInscription #19065261#19,065,261htmlInscription #19060133#19,060,133htmlInscription #19058195#19,058,195html#19,056,602js#19,027,942js#19,026,701jsInscription #18490091#18,490,091htmlInscription #18488556#18,488,556htmlInscription #18487355#18,487,355htmlInscription #18444515#18,444,515htmlInscription #18442788#18,442,788htmlInscription #18441653#18,441,653html//No Recursion by Lemonhaze //Use this p5js code to generate the artwork by yourself via https://editor.p5js.org/ or other preferred method. // Set canvas size let canvasWidth = 800; let canvasHeight = 800; let x = 0; let y = 0; let spacing = 8; let colors = [ [255, 209, 220], // Pastel Pink [203, 255, 181], // Pastel Green [203, 230, 255], // Pastel Blue [255, 245, 154], // Pastel Yellow [245, 154, 255], // Pastel Purple [154, 235, 255] // Pastel Aqua ]; let colorIndices = [0, 2, 2]; let seed = 0; function setup() { createCanvas(canvasWidth, canvasHeight); background(0); stroke(255); randomSeed(seed); // Set the random seed } function draw() { // Draw a line at the current position strokeWeight(2); let currentColorIndex = colorIndices[floor(random(colorIndices.length))]; let currentColor = colors[currentColorIndex]; stroke(currentColor[0], currentColor[1], currentColor[2]); if (random(1) < 0.5) { line(x, y, x + spacing, y + spacing); } else { line(x, y + spacing, x + spacing, y); } // Move to the next position x += spacing; // Reset x and move to the next row if (x > width) { x = 0; y += spacing; } // Reset y and stop the pattern once the canvas is filled if (y > height) { noLoop(); } } function windowResized() { resizeCanvas(windowWidth, windowHeight); background(0); } //No Recursion by Lemonhaze#18,282,112textInscription #18274179#18,274,179htmlInscription #18272313#18,272,313htmlInscription #18212340#18,212,340htmlInscription #18208913#18,208,913htmlInscription #18192583#18,192,583htmlInscription #18183731#18,183,731htmlInscription #18130925#18,130,925htmlInscription #18120969#18,120,969htmlInscription #18111290#18,111,290htmlInscription #18084104#18,084,104html