rrt.py 874 B

123456789101112131415161718192021222324252627282930313233
  1. """
  2. pygments.styles.rrt
  3. ~~~~~~~~~~~~~~~~~~~
  4. pygments "rrt" theme, based on Zap and Emacs defaults.
  5. :copyright: Copyright 2006-2023 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 Token, 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. Token: '#dddddd',
  18. Comment: '#00ff00',
  19. Name.Function: '#ffff00',
  20. Name.Variable: '#eedd82',
  21. Name.Constant: '#7fffd4',
  22. Keyword: '#ff0000',
  23. Comment.Preproc: '#e5e5e5',
  24. String: '#87ceeb',
  25. Keyword.Type: '#ee82ee',
  26. }