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

if (import.meta.main) {
  console.log(bgBlue(italic(red(bold("Hello world!")))));
}