MagicMirror/js/utils.js
Felix Wiedenbach d22064c6f4 clean up utils
2021-01-05 18:37:01 +01:00

17 lines
272 B
JavaScript

/* Magic Mirror
* Utils
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
const colors = require("colors/safe");
module.exports = {
colors: {
warn: colors.yellow,
error: colors.red,
info: colors.blue,
pass: colors.green
}
};