mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 09:42:21 -04:00
Move colors into utils file
This commit is contained in:
parent
e697ee72fa
commit
ddff2b2982
3 changed files with 19 additions and 5 deletions
17
js/utils.js
Normal file
17
js/utils.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
/* exported Utils */
|
||||
/* Magic Mirror
|
||||
* Utils
|
||||
*
|
||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
||||
var colors = require("colors/safe");
|
||||
|
||||
var Utils = {
|
||||
colors: {
|
||||
warn: colors.yellow
|
||||
}
|
||||
};
|
||||
|
||||
if (typeof module !== "undefined") {module.exports = Utils;}
|
Loading…
Add table
Add a link
Reference in a new issue