std/fmt
#deno_std
std/fmt/colors.ts
文字に色をつけることが出来ます。
code:typescript
import * as colors from "https://deno.land/std@v0.36.0/fmt/colors.ts";
console.log(colors.blue('hello'));
console.log(colors.underline('world'));