Generating Random Eye Colors

Hi, I’m looking to generate a random linear color value, that is accurate to that of a human eye.

Just generating a random color would work great, if I could filter out the purples, solid reds, etc.

Cheers,
Alfie

So, two ways… One, random float in range to R, G and B. So three of them. that will create different colors (even fake ones)

The other way, is to get the exact RGB values that you want to show, and add THOSE to an array. OR (probably a bit easier) Just grab a bunch of LinearColor variables with the exact colors you want to show, name them the correct colors, then add THOSE to an array, randomly picking an index out.