From 6bf7ebd7016db96eb41e8f48ac0159f29d7a8a90 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 24 Nov 2019 16:11:42 +0100 Subject: monokai style: fix Generic.Output/Generic.Prompt colors (bitbucket PR #835) --- pygments/styles/monokai.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pygments/styles/monokai.py') 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' -- cgit v1.2.1