summaryrefslogtreecommitdiff
path: root/std/examples/colors.ts
blob: e02c907467a411c7c6f99d0b59034e93dd6bf1ab (plain)
1
2
3
4
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { bgBlue, red, bold, italic } from "../fmt/colors.ts";

console.log(bgBlue(italic(red(bold("Hello world!")))));