theme.js 862 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * @typedef {Object} Theme
  3. * @property {string[]} reset
  4. * @property {string} black
  5. * @property {string} red
  6. * @property {string} green
  7. * @property {string} yellow
  8. * @property {string} blue
  9. * @property {string} magenta
  10. * @property {string} cyan
  11. * @property {string} white
  12. * @property {string} lightgrey
  13. * @property {string} darkgrey
  14. * @property {string} grey
  15. * @property {string} dimgrey
  16. */
  17. /**
  18. * @type {Theme} theme
  19. * A collection of colors to be used by the overlay.
  20. * Partially adopted from Tomorrow Night Bright.
  21. */
  22. const theme = {
  23. reset: ['transparent', 'transparent'],
  24. black: '000000',
  25. red: 'D34F56',
  26. green: 'B9C954',
  27. yellow: 'E6C452',
  28. blue: '7CA7D8',
  29. magenta: 'C299D6',
  30. cyan: '73BFB1',
  31. white: 'FFFFFF',
  32. lightgrey: 'C7C7C7',
  33. darkgrey: 'A9A9A9',
  34. grey: '474747',
  35. dimgrey: '343434',
  36. };
  37. module.exports = theme;