block by curran dd73d3d8925cdf50df86

Picking N Colors Automatically

Full Screen

An experiment in automatically picking N distinct colors for visualizing N distinct categories.

The LAB Color Space was designed with perception in mind. This program has a background that has a fixed L (lightness), and varies the A and B opposing color components along X and Y.

LAB is supposed to be perceptually uniform, meaning that distances in LAB space should correspond to perceptual distances. The idea with this experiment is that in order to pick a set of colors that are distinct and perceptually equidistant, we can pick colors that are equidistant in LAB space. A simple approach to doing this is to select colors along a circle in (A, B) space with a fixed L. This is what the program is doing, varying the number of colors from 1 to 20.

If you want to try this out in your visualizations, copy and paste the generateColors function.

index.html