Color Logger is a simple wrapper for Chalk.
To start using color logger in your app, first install it using npm, then require it,
const cl = require('colorlogger');
Error messages can be logged using cl.error('Message');
Error messages can be logged using cl.info('Message');
Error messages can be logged using cl.debug('Message');
Error messages can be logged using cl.Warn('Message');
Error messages can be logged using cl.Silly('Message');
Color logger also supports using hex to color messages with custom colors.
cl.hex("Hex Code", "Message");
Here, the hex code must be a string!
Color logger also supports using RGB values to color messages with custom colors.
cl.hex(R value,G value ,B value , "Message");
Here, the number must be a number and not a string!
Feel free to contribute to this project and make it better!