home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_2399 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  2.5 KB  |  80 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, Punctuation, Other, Literal
  6.  
  7. class TangoStyle(Style):
  8.     background_color = '#f8f8f8'
  9.     default_style = ''
  10.     styles = {
  11.         Whitespace: 'underline #f8f8f8',
  12.         Error: '#a40000 border:#ef2929',
  13.         Other: '#000000',
  14.         Comment: 'italic #8f5902',
  15.         Comment.Multiline: 'italic #8f5902',
  16.         Comment.Preproc: 'italic #8f5902',
  17.         Comment.Single: 'italic #8f5902',
  18.         Comment.Special: 'italic #8f5902',
  19.         Keyword: 'bold #204a87',
  20.         Keyword.Constant: 'bold #204a87',
  21.         Keyword.Declaration: 'bold #204a87',
  22.         Keyword.Namespace: 'bold #204a87',
  23.         Keyword.Pseudo: 'bold #204a87',
  24.         Keyword.Reserved: 'bold #204a87',
  25.         Keyword.Type: 'bold #204a87',
  26.         Operator: 'bold #ce5c00',
  27.         Operator.Word: 'bold #204a87',
  28.         Punctuation: 'bold #000000',
  29.         Name: '#000000',
  30.         Name.Attribute: '#c4a000',
  31.         Name.Builtin: '#204a87',
  32.         Name.Builtin.Pseudo: '#3465a4',
  33.         Name.Class: '#000000',
  34.         Name.Constant: '#000000',
  35.         Name.Decorator: 'bold #5c35cc',
  36.         Name.Entity: '#ce5c00',
  37.         Name.Exception: 'bold #cc0000',
  38.         Name.Function: '#000000',
  39.         Name.Property: '#000000',
  40.         Name.Label: '#f57900',
  41.         Name.Namespace: '#000000',
  42.         Name.Other: '#000000',
  43.         Name.Tag: 'bold #204a87',
  44.         Name.Variable: '#000000',
  45.         Name.Variable.Class: '#000000',
  46.         Name.Variable.Global: '#000000',
  47.         Name.Variable.Instance: '#000000',
  48.         Number: 'bold #0000cf',
  49.         Number.Float: 'bold #0000cf',
  50.         Number.Hex: 'bold #0000cf',
  51.         Number.Integer: 'bold #0000cf',
  52.         Number.Integer.Long: 'bold #0000cf',
  53.         Number.Oct: 'bold #0000cf',
  54.         Literal: '#000000',
  55.         Literal.Date: '#000000',
  56.         String: '#4e9a06',
  57.         String.Backtick: '#4e9a06',
  58.         String.Char: '#4e9a06',
  59.         String.Doc: 'italic #8f5902',
  60.         String.Double: '#4e9a06',
  61.         String.Escape: '#4e9a06',
  62.         String.Heredoc: '#4e9a06',
  63.         String.Interpol: '#4e9a06',
  64.         String.Other: '#4e9a06',
  65.         String.Regex: '#4e9a06',
  66.         String.Single: '#4e9a06',
  67.         String.Symbol: '#4e9a06',
  68.         Generic: '#000000',
  69.         Generic.Deleted: '#a40000',
  70.         Generic.Emph: 'italic #000000',
  71.         Generic.Error: '#ef2929',
  72.         Generic.Heading: 'bold #000080',
  73.         Generic.Inserted: '#00A000',
  74.         Generic.Output: 'italic #000000',
  75.         Generic.Prompt: '#8f5902',
  76.         Generic.Strong: 'bold #000000',
  77.         Generic.Subheading: 'bold #800080',
  78.         Generic.Traceback: 'bold #a40000' }
  79.  
  80.