fruity.py 1.2 KB

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