abap.py 727 B

12345678910111213141516171819202122232425262728
  1. """
  2. pygments.styles.abap
  3. ~~~~~~~~~~~~~~~~~~~~
  4. ABAP workbench like 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, Error, \
  10. Number, Operator
  11. class AbapStyle(Style):
  12. default_style = ""
  13. styles = {
  14. Comment: 'italic #888',
  15. Comment.Special: '#888',
  16. Keyword: '#00f',
  17. Operator.Word: '#00f',
  18. Name: '#000',
  19. Number: '#3af',
  20. String: '#5a2',
  21. Error: '#F00',
  22. }