```js
var colors = require('colors');
console.log('foo'.zalgo);
console.log('hello'.green); // outputs green text
console.log('i like cake and pies'.underline.red) // outputs red underlined text
console.log('inverse the color'.inverse); // inverses the color
console.log('OMG Rainbows!'.rainbow); // rainbow (ignores spaces)
```
`zalgo`, `underline`, `inverse` and `rainbow` all show up correctly. But `red` and `green` do not.
Comments: They're showing up in current builds
var colors = require('colors');
console.log('foo'.zalgo);
console.log('hello'.green); // outputs green text
console.log('i like cake and pies'.underline.red) // outputs red underlined text
console.log('inverse the color'.inverse); // inverses the color
console.log('OMG Rainbows!'.rainbow); // rainbow (ignores spaces)
```
`zalgo`, `underline`, `inverse` and `rainbow` all show up correctly. But `red` and `green` do not.
Comments: They're showing up in current builds