🦕 Deno ansi_styles
ANSI escape codes for styling strings in the terminal
## UsagePorted from ansi-styles <3
import { styles } from "https://deno.land/x/ansi_styles@1.0.0/mod.ts";
console.log(`${styles.green.open}Hello world!${styles.green.close}`);
API
Each style has an open
and close
property.
Styles
Modifiers
reset
bold
dim
italic
(Not widely supported)underline
inverse
hidden
strikethrough
(Not widely supported)
Colors
black
red
green
yellow
blue
magenta
cyan
white
blackBright
(alias:gray
,grey
)redBright
greenBright
yellowBright
blueBright
magentaBright
cyanBright
whiteBright
Background colors
bgBlack
bgRed
bgGreen
bgYellow
bgBlue
bgMagenta
bgCyan
bgWhite
bgBlackBright
(alias:bgGray
,bgGrey
)bgRedBright
bgGreenBright
bgYellowBright
bgBlueBright
bgMagentaBright
bgCyanBright
bgWhiteBright
Advanced usage
By default, you get a map of styles, but the styles are also available as groups. They are non-enumerable so they don't show up unless you access them explicitly. This makes it easier to expose only a subset in a higher-level module.
style.modifier
style.color
style.bgColor
Example
console.log(style.color.green.open);
Raw escape codes (i.e. without the CSI escape prefix \u001B[
and render mode postfix m
) are available under style.codes
, which returns a Map
with the open codes as keys and close codes as values.
Example
console.log(style.codes.get(36));
//=> 39