randomColor.js 204 B

12345678910
  1. /**
  2. *
  3. * @desc 随机生成颜色
  4. * @return {String}
  5. */
  6. function randomColor() {
  7. return '#' + ('00000' + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6);
  8. }
  9. module.exports = randomColor;