2017-02-28 01:41:21 -03:00
|
|
|
/* Magic Mirror
|
|
|
|
|
* Utils
|
|
|
|
|
*
|
|
|
|
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
|
|
|
|
* MIT Licensed.
|
|
|
|
|
*/
|
2021-01-05 18:37:01 +01:00
|
|
|
const colors = require("colors/safe");
|
2017-02-28 01:41:21 -03:00
|
|
|
|
2021-01-05 18:37:01 +01:00
|
|
|
module.exports = {
|
2017-02-28 01:41:21 -03:00
|
|
|
colors: {
|
2017-03-05 22:20:35 -03:00
|
|
|
warn: colors.yellow,
|
2017-03-18 09:33:03 -03:00
|
|
|
error: colors.red,
|
2020-08-08 22:16:27 +02:00
|
|
|
info: colors.blue,
|
|
|
|
|
pass: colors.green
|
2017-02-28 01:41:21 -03:00
|
|
|
}
|
|
|
|
|
};
|