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.

colors.js 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.bBackground3 =
  6. exports.bForeground3 =
  7. exports.aBackground3 =
  8. exports.aForeground3 =
  9. exports.bBackground2 =
  10. exports.bForeground2 =
  11. exports.aBackground2 =
  12. exports.aForeground2 =
  13. void 0;
  14. /**
  15. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  16. *
  17. * This source code is licensed under the MIT license found in the
  18. * LICENSE file in the root directory of this source tree.
  19. */
  20. // https://jonasjacek.github.io/colors/
  21. const aForeground2 = 90;
  22. exports.aForeground2 = aForeground2;
  23. const aBackground2 = 225;
  24. exports.aBackground2 = aBackground2;
  25. const bForeground2 = 23;
  26. exports.bForeground2 = bForeground2;
  27. const bBackground2 = 195;
  28. exports.bBackground2 = bBackground2;
  29. const aForeground3 = [0x80, 0, 0x80];
  30. exports.aForeground3 = aForeground3;
  31. const aBackground3 = [0xff, 0xd7, 0xff];
  32. exports.aBackground3 = aBackground3;
  33. const bForeground3 = [0, 0x5f, 0x5f];
  34. exports.bForeground3 = bForeground3;
  35. const bBackground3 = [0xd7, 0xff, 0xff];
  36. exports.bBackground3 = bBackground3;