// * 获取随机16进制颜色
const getRandomColor = () =>
'#' + Math.random().toString(16).substring(2,8).padEnd(6,'0');
const getRandomRGB = () => {
let c = () => parseInt(Math.random()*255);
return `rgb(${c()},${c()},${c()})`
}
const getRandomRGBA = () => {
let c = () => parseInt(Math.random()*255);
let a = () => Math.random().toFixed(1);
return `rgba(${c()},${c()},${c()},${a()})`
}