home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2396 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.8 KB  |  44 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 Keyword, Name, Comment, String, Error, Number, Operator, Generic, Token, Whitespace
  6.  
  7. class NativeStyle(Style):
  8.     background_color = '#202020'
  9.     highlight_color = '#404040'
  10.     styles = {
  11.         Token: '#d0d0d0',
  12.         Whitespace: '#666666',
  13.         Comment: 'italic #999999',
  14.         Comment.Preproc: 'noitalic bold #cd2828',
  15.         Comment.Special: 'noitalic bold #e50808 bg:#520000',
  16.         Keyword: 'bold #6ab825',
  17.         Keyword.Pseudo: 'nobold',
  18.         Operator.Word: 'bold #6ab825',
  19.         String: '#ed9d13',
  20.         String.Other: '#ffa500',
  21.         Number: '#3677a9',
  22.         Name.Builtin: '#24909d',
  23.         Name.Variable: '#40ffff',
  24.         Name.Constant: '#40ffff',
  25.         Name.Class: 'underline #447fcf',
  26.         Name.Function: '#447fcf',
  27.         Name.Namespace: 'underline #447fcf',
  28.         Name.Exception: '#bbbbbb',
  29.         Name.Tag: 'bold #6ab825',
  30.         Name.Attribute: '#bbbbbb',
  31.         Name.Decorator: '#ffa500',
  32.         Generic.Heading: 'bold #ffffff',
  33.         Generic.Subheading: 'underline #ffffff',
  34.         Generic.Deleted: '#d22323',
  35.         Generic.Inserted: '#589819',
  36.         Generic.Error: '#d22323',
  37.         Generic.Emph: 'italic',
  38.         Generic.Strong: 'bold',
  39.         Generic.Prompt: '#aaaaaa',
  40.         Generic.Output: '#cccccc',
  41.         Generic.Traceback: '#d22323',
  42.         Error: 'bg:#e3d2d2 #a61717' }
  43.  
  44.