home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2392 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.3 KB  |  30 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. from pygments.style import Style
  5. from pygments.token import Token, Comment, Name, Keyword, Generic, Number, String, Whitespace
  6.  
  7. class FruityStyle(Style):
  8.     background_color = '#111111'
  9.     highlight_color = '#333333'
  10.     styles = {
  11.         Whitespace: '#888888',
  12.         Token: '#ffffff',
  13.         Generic.Output: '#444444 bg:#222222',
  14.         Keyword: '#fb660a bold',
  15.         Keyword.Pseudo: 'nobold',
  16.         Number: '#0086f7 bold',
  17.         Name.Tag: '#fb660a bold',
  18.         Name.Variable: '#fb660a',
  19.         Name.Constant: '#fb660a',
  20.         Comment: '#008800 bg:#0f140f italic',
  21.         Name.Attribute: '#ff0086 bold',
  22.         String: '#0086d2',
  23.         Name.Function: '#ff0086 bold',
  24.         Generic.Heading: '#ffffff bold',
  25.         Keyword.Type: '#cdcaa9 bold',
  26.         Generic.Subheading: '#ffffff bold',
  27.         Name.Constant: '#0086d2',
  28.         Comment.Preproc: '#ff0007 bold' }
  29.  
  30.