xxxxxxxxxx
var text_list, t;
var text_lists, s;
var color_list, c;
function setup() {
createCanvas(400, 400);
text_list = ["Sapphire","Mystic", "Midnight", "Celestial", "Blossoming", "Midnight", "Blossoming", "Oceanic", "Wildflower", "Velvet"];
t = random(text_list);
text_lists = ["Cascade","Whisper", "Oasis", "Star", "Spring", "Magic", "Spring", "Wave", "Meadow", "Night"];
s = random(text_lists);
color_list = [color(176, 161, 186), color(165, 181, 191), color(171, 200, 199), color(184, 226, 200), color(191, 240, 212)]
c = random(color_list);
textAlign(CENTER);
}
function draw() {
background(c);
textSize(15);
text('YOUR STAGE NAME IS...', 200, 130)
text(t,165,200);
text(s, 235, 200);
}
function keyPressed(){
if(keyCode == ENTER){
t = random(text_list);
s = random(text_lists);
}
}