var colors = require('colors'); console.log('First some yellow text'.yellow); console.log('Underline that text'.yellow.underline); console.log('Make it bold and red'.red.bold); console.log('Double rainbows all day long'.rainbow); console.log('drop the bash'.trap); console.log('drop the rainbow bash'.rainbow.trap); console.log('Chains are also cool'.red.bold.underline); console.log('So are the inverse styles'.inverse); console.log('Zebras are so fun'.zebra); console.log('This is not fun'); console.log('Background color attack'.bgWhite); console.log('Use random styles on everything'.random); console.log('America, heck yeah!!'.america);