random-color

Generate random colors based on the golden ratio, which are more visually pleasing.

MIT 7 个版本
安装
npm install random-color
yarn add random-color
pnpm add random-color
bun add random-color
README

random-color

Generate random colors based on the golden ratio, which are more visually pleasing.

MIT License

This module is deeply inspired by Martin Ankerl's blog post.

The generated colors are more visually pleasing together than a simple random color generator because they are computed by moving around the color wheel in increments of the golden ratio. By default, the generated colors can used as a background for legible black text, but the color generator can be customized for other uses.

Install

$ npm install --save random-color

Usage

var randomColor = require('random-color');

// API
// - randomColor([saturation, value]);

By default, generate a color with saturation = 0.5 and value = 0.95.

Returns color object so you can convert the color to any color-formats easily.

var color = randomColor();

// ref: https://github.com/harthur/color
color.hexString(); // => '#d67118'
color.rgbString(); // => 'rgb(110,52,164)'

Optionally specify saturation and value:

var color = randomColor(0.99, 0.99);

var color = randomColor(0.3, 0.99);

Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please create an issue.

版本列表
2.0.0 2016-03-22
1.0.1 2016-04-26
1.0.0 2016-04-18
0.0.2 2016-04-10
0.0.1 2014-08-15
0.0.1-security 2016-03-23
0.0.0 2013-06-17