home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2391 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.1 KB  |  52 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 FriendlyStyle(Style):
  8.     background_color = '#f0f0f0'
  9.     default_style = ''
  10.     styles = {
  11.         Whitespace: '#bbbbbb',
  12.         Comment: 'italic #60a0b0',
  13.         Comment.Preproc: 'noitalic #007020',
  14.         Comment.Special: 'noitalic bg:#fff0f0',
  15.         Keyword: 'bold #007020',
  16.         Keyword.Pseudo: 'nobold',
  17.         Keyword.Type: 'nobold #902000',
  18.         Operator: '#666666',
  19.         Operator.Word: 'bold #007020',
  20.         Name.Builtin: '#007020',
  21.         Name.Function: '#06287e',
  22.         Name.Class: 'bold #0e84b5',
  23.         Name.Namespace: 'bold #0e84b5',
  24.         Name.Exception: '#007020',
  25.         Name.Variable: '#bb60d5',
  26.         Name.Constant: '#60add5',
  27.         Name.Label: 'bold #002070',
  28.         Name.Entity: 'bold #d55537',
  29.         Name.Attribute: '#4070a0',
  30.         Name.Tag: 'bold #062873',
  31.         Name.Decorator: 'bold #555555',
  32.         String: '#4070a0',
  33.         String.Doc: 'italic',
  34.         String.Interpol: 'italic #70a0d0',
  35.         String.Escape: 'bold #4070a0',
  36.         String.Regex: '#235388',
  37.         String.Symbol: '#517918',
  38.         String.Other: '#c65d09',
  39.         Number: '#40a070',
  40.         Generic.Heading: 'bold #000080',
  41.         Generic.Subheading: 'bold #800080',
  42.         Generic.Deleted: '#A00000',
  43.         Generic.Inserted: '#00A000',
  44.         Generic.Error: '#FF0000',
  45.         Generic.Emph: 'italic',
  46.         Generic.Strong: 'bold',
  47.         Generic.Prompt: 'bold #c65d09',
  48.         Generic.Output: '#888',
  49.         Generic.Traceback: '#04D',
  50.         Error: 'border:#FF0000' }
  51.  
  52.