node-ipc/entities/LogColors.js
Brandon Nozaki Miller 143e23ca4d migrating to es6
2016-01-10 20:59:40 -08:00

15 lines
282 B
JavaScript

'use strict';
class LogColors{
constructor(){
this.good='green';
this.notice='yellow';
this.warn='red';
this.error='redBG';
this.debug='magenta';
this.variable='cyan';
this.data='blue';
}
}
module.exports=LogColors;