import { invertColor } from "https://deno.land/x/chalkpot_color@1.1.0/color_effects/mod.ts";
Example
const black = new Color(false, 0, 0, 0);
const white = invertColor(black);
console.log(white.components); // [255, 255, 255]
x/chalkpot_color/color_effects/mod.ts>invertColor
import { invertColor } from "https://deno.land/x/chalkpot_color@1.1.0/color_effects/mod.ts";
const black = new Color(false, 0, 0, 0);
const white = invertColor(black);
console.log(white.components); // [255, 255, 255]