igor.py 715 B

12345678910111213141516171819202122232425262728
  1. """
  2. pygments.styles.igor
  3. ~~~~~~~~~~~~~~~~~~~~
  4. Igor Pro default style.
  5. :copyright: Copyright 2006-2021 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. default_style = ""
  15. styles = {
  16. Comment: 'italic #FF0000',
  17. Keyword: '#0000FF',
  18. Name.Function: '#C34E00',
  19. Name.Decorator: '#CC00A3',
  20. Name.Class: '#007575',
  21. String: '#009C00'
  22. }