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

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