// 随机十六进制代码, eg: #ff0000
function randomColor(){
return '#'+Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0');
}