diff options
author | Tim Hatch <tim@timhatch.com> | 2014-04-14 14:58:34 -0400 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-04-14 14:58:34 -0400 |
commit | 1add9dd59c4725a851e01f34107081b814903c98 (patch) | |
tree | 1b44ada8e9a20d677f0641de969536c0e30e4796 /pygments/styles/monokai.py | |
parent | e49fcb63aac76df1ca5863327928054e32802432 (diff) | |
parent | 3394e774607f349bdc153126a368b3fb8d07bd84 (diff) | |
download | pygments-1add9dd59c4725a851e01f34107081b814903c98.tar.gz |
Merged in ziggix/pygments-main (pull request #211)
Conflicts:
pygments/lexers/_mapping.py
pygments/lexers/other.py
Diffstat (limited to 'pygments/styles/monokai.py')
-rw-r--r-- | pygments/styles/monokai.py | 8 |
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' } |