colors.js 1.1 KB

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