/** * VS theme by Andrew Lock (https://andrewlock.net) * Inspired by Visual Studio syntax coloring */ code[class*="language-"], pre { color: #393A34; } pre::-moz-selection, pre ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { background-color: #C1DEF1; } pre::selection, pre ::selection, code[class*="language-"]::selection, code[class*="language-"] ::selection { background-color: #C1DEF1; } /* Code blocks */ pre { background-color: white; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: #008000; font-style: italic; } .token.namespace { opacity: .7; } .token.string { color: #A31515; } .token.punctuation, .token.operator { color: #393A34; /* no highlight */ } .token.url, .token.symbol, .token.number, .token.boolean, .token.variable, .token.constant, .token.inserted { color: #36acaa; } .token.atrule, .token.keyword, .token.attr-value, .language-autohotkey .token.selector, .language-json .token.boolean, .language-json .token.number, code[class*="language-css"]{ color: #0000ff; } .token.function { color: #393A34; } .token.deleted, .language-autohotkey .token.tag { color: #9a050f; } .token.selector, .language-autohotkey .token.keyword { color: #00009f; } .token.important, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } .token.class-name, .language-json .token.property { color: #2B91AF; } .token.tag, .token.selector { color: #800000; } .token.attr-name, .token.property, .token.regex, .token.entity { color: #ff0000; } .token.directive.tag .tag { background-color: #ffff00; color: #393A34; } /* overrides color-values for the Line Numbers plugin * http://prismjs.com/plugins/line-numbers/ */ .line-numbers .line-numbers-rows { border-right-color: #a5a5a5; } .line-numbers-rows > span:before { color: #2B91AF; } /* overrides color-values for the Line Highlight plugin * http://prismjs.com/plugins/line-highlight/ */ .line-highlight { background-color: rgba(193, 222, 241, 0.2); background: -webkit-linear-gradient(left, rgba(193, 222, 241, 0.2) 70%, rgba(221, 222, 241, 0)); background: linear-gradient(to right, rgba(193, 222, 241, 0.2) 70%, rgba(221, 222, 241, 0)); }