@brianwalczak/consolecoloring
v1.0.2
Published
A simple utility to set the color of your console's text
Downloads
9
Maintainers
Readme
ConsoleColoring: A simple utility to set the color of your console's text
Setup
Setting up ConsoleColoring is really simple!
var color = require('@brianwalczak/consolecoloring');
Examples
Example of using ConsoleColoring for setting the console font color
var color = require('@brianwalczak/consolecoloring');
color("Green", "Font")
console.log("The color of this text is green")
Example of using ConsoleColoring for setting the console text background color
var color = require('@brianwalczak/consolecoloring');
color("Green", "Background")
console.log("The background of this text is green")