rrt.py 852 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. """
  3. pygments.styles.rrt
  4. ~~~~~~~~~~~~~~~~~~~
  5. pygments "rrt" theme, based on Zap and Emacs defaults.
  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 Comment, Name, Keyword, String
  11. class RrtStyle(Style):
  12. """
  13. Minimalistic "rrt" theme, based on Zap and Emacs defaults.
  14. """
  15. background_color = '#000000'
  16. highlight_color = '#0000ff'
  17. styles = {
  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. }