diff options
author | Georg Brandl <georg@python.org> | 2014-01-09 17:18:43 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-01-09 17:18:43 +0100 |
commit | 61936d7d0bff110a42288fd692c20e6b0c04d3a8 (patch) | |
tree | 838e493c452e3792150b960151ed74e5832585ed /pygments/styles/monokai.py | |
parent | 3079894c4a1267ac2d368a301932916f134aa891 (diff) | |
parent | 0c290aaf27cc19d15e98fef06bc1a9e0131d9d58 (diff) | |
download | pygments-61936d7d0bff110a42288fd692c20e6b0c04d3a8.tar.gz |
Merged in agilbert/pygments-main-1/agilbert/fix-a-typo-wrong-website-1373559184766 (pull request #217)
Fix a typo (wrong website)
Diffstat (limited to 'pygments/styles/monokai.py')
-rw-r--r-- | pygments/styles/monokai.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/styles/monokai.py b/pygments/styles/monokai.py index 31dc83b2..7b41b3ec 100644 --- a/pygments/styles/monokai.py +++ b/pygments/styles/monokai.py @@ -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' } |