manakin
Version:
Prime colors for your console
29 lines (27 loc) • 553 B
JavaScript
;
module.exports = {
log: {
normal: 39, // white
bright: 97 // light white
},
error: {
normal: 31, // red
bright: 91 // light red
},
warn: {
normal: 33, // yellow
bright: 93 // light yellow
},
info: {
normal: 36, // cyan
bright: 96 // light cyan
},
success: {
normal: 32, // green
bright: 92 // light green
},
ok: {
normal: 32, // green
bright: 92 // light green
}
};