home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2389 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.0 KB  |  51 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 DefaultStyle(Style):
  8.     background_color = '#f8f8f8'
  9.     default_style = ''
  10.     styles = {
  11.         Whitespace: '#bbbbbb',
  12.         Comment: 'italic #408080',
  13.         Comment.Preproc: 'noitalic #BC7A00',
  14.         Keyword: 'bold #008000',
  15.         Keyword.Pseudo: 'nobold',
  16.         Keyword.Type: 'nobold #B00040',
  17.         Operator: '#666666',
  18.         Operator.Word: 'bold #AA22FF',
  19.         Name.Builtin: '#008000',
  20.         Name.Function: '#0000FF',
  21.         Name.Class: 'bold #0000FF',
  22.         Name.Namespace: 'bold #0000FF',
  23.         Name.Exception: 'bold #D2413A',
  24.         Name.Variable: '#19177C',
  25.         Name.Constant: '#880000',
  26.         Name.Label: '#A0A000',
  27.         Name.Entity: 'bold #999999',
  28.         Name.Attribute: '#7D9029',
  29.         Name.Tag: 'bold #008000',
  30.         Name.Decorator: '#AA22FF',
  31.         String: '#BA2121',
  32.         String.Doc: 'italic',
  33.         String.Interpol: 'bold #BB6688',
  34.         String.Escape: 'bold #BB6622',
  35.         String.Regex: '#BB6688',
  36.         String.Symbol: '#19177C',
  37.         String.Other: '#008000',
  38.         Number: '#666666',
  39.         Generic.Heading: 'bold #000080',
  40.         Generic.Subheading: 'bold #800080',
  41.         Generic.Deleted: '#A00000',
  42.         Generic.Inserted: '#00A000',
  43.         Generic.Error: '#FF0000',
  44.         Generic.Emph: 'italic',
  45.         Generic.Strong: 'bold',
  46.         Generic.Prompt: 'bold #000080',
  47.         Generic.Output: '#888',
  48.         Generic.Traceback: '#04D',
  49.         Error: 'border:#FF0000' }
  50.  
  51.