MagicMirror/js/utils.js

17 lines
272 B
JavaScript
Raw Normal View History

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: {
warn: colors.yellow,
error: colors.red,
info: colors.blue,
pass: colors.green
2017-02-28 01:41:21 -03:00
}
};