5 |
5 |
6 Mimic the Monokai color scheme. Based on tango.py. |
6 Mimic the Monokai color scheme. Based on tango.py. |
7 |
7 |
8 http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/ |
8 http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/ |
9 |
9 |
10 :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. |
10 :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. |
11 :license: BSD, see LICENSE for details. |
11 :license: BSD, see LICENSE for details. |
12 """ |
12 """ |
13 |
|
14 from __future__ import unicode_literals |
|
15 |
13 |
16 from pygments.style import Style |
14 from pygments.style import Style |
17 from pygments.token import Keyword, Name, Comment, String, Error, Text, \ |
15 from pygments.token import Keyword, Name, Comment, String, Error, Text, \ |
18 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal |
16 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal |
19 |
17 |
93 String.Regex: "", # class: 'sr' |
91 String.Regex: "", # class: 'sr' |
94 String.Single: "", # class: 's1' |
92 String.Single: "", # class: 's1' |
95 String.Symbol: "", # class: 'ss' |
93 String.Symbol: "", # class: 'ss' |
96 |
94 |
97 Generic: "", # class: 'g' |
95 Generic: "", # class: 'g' |
98 Generic.Deleted: "", # class: 'gd', |
96 Generic.Deleted: "#f92672", # class: 'gd', |
99 Generic.Emph: "italic", # class: 'ge' |
97 Generic.Emph: "italic", # class: 'ge' |
100 Generic.Error: "", # class: 'gr' |
98 Generic.Error: "", # class: 'gr' |
101 Generic.Heading: "", # class: 'gh' |
99 Generic.Heading: "", # class: 'gh' |
102 Generic.Inserted: "", # class: 'gi' |
100 Generic.Inserted: "#a6e22e", # class: 'gi' |
103 Generic.Output: "", # class: 'go' |
101 Generic.Output: "", # class: 'go' |
104 Generic.Prompt: "", # class: 'gp' |
102 Generic.Prompt: "", # class: 'gp' |
105 Generic.Strong: "bold", # class: 'gs' |
103 Generic.Strong: "bold", # class: 'gs' |
106 Generic.Subheading: "", # class: 'gu' |
104 Generic.Subheading: "#75715e", # class: 'gu' |
107 Generic.Traceback: "", # class: 'gt' |
105 Generic.Traceback: "", # class: 'gt' |
108 } |
106 } |