blob: 6f03355c6bcf2fae06391a6cf14df3c1fcbe11a9 (
plain)
1
2
3
4
|
// Copyright 2018-2019 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!")))));
|