xxxxxxxxxx
var ssiizzee = 0;
var ccoolloorr = ['MediumTurquoise','MediumAquamarine','MediumSlateBlue'];
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(120);
textAlign(CENTER);
if (1<ssiizzee<50) ssiizzee = ssiizzee + 0.5;
if (ssiizzee>50) ssiizzee = random([50, 75]);
textSize(ssiizzee);
textFont('Georgia');
noStroke();
fill(random(ccoolloorr));
text('ⴷⵣⴰⵢⴻⵔ', 150, 150);
text('Հայաստան', 300, 275);
text('Беларусь', 600, 550);
text('འབྲུག་ཡུལ', 150, 500);
text('កម្ពុជា', 450, 75);
text('ኤርትራ', 675, 175);
text('საქართველო', 900, 300);
text('Ελλάς', 900, 475);
text('ປະເທດລາວ', 1050, 75);
text('ᠮᠤᠩᠭᠤᠯ ᠤᠯᠤᠰ', 1000, 600);
text('မြန်မာ', 1250, 450);
text('ไทย', 1275, 675);
text('বাংলাদেশ', 650, 700);
text('ישראל', 200, 675);
text('ދިވެހިރާއްޖެ', 1200, 200);
text('المملكة العربية السعودية', 450, 400);
}