simple colored terminal output - wrapper around `chalk`
npm install x-chalkA modest wrapper around chalk so I don't have to wrap every call to chalk withconsole.log. Exports most common colors, and also re-exports chalk as c for
convenience.
``js
import { red, blue, log, c } from 'x-chalk';
red(This will log in red!);This will log in dim blue!
blue.dim();{yellow fancy chalk stuff} {green is fun!}
log(c);``