vote up 13 vote down star
12

I'm looking for a simple algorithm to generate a large number of random, aesthetically pleasing colors. So no crazy neon colors, colors reminiscent of feces, etc.

I've found solutions to this problem but they rely on alternative color palettes than RGB. I would rather just use straight RGB than mapping back and forth. These other solutions also can at most generate only 32 or so pleasing random colors.

Any idea's would be great.

Thanks, Brian Gianforcaro

flag

79% accept rate

7 Answers

vote up 26 vote down check

You could average the RGB values of random colors with those of a constant color:

(example in Java)

public Color generateRandomColor(Color mix) {
    Random random = new Random();
    int red = random.nextInt(256);
    int green = random.nextInt(256);
    int blue = random.nextInt(256);

    // mix the color
    if (mix != null) {
        red = (red + mix.getRed()) / 2;
        green = (green + mix.getGreen()) / 2;
        blue = (blue + mix.getBlue()) / 2;
    }

    Color color = new Color(red, green, blue);
    return color;
}


Mixing random colors with white (255, 255, 255) creates neutral pastels by increasing the lightness while keeping the hue of the original color. These randomly generated pastels usually go well together, especially in large numbers.

Here are some pastel colors generated using the above method:

http://i36.tinypic.com/2psrsbl.jpg


You could also mix the random color with a constant pastel, which results in a tinted set of neutral colors. For example, using a light blue creates colors like these:

http://i33.tinypic.com/992h75.jpg


Going further, you could add heuristics to your generator that take into account complementary colors or levels of shading, but it all depends on the impression you want to achieve with your random colors.

Some additional resources:

link|flag
+1 for 'ran the code' – David Dean Feb 22 at 9:45
That's pretty impressive – Michael Haren Jun 7 at 2:02
Exactly what i'm looking for. – iferrorthrownewbrick Oct 22 at 0:52
vote up 0 vote down

you could have them be within a certain brightness. that would control the ammount of "neon" colors a bit. for instance, if the "brightness"

brightness = sqrt(R^2+G^2+B^2)

was within a certain high bound, it would have a washed out, light color to it. Conversely, if it was within a certain low bound, it would be darker. This would eliminate any crazy, standout colors and if you chose a bound really high or really low, they would all be fairly close to either white or black.

link|flag
vote up 0 vote down

There is a pretty cool creation by Eric Meyer, which will blend 2 endpoint colors in N even steps http://meyerweb.com/eric/tools/color-blend/, this is under a CC License, and could be a good starting point.

link|flag
vote up 0 vote down

It's going to be hard to get what you want algorithmically - people have been studying color theory for a long time, and they don't even know all the rules.

However, there are some rules which you can use to cull bad color combinations (ie, there are rules for clashing colors, and choosing complementary colors).

I'd recommend you visit your library's art section and check out books on color theory to gain a better understanding of what is a good color before you try to make one - it appears you might not even know why certain combinations work and others don't.

-Adam

link|flag
vote up 0 vote down

might want to check out something like color jack which was intended for generating website color templates

link|flag
vote up 0 vote down

I'd make a website that generates a random color upon each visit. Have a "this color rocks" / "this color sucks" vote.

Then sort by the ratio of votes.

link|flag
vote up 0 vote down

Converting to another palette is a far superior way to do this. There's a reason they do that: other palettes are 'perceptual' - that is, they put similar seeming colors close together, and adjusting one variable changes the color in a predictable manner. None of that is true for RGB, where there's no obvious relationship between colors that "go well together".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.