drkrol,
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="https://randomcolor.llllll.li/randomColor.js"></script>
<style type="text/css">
.swatch {
width: 3em;
height: 3em;
border-radius: 50%;
display: block;
float: left;
}
</style>
<title></title>
<script>
window.onload=function(){
[].forEach.call( document.querySelectorAll('.swatch'), function(el) {
el.style.backgroundColor = randomColor();
});
}
</script>
</head>
<body>
<span class="swatch" hue="pink" count="18">123</span>
<span class="swatch" hue="pink" count="18">123</span>
<span class="swatch" hue="pink" count="18">123</span>
</body>
</html>