home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2385 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.7 KB  |  43 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, Whitespace
  6.  
  7. class AutumnStyle(Style):
  8.     default_style = ''
  9.     styles = {
  10.         Whitespace: '#bbbbbb',
  11.         Comment: 'italic #aaaaaa',
  12.         Comment.Preproc: 'noitalic #4c8317',
  13.         Comment.Special: 'italic #0000aa',
  14.         Keyword: '#0000aa',
  15.         Keyword.Type: '#00aaaa',
  16.         Operator.Word: '#0000aa',
  17.         Name.Builtin: '#00aaaa',
  18.         Name.Function: '#00aa00',
  19.         Name.Class: 'underline #00aa00',
  20.         Name.Namespace: 'underline #00aaaa',
  21.         Name.Variable: '#aa0000',
  22.         Name.Constant: '#aa0000',
  23.         Name.Entity: 'bold #800',
  24.         Name.Attribute: '#1e90ff',
  25.         Name.Tag: 'bold #1e90ff',
  26.         Name.Decorator: '#888888',
  27.         String: '#aa5500',
  28.         String.Symbol: '#0000aa',
  29.         String.Regex: '#009999',
  30.         Number: '#009999',
  31.         Generic.Heading: 'bold #000080',
  32.         Generic.Subheading: 'bold #800080',
  33.         Generic.Deleted: '#aa0000',
  34.         Generic.Inserted: '#00aa00',
  35.         Generic.Error: '#aa0000',
  36.         Generic.Emph: 'italic',
  37.         Generic.Strong: 'bold',
  38.         Generic.Prompt: '#555555',
  39.         Generic.Output: '#888888',
  40.         Generic.Traceback: '#aa0000',
  41.         Error: '#F00 bg:#FAA' }
  42.  
  43.