Skip to content

Vexxlol/consolecolour

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Codacy Badge

Console Colour

Console Colour, allows you to add life to your console with 9 different colours, 6 different display formats, and 8 different background colours!

Installation

npm install ConsoleColour

Features

  • Ansi 256
  • Ansi 8
  • hex to ansi 256
  • rgb ansi 256
  • Blink, Reverse (Not support by a lot of terminals)
  • Underscore, Bold, Strikethrough, Italics
const cc = require('consolecolour')

let con = new cc()

// Black, Red, Green, Yellow, Blue, Magenta, Cyan, White Bright Red
con.yellow("Banana!")
// or use the bright red colour
con.brightRed("Apple!")

// Black, Red, Green, Yellow, Blue, Magenta, Cyan, White
con.backMagenta("Magenta Background!").log

/*
    Style your text!
    => Bright, Dim, Underscore, Blink, Reverse, Hidden
*/
con.underscore("This is total important!")
con.reverse("woah reverse...").log

// rgb to ansi
con.rgbText([255,0,255], "PURPLE!").log

// Chainable Methods!
con.backYellow("Yellow background with").red("some red text!").reset().blink("Blinking...").log

About

Console Colour (CC) is a module written in JS, that allows developers to style their console.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published