parfum/app/Helpers/ColorHelpers.php
2025-11-11 15:35:29 +07:00

20 lines
374 B
PHP

<?php
function randomColors(int $count, float $alpha = 0.2): array
{
$colors = [];
for ($i = 0; $i < $count; $i++) {
$r = rand(0, 255);
$g = rand(0, 255);
$b = rand(0, 255);
$colors[] = "rgba($r, $g, $b, $alpha)";
}
return $colors;
}
function randomBorderColors(int $count): array
{
return randomColors($count, 1.0);
}