import { randomColors } from "https://deno.land/x/chalkpot_random_colors@1.0.0/random_colors.ts";
Example
const colors = randomColors({
hue: [20, 60],
saturation: [10, 80],
lightness: [40, 100],
count: 2
});
console.log(colors); // [[199.29..., 255, 255], [113.04..., 255, 183.30...]]