randomcolor (original) (raw)

Random Color

A tiny script for generating attractive random colors. See the demo for an explanation and some samples. randomColor has been ported to C#, C++, Go, Haskell, Mathematica, PHP, Python, Swift, Perl6, Objective-C, Java, R, Reason and Rust.

Demo

To use randomColor in the browser, download the latest minified version of randomColor and include it on your page. Then call the script:

var color = randomColor(); 

To use randomColor on the server with node.js, install randomColor from npm then call the script:

var randomColor = require('randomcolor'); 

var color = randomColor(); 

Options

You can pass an options object to influence the type of color it produces. The options object accepts the following properties:

hue – Controls the hue of the generated color. You can pass a string representing a color name: red, orange, yellow, green, blue, purple, pink and monochrome are currently supported. If you pass a hexidecimal color string such as #00FFFF, randomColor will extract its hue value and use that to generate colors.

luminosity – Controls the luminosity of the generated color. You can specify a string containing bright, light or dark.

count – An integer which specifies the number of colors to generate.

seed - An integer or string which when passed will cause randomColor to return the same color each time.

format – A string which specifies the format of the generated color. Possible values are rgb, rgba, rgbArray, hsl, hsla, hslArray and hex (default).

alpha – A decimal between 0 and 1. Only relevant when using a format with an alpha channel (rgba and hsla). Defaults to a random value.

Examples

randomColor(); 

randomColor({

   count: 10,

   hue: 'green'

});

randomColor({

   luminosity: 'light',

   hue: 'blue'

});

randomColor({

   luminosity: 'random',

   hue: 'random'

});

randomColor({

   luminosity: 'bright',

   format: 'rgb' 

});

randomColor({

   luminosity: 'dark',

   format: 'rgba' 

});

randomColor({

   luminosity: 'dark',

   format: 'rgba',

   alpha: 0.5 

});

randomColor({

   luminosity: 'light',

   format: 'hsla' 

});

To do

More generally, it might be a good idea to consider using other color models.

  1. Use this on the demohttp://jsfiddle.net/dpLp318f/ https://www.vis4.net/blog/posts/avoid-equidistant-hsv-colors/ https://www.vis4.net/blog/posts/mastering-multi-hued-color-scales/
  2. When returning an array of multiple colors, try to make each color as distinct as possible. Make sure each color is distinct to its neighbours.
  3. Improve attractive dark color generation, currently they're a touch murky.
  4. Improve the color dictionary
  1. Think about how to return seeds.
  2. Think about adding feature to return complementary & contrasting colors, as well as color triads, tetrads etc. Other libraries might already do this better though.
  3. Think about adding a scheme options which would return a dominant color, as well as secondary, tertiary color and primary and secondary text colors. This might be a bad idea.
  4. Add a nice visualization of the 'attractive color space' to the demo https://www.youtube.com/watch?v=x0-qoXOCOow
  5. Add a feature to return random colors close to a provided hex

In use

Did you use randomColor.js for something? Tell me about it.