Appearance
function randomColor() { var r = Math.floor(Math.random() * 256); var g = Math.floor(Math.random() * 256); var b = Math.floor(Math.random() * 256); return `rgb(${r}, ${g}, ${b})`; }
function randomColor() { return '#' + Math.random().toString(16).padStart(6, '0'); }