Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

utils.js 272B

12345678910111213141516
  1. /* Magic Mirror
  2. * Utils
  3. *
  4. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  5. * MIT Licensed.
  6. */
  7. const colors = require("colors/safe");
  8. module.exports = {
  9. colors: {
  10. warn: colors.yellow,
  11. error: colors.red,
  12. info: colors.blue,
  13. pass: colors.green
  14. }
  15. };