- Add color to text or background on the console
- Add effects to the text
You can install colorfuller using npm:
npm install colorfullerExample
const colorfuller = require('colorfuller')
const textColor = colorfuller.txt('Hello World!', "cyan")
console.log(textColor)-
colorfuller.txt('Hello World!', "cyan")
Apply cyan text colorr -
colorfuller.bg('Hello World!', "yellow")
Apply yellow backgroundd -
colorfuller.effect('Hello World!', "bright")
Apply bright effect on the textt -
colorfuller.list("txt")
Displays on the console the list of all options for colorful.txt(), the other options are "bg" and "effects"..
MIT