import { colors } from "https://dotland.deno.dev/x/wmill@v1.354.0/deps.ts";
Chainable colors module.
import { colors } from "./mod.ts";
console.log(colors.blue.bgRed.bold('Welcome to Deno.Land!'));
If invoked as method, a new Ansi instance will be returned.
import { Colors, colors } from "./mod.ts";
const myColors: Colors = colors();
console.log(myColors.blue.bgRed.bold('Welcome to Deno.Land!'));