没啥好说的,直接上代码
export default class ColorUtil {
constructor(){
}
static randomFF(){
return Math.round(Math.random()*255).toString(16)
}
static randomClor(){
return '#'+ColorUtil.randomFF()+ColorUtil.randomFF()+ColorUtil.randomFF()
}
}