Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/dlog / app / theme.js
Size: Mime:
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
}