home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2393 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.1 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 ManniStyle(Style):
  8.     background_color = '#f0f3f3'
  9.     styles = {
  10.         Whitespace: '#bbbbbb',
  11.         Comment: 'italic #0099FF',
  12.         Comment.Preproc: 'noitalic #009999',
  13.         Comment.Special: 'bold',
  14.         Keyword: 'bold #006699',
  15.         Keyword.Pseudo: 'nobold',
  16.         Keyword.Type: '#007788',
  17.         Operator: '#555555',
  18.         Operator.Word: 'bold #000000',
  19.         Name.Builtin: '#336666',
  20.         Name.Function: '#CC00FF',
  21.         Name.Class: 'bold #00AA88',
  22.         Name.Namespace: 'bold #00CCFF',
  23.         Name.Exception: 'bold #CC0000',
  24.         Name.Variable: '#003333',
  25.         Name.Constant: '#336600',
  26.         Name.Label: '#9999FF',
  27.         Name.Entity: 'bold #999999',
  28.         Name.Attribute: '#330099',
  29.         Name.Tag: 'bold #330099',
  30.         Name.Decorator: '#9999FF',
  31.         String: '#CC3300',
  32.         String.Doc: 'italic',
  33.         String.Interpol: '#AA0000',
  34.         String.Escape: 'bold #CC3300',
  35.         String.Regex: '#33AAAA',
  36.         String.Symbol: '#FFCC33',
  37.         String.Other: '#CC3300',
  38.         Number: '#FF6600',
  39.         Generic.Heading: 'bold #003300',
  40.         Generic.Subheading: 'bold #003300',
  41.         Generic.Deleted: 'border:#CC0000 bg:#FFCCCC',
  42.         Generic.Inserted: 'border:#00CC00 bg:#CCFFCC',
  43.         Generic.Error: '#FF0000',
  44.         Generic.Emph: 'italic',
  45.         Generic.Strong: 'bold',
  46.         Generic.Prompt: 'bold #000099',
  47.         Generic.Output: '#AAAAAA',
  48.         Generic.Traceback: '#99CC66',
  49.         Error: 'bg:#FFAAAA #AA0000' }
  50.  
  51.