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

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