Fix #82199, resetting some color of code blocks at Markdown Preview with light theme (#82453)

* Fix #82199 

This PR resets color theme of number, title and built_in at Preview with light theme.

* Bad whitespace indentation Fixe

* owner comment Removed
This commit is contained in:
ganxy1028 2019-10-16 04:12:11 +08:00 committed by Matt Bierner
parent 5a44cf8b6d
commit 5c705ea7ee

View file

@ -131,20 +131,25 @@ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@d
.vscode-light .hljs-comment,
.vscode-light .hljs-quote,
.vscode-light .hljs-number,
.vscode-light .hljs-class,
.vscode-light .hljs-variable {
color: #008000;
}
.vscode-light .hljs-keyword,
.vscode-light .hljs-selector-tag,
.vscode-light .hljs-built_in,
.vscode-light .hljs-name,
.vscode-light .hljs-tag {
color: #00f;
}
.vscode-light .hljs-built_in,
.vscode-light .hljs-builtin-name {
color: #007acc;
}
.vscode-light .hljs-string,
.vscode-light .hljs-title,
.vscode-light .hljs-section,
.vscode-light .hljs-attribute,
.vscode-light .hljs-literal,
@ -156,10 +161,12 @@ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@d
.vscode-light .hljs-selector-attr,
.vscode-light .hljs-selector-pseudo,
.vscode-light .hljs-meta {
.vscode-light .hljs-meta,
.vscode-light .hljs-meta-keyword {
color: #2b91af;
}
.vscode-light .hljs-title,
.vscode-light .hljs-doctag {
color: #808080;
}
@ -181,4 +188,4 @@ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@d
.vscode-light .hljs-strong {
font-weight: bold;
}
}