rrt.py 828 B

1234567891011121314151617181920212223242526272829303132
  1. """
  2. pygments.styles.rrt
  3. ~~~~~~~~~~~~~~~~~~~
  4. pygments "rrt" theme, based on Zap and Emacs defaults.
  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 Comment, Name, Keyword, String
  10. class RrtStyle(Style):
  11. """
  12. Minimalistic "rrt" theme, based on Zap and Emacs defaults.
  13. """
  14. background_color = '#000000'
  15. highlight_color = '#0000ff'
  16. styles = {
  17. Comment: '#00ff00',
  18. Name.Function: '#ffff00',
  19. Name.Variable: '#eedd82',
  20. Name.Constant: '#7fffd4',
  21. Keyword: '#ff0000',
  22. Comment.Preproc: '#e5e5e5',
  23. String: '#87ceeb',
  24. Keyword.Type: '#ee82ee',
  25. }