vibrance

0.1.35 • Public • Published

Vibrance

A CLI colorizing tool, use it in Deno, Node.js or the browser console (no npm install required!)
Built as a fork off of Chalk.js

Browser or Deno

const { console, vibrance } = (await import('https://cdn.skypack.dev/vibrance@v0.1.34')).default

console.red("Howdy!") // has console.log() and all the other methods (debug/warn/error/group/etc)
console.blue.underline("Howdy!") 
console.green.bgBlack("Howdy!")
// NOTE!: this doesnt work: console.green("Hello").blue(" world")
// alternative way
vibrance.blue("Howdy! ").green("this will be logged").log() // NOTE: needs log at the end!

// a dont-import-console way of using vibrancy
console.log(vibrance.blue("This will ").bold.magenta("also").blue(" be logged"))

Node.js

npm install vibrance

const { console, vibrance } = require("vibrance")

console.red("Howdy!")
console.blue.underline("Howdy!")
console.green.bgBlack("Howdy!")

Demo

Deno.js console

Screen Shot 2021-12-12 at 8 43 35 PM

Firefox console

Screen Shot 2021-12-12 at 8 46 48 PM

API

  • All the methods can be chained
  • All work on both console and vibrance
// colors
vibrance.black("Howdy!")
vibrance.red("Howdy!")
vibrance.green("Howdy!")
vibrance.yellow("Howdy!")
vibrance.blue("Howdy!")
vibrance.magenta("Howdy!")
vibrance.cyan("Howdy!")
vibrance.white("Howdy!")
vibrance.blackBright("Howdy!")
vibrance.gray("Howdy!")
vibrance.grey("Howdy!")
vibrance.redBright("Howdy!")
vibrance.greenBright("Howdy!")
vibrance.yellowBright("Howdy!")
vibrance.blueBright("Howdy!")
vibrance.magentaBright("Howdy!")
vibrance.cyanBright("Howdy!")
vibrance.whiteBright("Howdy!")
// background colors
vibrance.bgBlack("Howdy!")
vibrance.bgRed("Howdy!")
vibrance.bgGreen("Howdy!")
vibrance.bgYellow("Howdy!")
vibrance.bgBlue("Howdy!")
vibrance.bgMagenta("Howdy!")
vibrance.bgCyan("Howdy!")
vibrance.bgWhite("Howdy!")
vibrance.bgBlackBright("Howdy!")
vibrance.bgGray("Howdy!")
vibrance.bgGrey("Howdy!")
vibrance.bgRedBright("Howdy!")
vibrance.bgGreenBright("Howdy!")
vibrance.bgYellowBright("Howdy!")
vibrance.bgBlueBright("Howdy!")
vibrance.bgMagentaBright("Howdy!")
vibrance.bgCyanBright("Howdy!")
vibrance.bgWhiteBright("Howdy!")
// specials
vibrance.reset()
vibrance.bold()
vibrance.dim()
vibrance.italic()
vibrance.underline()
vibrance.inverse()
vibrance.hidden()
vibrance.strikethrough()
vibrance.visible()

Package Sidebar

Install

npm i vibrance

Weekly Downloads

1

Version

0.1.35

License

MIT

Unpacked Size

657 kB

Total Files

16

Last publish

Collaborators

  • !!!!!