diff options
author | Georg Brandl <georg@python.org> | 2019-11-24 16:11:42 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2019-11-24 16:40:54 +0100 |
commit | 6bf7ebd7016db96eb41e8f48ac0159f29d7a8a90 (patch) | |
tree | 1fcdd53912240147792ad9b4e47bac7e72323dd7 /pygments/styles/monokai.py | |
parent | 70c9aef127131cd0174fe261682ebd27c8973ad9 (diff) | |
download | pygments-git-6bf7ebd7016db96eb41e8f48ac0159f29d7a8a90.tar.gz |
monokai style: fix Generic.Output/Generic.Prompt colors (bitbucket PR #835)
Diffstat (limited to 'pygments/styles/monokai.py')
-rw-r--r-- | pygments/styles/monokai.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pygments/styles/monokai.py b/pygments/styles/monokai.py index 4580df2b..c9db9f22 100644 --- a/pygments/styles/monokai.py +++ b/pygments/styles/monokai.py @@ -92,14 +92,15 @@ class MonokaiStyle(Style): String.Single: "", # class: 's1' String.Symbol: "", # class: 'ss' + Generic: "", # class: 'g' Generic.Deleted: "#f92672", # class: 'gd', Generic.Emph: "italic", # class: 'ge' Generic.Error: "", # class: 'gr' Generic.Heading: "", # class: 'gh' Generic.Inserted: "#a6e22e", # class: 'gi' - Generic.Output: "", # class: 'go' - Generic.Prompt: "", # class: 'gp' + Generic.Output: "#66d9ef", # class: 'go' + Generic.Prompt: "bold #f92672", # class: 'gp' Generic.Strong: "bold", # class: 'gs' Generic.Subheading: "#75715e", # class: 'gu' Generic.Traceback: "", # class: 'gt' |