mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
.. | ||
example.ts | ||
main_test.ts | ||
main.ts | ||
README.md | ||
styles.ts |
colors
Is a basic console color library intended for Deno. It is inspired by packages like chalk and colors on npm.
Usage
The main modules exports a single function name color
which is a function that
provides chaining to stack colors. Basic usage looks like this:
import { color } from "https://deno.land/x/colors/main.ts";
console.log(color.bgBlue.red.bold("Hello world!"));
TODO
-
Currently, it just assumes it is running in an environment that supports ANSI escape code terminal coloring. It should actually detect, specifically windows and adjust properly.
-
Test coverage is very basic at the moment.
Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.