Path: blob/main/extensions/markdown-language-features/media/highlight.css
3291 views
/*1https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs2015.css2*/3/*4* Visual Studio 2015 dark style5* Author: Nicolas LLOBERA <[email protected]>6*/789.hljs-keyword,10.hljs-literal,11.hljs-symbol,12.hljs-name {13color: #569CD6;14}15.hljs-link {16color: #569CD6;17text-decoration: underline;18}1920.hljs-built_in,21.hljs-type {22color: #4EC9B0;23}2425.hljs-number,26.hljs-class {27color: #B8D7A3;28}2930.hljs-string,31.hljs-meta-string {32color: #D69D85;33}3435.hljs-regexp,36.hljs-template-tag {37color: #9A5334;38}3940.hljs-subst,41.hljs-function,42.hljs-title,43.hljs-params,44.hljs-formula {45color: #DCDCDC;46}4748.hljs-comment,49.hljs-quote {50color: #57A64A;51font-style: italic;52}5354.hljs-doctag {55color: #608B4E;56}5758.hljs-meta,59.hljs-meta-keyword,60.hljs-tag {61color: #9B9B9B;62}6364.hljs-variable,65.hljs-template-variable {66color: #BD63C5;67}6869.hljs-attr,70.hljs-attribute,71.hljs-builtin-name {72color: #9CDCFE;73}7475.hljs-section {76color: gold;77}7879.hljs-emphasis {80font-style: italic;81}8283.hljs-strong {84font-weight: bold;85}8687/*.hljs-code {88font-family:'Monospace';89}*/9091.hljs-bullet,92.hljs-selector-tag,93.hljs-selector-id,94.hljs-selector-class,95.hljs-selector-attr,96.hljs-selector-pseudo {97color: #D7BA7D;98}99100.hljs-addition {101background-color: var(--vscode-diffEditor-insertedTextBackground, rgba(155, 185, 85, 0.2));102color: rgb(155, 185, 85);103display: inline-block;104width: 100%;105}106107.hljs-deletion {108background: var(--vscode-diffEditor-removedTextBackground, rgba(255, 0, 0, 0.2));109color: rgb(255, 0, 0);110display: inline-block;111width: 100%;112}113114115/*116From https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs.css117*/118/*119120Visual Studio-like style based on original C# coloring by Jason Diamond <[email protected]>121122*/123124.vscode-light .hljs-function,125.vscode-light .hljs-params,126.vscode-light .hljs-number,127.vscode-light .hljs-class {128color: inherit;129}130131.vscode-light .hljs-comment,132.vscode-light .hljs-quote,133.vscode-light .hljs-number,134.vscode-light .hljs-class,135.vscode-light .hljs-variable {136color: #008000;137}138139.vscode-light .hljs-keyword,140.vscode-light .hljs-selector-tag,141.vscode-light .hljs-name,142.vscode-light .hljs-tag {143color: #00f;144}145146.vscode-light .hljs-built_in,147.vscode-light .hljs-builtin-name {148color: #007acc;149}150151.vscode-light .hljs-string,152.vscode-light .hljs-section,153.vscode-light .hljs-attribute,154.vscode-light .hljs-literal,155.vscode-light .hljs-template-tag,156.vscode-light .hljs-template-variable,157.vscode-light .hljs-type {158color: #a31515;159}160161.vscode-light .hljs-subst,162.vscode-light .hljs-selector-attr,163.vscode-light .hljs-selector-pseudo,164.vscode-light .hljs-meta,165.vscode-light .hljs-meta-keyword {166color: #2b91af;167}168.vscode-light .hljs-title,169.vscode-light .hljs-doctag {170color: #808080;171}172173.vscode-light .hljs-attr {174color: #f00;175}176177.vscode-light .hljs-symbol,178.vscode-light .hljs-bullet,179.vscode-light .hljs-link {180color: #00b0e8;181}182183184.vscode-light .hljs-emphasis {185font-style: italic;186}187188.vscode-light .hljs-strong {189font-weight: bold;190}191192193