Repository URL to install this package:
|
Version:
0.0.1-b0bdfbe435df1c ▾
|
const chalk = require('chalk')
const severity = {
trace: chalk.hex('#405180').bgHex('#d4defa'),
debug: chalk.hex('#2b709b').bgHex('#91c8e9'),
info: chalk.hex('#1f2e08').bgHex('#87c627'),
warn: chalk.hex('#8a6b1c').bgHex('#ffec82'),
error: chalk.hex('#2e1110').bgHex('#e88d89')
};
const message = {
trace: chalk.hex('#d4defa'),
debug: chalk.hex('#91c8e9'),
info: chalk.hex('#87c627'),
warn: chalk.hex('#ffec82').bgHex('#8a6b1c'),
error: chalk.hex('#e88d89').bgHex('#87322e')
};
const backgroundText = {
trace: chalk.hex('#d4defa'),
debug: chalk.hex('#91c8e9'),
info: chalk.hex('#537a17'),
warn: chalk.hex('#8a6b1c'),
error: chalk.hex('#b5443f')
};
module.exports = {
severity: severity,
message: message,
backgroundText: backgroundText
}