igor.py 692 B

123456789101112131415161718192021222324252627
  1. """
  2. pygments.styles.igor
  3. ~~~~~~~~~~~~~~~~~~~~
  4. Igor Pro default style.
  5. :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. """
  8. from pygments.style import Style
  9. from pygments.token import Keyword, Name, Comment, String
  10. class IgorStyle(Style):
  11. """
  12. Pygments version of the official colors for Igor Pro procedures.
  13. """
  14. styles = {
  15. Comment: 'italic #FF0000',
  16. Keyword: '#0000FF',
  17. Name.Function: '#C34E00',
  18. Name.Decorator: '#CC00A3',
  19. Name.Class: '#007575',
  20. String: '#009C00'
  21. }