home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2386 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.4 KB  |  33 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 BorlandStyle(Style):
  8.     default_style = ''
  9.     styles = {
  10.         Whitespace: '#bbbbbb',
  11.         Comment: 'italic #008800',
  12.         Comment.Preproc: 'noitalic #008080',
  13.         Comment.Special: 'noitalic bold',
  14.         String: '#0000FF',
  15.         String.Char: '#800080',
  16.         Number: '#0000FF',
  17.         Keyword: 'bold #000080',
  18.         Operator.Word: 'bold',
  19.         Name.Tag: 'bold #000080',
  20.         Name.Attribute: '#FF0000',
  21.         Generic.Heading: '#999999',
  22.         Generic.Subheading: '#aaaaaa',
  23.         Generic.Deleted: 'bg:#ffdddd #000000',
  24.         Generic.Inserted: 'bg:#ddffdd #000000',
  25.         Generic.Error: '#aa0000',
  26.         Generic.Emph: 'italic',
  27.         Generic.Strong: 'bold',
  28.         Generic.Prompt: '#555555',
  29.         Generic.Output: '#888888',
  30.         Generic.Traceback: '#aa0000',
  31.         Error: 'bg:#e3d2d2 #a61717' }
  32.  
  33.