igor.py 739 B

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