mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
b5f6f97234
Original: 9b8923844f
28 lines
813 B
Markdown
28 lines
813 B
Markdown
# colors
|
|
|
|
Is a basic console color library intended for [Deno](https://deno.land/). It is
|
|
inspired by packages like [chalk](https://www.npmjs.com/package/chalk) and
|
|
[colors](https://www.npmjs.com/package/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:
|
|
|
|
```ts
|
|
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 the Deno authors. All rights reserved. MIT license.
|