我需要为系统中的所有用户生成随机颜色。诀窍是 2 个用户不能有非常相似的颜色,他们需要是可区分的。我有代码在给定原始混合颜色的情况下生成随机颜色,但找不到仅使用 PHP 生成具有高对比度的随机颜色的方法
public static function generateRandomColor($rgb)
{
$red = rand(1, 256);
$green = rand(1, 256);
$blue = rand(1, 256);
if (! empty($rgb))
{
$red = ($red + $rgb['red']) / 2;
$green = ($green + $rgb['green']) / 2;
$blue = ($blue + $rgb['blue']) / 2;
}
$color = "rgb({$red}, {$green}, {$blue})";
return $color;
}
然后我有一个循环:
$colorsArr = array();
$mixed = array('red' => 255, 'green' => 255, 'blue' => 255);
for($i = 0; $i < count($users); $i++)
{
$color = generateRandomColor($mixed);
$colorsArr .= '<div style="width:25px; height: 25px; background-color: ' . $color . '"></div>';
}
现在这会生成颜色,但有些颜色看起来很像。目标是为每个用户提供独特的颜色。任何帮助表示感谢。
注意:我不想为 500 个用户硬编码颜色