我正在寻找一种简单的算法来生成大量随机,美观的颜色。所以没有疯狂的霓虹色,颜色让人想起粪便等等。
我找到了解决这个问题的方法,但它们依赖于替代调色板而不是RGB。 我宁愿只使用直RGB而不是来回映射。这些其他解决方案最多也只能生成32个左右的令人愉悦的随机颜色。
任何想法都会很棒。
答案 0 :(得分:414)
您可以将随机颜色的RGB值与常量颜色的RGB值进行平均:
(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;
}
将随机颜色与白色(255,255,255)混合可通过增加亮度同时保持原始色调的色调来创建中性色调。这些随机生成的粉彩通常很好地结合在一起,特别是大量的。
以下是使用上述方法生成的一些柔和色彩:
您还可以将随机颜色与常量柔和色调混合,从而产生一组有色的中性色。例如,使用浅蓝色会创建如下颜色:
更进一步,您可以在生成器中添加启发式算法,考虑补色或阴影级别,但这一切都取决于您想要使用随机颜色实现的印象。
一些额外的资源:
答案 1 :(得分:82)
我会使用色轮并给出一个随机位置,你可以添加黄金角度(137.5度)
http://en.wikipedia.org/wiki/Golden_angle
每次不重叠时都会得到不同的颜色。
调整色轮的亮度,您也可以得到不同的亮/暗色组合。
我发现这篇博文很好地解释了使用黄金比例的问题和解决方案。
http://martin.ankerl.com/2009/12/09/how-to-create-random-colors-programmatically/
更新:我刚刚找到了另一种方法:
它被称为RYB(红色,黄色,蓝色)方法,它在本文中描述:
http://threekings.tk/mirror/ryb_TR.pdf
as“Paint Inspired Color Compositing”。
该算法生成颜色,并选择每种新颜色以最大化其与之前选择的欧几里德距离。
在这里你可以在javascript中找到一个很好的实现:
http://afriggeri.github.com/RYB/
更新2:
Sciences Po Medialb刚刚发布了一款名为“I want Hue”的工具,可为数据科学家生成调色板。使用不同的颜色空间并使用k-means聚类或力矢量生成调色板(排斥图)这些方法的结果非常好,它们在其网页中显示了理论和实现。
答案 2 :(得分:23)
在javascript中:
function pastelColors(){
var r = (Math.round(Math.random()* 127) + 127).toString(16);
var g = (Math.round(Math.random()* 127) + 127).toString(16);
var b = (Math.round(Math.random()* 127) + 127).toString(16);
return '#' + r + g + b;
}
在这里看到了这个想法:http://blog.functionalfun.net/2008/07/random-pastel-colour-generator.html
答案 3 :(得分:10)
转换为另一个调色板是一种非常优越的方法。他们这样做是有原因的:其他调色板是“感性的” - 也就是说,它们将类似的看似颜色放在一起,调整一个变量会以可预测的方式改变颜色。对于RGB来说,这一切都不是真的,在这些颜色之间并没有“很好地融合在一起”的明显关系。
答案 4 :(得分:4)
一个不容忽视的答案,因为它简单而且具有优势,是对现实生活照片和绘画的抽样。在现代艺术照片,cezanne,梵高,monnet,照片的缩略图上随机选择颜色随机颜色......优点是你可以按主题获取颜色,并且它们是有机颜色。只需在文件夹中放置20 - 30张照片,并随机随机抽样。
转换为HSV值是基于心理调色板的广泛代码算法。 hsv更容易随机化。
答案 5 :(得分:4)
在php中:
function pastelColors() {
$r = dechex(round(((float) rand() / (float) getrandmax()) * 127) + 127);
$g = dechex(round(((float) rand() / (float) getrandmax()) * 127) + 127);
$b = dechex(round(((float) rand() / (float) getrandmax()) * 127) + 127);
return "#" . $r . $g . $b;
}
答案 6 :(得分:4)
我使用TriadMixing和CIE94成功避免了类似的颜色。下图使用红色,黄色和白色的输入颜色。请参阅here。
答案 7 :(得分:3)
这是C#中快速而肮脏的颜色生成器(使用此article中描述的'RYB方法')。这是JavaScript的重写。
使用:强>
List<Color> ColorPalette = ColorGenerator.Generate(30).ToList();
前两种颜色往往是白色和黑色。我经常像这样跳过它们(使用Linq):
List<Color> ColorsPalette = ColorGenerator
.Generate(30)
.Skip(2) // skip white and black
.ToList();
<强>实施强>
public static class ColorGenerator
{
// RYB color space
private static class RYB
{
private static readonly double[] White = { 1, 1, 1 };
private static readonly double[] Red = { 1, 0, 0 };
private static readonly double[] Yellow = { 1, 1, 0 };
private static readonly double[] Blue = { 0.163, 0.373, 0.6 };
private static readonly double[] Violet = { 0.5, 0, 0.5 };
private static readonly double[] Green = { 0, 0.66, 0.2 };
private static readonly double[] Orange = { 1, 0.5, 0 };
private static readonly double[] Black = { 0.2, 0.094, 0.0 };
public static double[] ToRgb(double r, double y, double b)
{
var rgb = new double[3];
for (int i = 0; i < 3; i++)
{
rgb[i] = White[i] * (1.0 - r) * (1.0 - b) * (1.0 - y) +
Red[i] * r * (1.0 - b) * (1.0 - y) +
Blue[i] * (1.0 - r) * b * (1.0 - y) +
Violet[i] * r * b * (1.0 - y) +
Yellow[i] * (1.0 - r) * (1.0 - b) * y +
Orange[i] * r * (1.0 - b) * y +
Green[i] * (1.0 - r) * b * y +
Black[i] * r * b * y;
}
return rgb;
}
}
private class Points : IEnumerable<double[]>
{
private readonly int pointsCount;
private double[] picked;
private int pickedCount;
private readonly List<double[]> points = new List<double[]>();
public Points(int count)
{
pointsCount = count;
}
private void Generate()
{
points.Clear();
var numBase = (int)Math.Ceiling(Math.Pow(pointsCount, 1.0 / 3.0));
var ceil = (int)Math.Pow(numBase, 3.0);
for (int i = 0; i < ceil; i++)
{
points.Add(new[]
{
Math.Floor(i/(double)(numBase*numBase))/ (numBase - 1.0),
Math.Floor((i/(double)numBase) % numBase)/ (numBase - 1.0),
Math.Floor((double)(i % numBase))/ (numBase - 1.0),
});
}
}
private double Distance(double[] p1)
{
double distance = 0;
for (int i = 0; i < 3; i++)
{
distance += Math.Pow(p1[i] - picked[i], 2.0);
}
return distance;
}
private double[] Pick()
{
if (picked == null)
{
picked = points[0];
points.RemoveAt(0);
pickedCount = 1;
return picked;
}
var d1 = Distance(points[0]);
int i1 = 0, i2 = 0;
foreach (var point in points)
{
var d2 = Distance(point);
if (d1 < d2)
{
i1 = i2;
d1 = d2;
}
i2 += 1;
}
var pick = points[i1];
points.RemoveAt(i1);
for (int i = 0; i < 3; i++)
{
picked[i] = (pickedCount * picked[i] + pick[i]) / (pickedCount + 1.0);
}
pickedCount += 1;
return pick;
}
public IEnumerator<double[]> GetEnumerator()
{
Generate();
for (int i = 0; i < pointsCount; i++)
{
yield return Pick();
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
public static IEnumerable<Color> Generate(int numOfColors)
{
var points = new Points(numOfColors);
foreach (var point in points)
{
var rgb = RYB.ToRgb(point[0], point[1], point[2]);
yield return Color.FromArgb(
(int)Math.Floor(255 * rgb[0]),
(int)Math.Floor(255 * rgb[1]),
(int)Math.Floor(255 * rgb[2]));
}
}
}
答案 8 :(得分:3)
David Crow在R双线班车中的方法:
GetRandomColours <- function(num.of.colours, color.to.mix=c(1,1,1)) {
return(rgb((matrix(runif(num.of.colours*3), nrow=num.of.colours)*color.to.mix)/2))
}
答案 9 :(得分:2)
function fnGetRandomColour(iDarkLuma, iLightLuma)
{
for (var i=0;i<20;i++)
{
var sColour = ('ffffff' + Math.floor(Math.random() * 0xFFFFFF).toString(16)).substr(-6);
var rgb = parseInt(sColour, 16); // convert rrggbb to decimal
var r = (rgb >> 16) & 0xff; // extract red
var g = (rgb >> 8) & 0xff; // extract green
var b = (rgb >> 0) & 0xff; // extract blue
var iLuma = 0.2126 * r + 0.7152 * g + 0.0722 * b; // per ITU-R BT.709
if (iLuma > iDarkLuma && iLuma < iLightLuma) return sColour;
}
return sColour;
}
对于粉彩,传递更高的亮度暗/亮整数 - 即fnGetRandomColour(120,250)
积分:所有积分 http://paulirish.com/2009/random-hex-color-code-snippets/ stackoverflow.com/questions/12043187/how-to-check-if-hex-color-is-too-black
答案 10 :(得分:1)
generateRandomComplementaryColor = function(r, g, b){
//--- JavaScript code
var red = Math.floor((Math.random() * 256));
var green = Math.floor((Math.random() * 256));
var blue = Math.floor((Math.random() * 256));
//---
//--- Extra check for Internet Explorers, its Math.random is not random enough.
if(!/MSIE 9/i.test(navigator.userAgent) && !/MSIE 10/i.test(navigator.userAgent) && !/rv:11.0/i.test(navigator.userAgent)){
red = Math.floor((('0.' + window.crypto.getRandomValues(new Uint32Array(1))[0]) * 256));
green = Math.floor((('0.' + window.crypto.getRandomValues(new Uint32Array(1))[0]) * 256));
blue = Math.floor((('0.' + window.crypto.getRandomValues(new Uint32Array(1))[0]) * 256));
};
//---
//--- nodejs code
/*
crypto = Npm.require('crypto');
red = Math.floor((parseInt(crypto.randomBytes(8).toString('hex'), 16)) * 1.0e-19 * 256);
green = Math.floor((parseInt(crypto.randomBytes(8).toString('hex'), 16)) * 1.0e-19 * 256);
blue = Math.floor((parseInt(crypto.randomBytes(8).toString('hex'), 16)) * 1.0e-19 * 256);
*/
//---
red = (red + r)/2;
green = (green + g)/2;
blue = (blue + b)/2;
return 'rgb(' + Math.floor(red) + ', ' + Math.floor(green) + ', ' + Math.floor(blue) + ')';
}
使用以下方式运行该功能:
generateRandomComplementaryColor(240, 240, 240);
答案 11 :(得分:0)
你可以让它们在一定的亮度范围内。这将控制“霓虹”颜色的数量。例如,如果“亮度”
brightness = sqrt(R^2+G^2+B^2)
在一定的上限内,它会有一种褪色,浅色。相反,如果它在某个低限内,它会更暗。这将消除任何疯狂的,出色的颜色,如果你选择了一个非常高或非常低的界限,它们都会非常接近白色或黑色。
答案 12 :(得分:0)
在算法上很难得到你想要的东西 - 人们长期以来一直在研究色彩理论,他们甚至不知道所有的规则。
但是,有一些一些规则可用于剔除不良颜色组合(即,存在冲突颜色和选择补色的规则)。
我建议您访问图书馆的艺术部分并查看有关颜色理论的书籍,以便在尝试制作之前更好地了解什么是好颜色 - 看起来您可能甚至不知道为什么某些组合有效其他人没有。
- 亚当
答案 13 :(得分:0)
我强烈推荐使用CG HSVtoRGB着色器功能,它们非常棒......它可以让你像画家一样自然控制色彩,而不是像crt显示器那样控制,你不应该这样!
这是一种制作1浮点值的方法。即灰色,进入1000 ds的颜色,亮度和饱和度等组合:
int rand = a global color randomizer that you can control by script/ by a crossfader etc.
float h = perlin(grey,23.3*rand)
float s = perlin(grey,54,4*rand)
float v = perlin(grey,12.6*rand)
Return float4 HSVtoRGB(h,s,v);
结果是令人敬畏的颜色随机化!它不自然,但它使用自然的色彩渐变,它看起来有机和可控制的irridescent /粉彩参数。
对于perlin,你可以使用这个函数,它是perlin的快速曲折版本。
function zig ( xx : float ): float{ //lfo nz -1,1
xx= xx+32;
var x0 = Mathf.Floor(xx);
var x1 = x0+1;
var v0 = (Mathf.Sin (x0*.014686)*31718.927)%1;
var v1 = (Mathf.Sin (x1*.014686)*31718.927)%1;
return Mathf.Lerp( v0 , v1 , (xx)%1 )*2-1;
}
答案 14 :(得分:0)
这是我为我制作的网站撰写的内容。它将为类.flat-color-gen
的任何div自动生成随机平面背景颜色。只有在向页面添加css时才需要Jquery;它的主要部分不需要它,这是generateFlatColorWithOrder()
方法。
(function($) {
function generateFlatColorWithOrder(num, rr, rg, rb) {
var colorBase = 256;
var red = 0;
var green = 0;
var blue = 0;
num = Math.round(num);
num = num + 1;
if (num != null) {
red = (num*rr) % 256;
green = (num*rg) % 256;
blue = (num*rb) % 256;
}
var redString = Math.round((red + colorBase) / 2).toString();
var greenString = Math.round((green + colorBase) / 2).toString();
var blueString = Math.round((blue + colorBase) / 2).toString();
return "rgb("+redString+", "+greenString+", "+blueString+")";
//return '#' + redString + greenString + blueString;
}
function generateRandomFlatColor() {
return generateFlatColorWithOrder(Math.round(Math.random()*127));
}
var rr = Math.round(Math.random()*1000);
var rg = Math.round(Math.random()*1000);
var rb = Math.round(Math.random()*1000);
console.log("random red: "+ rr);
console.log("random green: "+ rg);
console.log("random blue: "+ rb);
console.log("----------------------------------------------------");
$('.flat-color-gen').each(function(i, obj) {
console.log(generateFlatColorWithOrder(i));
$(this).css("background-color",generateFlatColorWithOrder(i, rr, rg, rb).toString());
});
})(window.jQuery);
答案 15 :(得分:0)
用javascript编写。
它会生成视觉不同颜色的调色板。
distinct-colors具有高度可配置性: