An open API service indexing awesome lists of open source software.

https://github.com/gnlow/blue

Simple wrapper for std/fmt/colors
https://github.com/gnlow/blue

color console deno terminal

Last synced: about 2 months ago
JSON representation

Simple wrapper for std/fmt/colors

Awesome Lists containing this project

README

          

# blue
Simple wrapper for std/fmt/colors.
```
b: bold
i: italic
c(color): text color
bg(color): background color
```
```ts
import {
pipe as $, b, i, c, bg,
pink, black, white
} from "https://denopkg.com/gnlow/blue/mod.ts"

console.log(
$(c(pink), bg(black))
`Hello,`,
$(c(black), bg(white), b, i)
`World!`
)
```