summaryrefslogtreecommitdiff
path: root/pygments/styles/monokai.py
diff options
context:
space:
mode:
authorJharrod LaFon <jharrod.lafon@gmail.com>2014-04-14 18:06:42 -0400
committerJharrod LaFon <jharrod.lafon@gmail.com>2014-04-14 18:06:42 -0400
commit1946764d7ecfd7c770c6e3bbadd5f78da67f6676 (patch)
treef15a1c76fea074704786e027fcbd723d0f2104d7 /pygments/styles/monokai.py
parenteb1ea996fa37bed736ffa63fd5b96cb39cff7c7f (diff)
parent01faf9753ed8a008edd8c960cd42bc9a0594b780 (diff)
downloadpygments-1946764d7ecfd7c770c6e3bbadd5f78da67f6676.tar.gz
Correctly match valid identifiers in PHP that include unicode characters
Diffstat (limited to 'pygments/styles/monokai.py')
-rw-r--r--pygments/styles/monokai.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/styles/monokai.py b/pygments/styles/monokai.py
index 31dc83b2..f8940db4 100644
--- a/pygments/styles/monokai.py
+++ b/pygments/styles/monokai.py
@@ -7,7 +7,7 @@
http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/
- :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -93,14 +93,14 @@ class MonokaiStyle(Style):
String.Symbol: "", # class: 'ss'
Generic: "", # class: 'g'
- Generic.Deleted: "", # class: 'gd',
+ Generic.Deleted: "#f92672", # class: 'gd',
Generic.Emph: "italic", # class: 'ge'
Generic.Error: "", # class: 'gr'
Generic.Heading: "", # class: 'gh'
- Generic.Inserted: "", # class: 'gi'
+ Generic.Inserted: "#a6e22e", # class: 'gi'
Generic.Output: "", # class: 'go'
Generic.Prompt: "", # class: 'gp'
Generic.Strong: "bold", # class: 'gs'
- Generic.Subheading: "", # class: 'gu'
+ Generic.Subheading: "#75715e", # class: 'gu'
Generic.Traceback: "", # class: 'gt'
}