igor.py 737 B

1234567891011121314151617181920212223242526272829303132
  1. """
  2. pygments.styles.igor
  3. ~~~~~~~~~~~~~~~~~~~~
  4. Igor Pro default style.
  5. :copyright: Copyright 2006-2024 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. __all__ = ['IgorStyle']
  11. class IgorStyle(Style):
  12. """
  13. Pygments version of the official colors for Igor Pro procedures.
  14. """
  15. name = 'igor'
  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. }