import { similarColor } from "https://deno.land/x/chalkpot_random_colors@1.0.0/mod.ts";
Example
const someBlueColor = similarColor([0, 0, 255], { deviation: 20 });
console.log(someBlueColor); // [1.19..., 0, 255]
Parameters
A color deviation is an RGB component in the numeric range 0
to 255
,
the range that will be added to the original color range.