in source/web_site/js/dash.js [60:66]
var dynamicColors = function(i) {
if (i >= 0 && i < colors.length) return colors[i];
var r = Math.floor(Math.random() * 255);
var g = Math.floor(Math.random() * 255);
var b = Math.floor(Math.random() * 255);
return "rgb(" + r + "," + g + "," + b + ")";
}