Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Fahr <31999724+jfhr@users.noreply.github.com>2019-10-14 21:47:53 +0300
committerMatt Bierner <matb@microsoft.com>2019-10-14 21:47:53 +0300
commit9f2ca57b054d45f4d9be753452f0ab341815f616 (patch)
tree7b9a28396534908b04bd81d662683d48a351196e
parent2c535a36e9d6427261b537da0859dafb6f686357 (diff)
Fix #82199, numbers hard to read in light theme markdown preview (#82450)
-rw-r--r--extensions/markdown-language-features/media/highlight.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/markdown-language-features/media/highlight.css b/extensions/markdown-language-features/media/highlight.css
index 112799d4662..f2bf4a3efa1 100644
--- a/extensions/markdown-language-features/media/highlight.css
+++ b/extensions/markdown-language-features/media/highlight.css
@@ -123,7 +123,9 @@ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@d
*/
.vscode-light .hljs-function,
-.vscode-light .hljs-params {
+.vscode-light .hljs-params,
+.vscode-light .hljs-number,
+.vscode-light .hljs-class {
color: inherit;
}