This 'project' utilizes javascript, HTML and CSS.
The next bit of code is from the project's utils.js file:
function getRandomColor() {
var colors = ['red', 'blue', 'pink', 'orange', 'green'];
return colors[Math.floor(Math.random() * colors.length)];
}That's about all there is for now.