fruity.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -*- coding: utf-8 -*-
  2. """
  3. pygments.styles.fruity
  4. ~~~~~~~~~~~~~~~~~~~~~~
  5. pygments version of my "fruity" vim theme.
  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 Token, Comment, Name, Keyword, \
  11. Generic, Number, String, Whitespace
  12. class FruityStyle(Style):
  13. """
  14. Pygments version of the "native" vim theme.
  15. """
  16. background_color = '#111111'
  17. highlight_color = '#333333'
  18. styles = {
  19. Whitespace: '#888888',
  20. Token: '#ffffff',
  21. Generic.Output: '#444444 bg:#222222',
  22. Keyword: '#fb660a bold',
  23. Keyword.Pseudo: 'nobold',
  24. Number: '#0086f7 bold',
  25. Name.Tag: '#fb660a bold',
  26. Name.Variable: '#fb660a',
  27. Comment: '#008800 bg:#0f140f italic',
  28. Name.Attribute: '#ff0086 bold',
  29. String: '#0086d2',
  30. Name.Function: '#ff0086 bold',
  31. Generic.Heading: '#ffffff bold',
  32. Keyword.Type: '#cdcaa9 bold',
  33. Generic.Subheading: '#ffffff bold',
  34. Name.Constant: '#0086d2',
  35. Comment.Preproc: '#ff0007 bold'
  36. }