颜色随机生成脚本:randomColor.js

bgn4 9年前

randomColor.js 是生成随机颜色的小脚本。

颜色随机生成脚本:randomColor.js

支持的选项:

  • Hue

  • Luminosity

  • Count

  • Format

代码示例:

// Returns a hex code for an attractive color  randomColor();   // Returns an array of ten green colors  randomColor({     count: 10,     hue: 'green'  });  // Returns a hex code for a light blue  randomColor({     luminosity: 'light',     hue: 'blue'  });  // Returns a hex code for a 'truly random' color  randomColor({     luminosity: 'random',     hue: 'random'  });  // Returns a bright color in RGB  randomColor({     luminosity: 'bright',     format: 'rgb' // e.g. 'rgb(225,200,20)'  });

项目主页:http://www.open-open.com/lib/view/home/1430832317648