home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2401 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.6 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, Token
  6.  
  7. class VimStyle(Style):
  8.     background_color = '#000000'
  9.     highlight_color = '#222222'
  10.     default_style = '#cccccc'
  11.     styles = {
  12.         Token: '#cccccc',
  13.         Whitespace: '',
  14.         Comment: '#000080',
  15.         Comment.Preproc: '',
  16.         Comment.Special: 'bold #cd0000',
  17.         Keyword: '#cdcd00',
  18.         Keyword.Declaration: '#00cd00',
  19.         Keyword.Namespace: '#cd00cd',
  20.         Keyword.Pseudo: '',
  21.         Keyword.Type: '#00cd00',
  22.         Operator: '#3399cc',
  23.         Operator.Word: '#cdcd00',
  24.         Name: '',
  25.         Name.Class: '#00cdcd',
  26.         Name.Builtin: '#cd00cd',
  27.         Name.Exception: 'bold #666699',
  28.         Name.Variable: '#00cdcd',
  29.         String: '#cd0000',
  30.         Number: '#cd00cd',
  31.         Generic.Heading: 'bold #000080',
  32.         Generic.Subheading: 'bold #800080',
  33.         Generic.Deleted: '#cd0000',
  34.         Generic.Inserted: '#00cd00',
  35.         Generic.Error: '#FF0000',
  36.         Generic.Emph: 'italic',
  37.         Generic.Strong: 'bold',
  38.         Generic.Prompt: 'bold #000080',
  39.         Generic.Output: '#888',
  40.         Generic.Traceback: '#04D',
  41.         Error: 'border:#FF0000' }
  42.  
  43.