/**
 * prism.js custom VEX theme for Python
 * @author Cole Guesman
 */

 code[class*="language-"],
 pre[class*="language-"] {
     color: black;
     background: none;
     text-shadow: 0 1px white;
     font-family: MesloLGS, Menlo, Monaco, 'Courier New', monospace;
     font-size: 1em;
     text-align: left;
     white-space: pre;
     word-spacing: normal;
     word-break: normal;
     word-wrap: normal;
     line-height: 1.5;
 
     -moz-tab-size: 4;
     -o-tab-size: 4;
     tab-size: 4;
 
     -webkit-hyphens: none;
     -moz-hyphens: none;
     -ms-hyphens: none;
     hyphens: none;
 }
 
 pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
 code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
     text-shadow: none;
     background: #b3d4fc;
 }
 
 pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
 code[class*="language-"]::selection, code[class*="language-"] ::selection {
     text-shadow: none;
     background: #b3d4fc;
 }
 
 @media print {
     code[class*="language-"],
     pre[class*="language-"] {
         text-shadow: none;
     }
 }
 
 /* Code blocks */
 pre[class*="language-"] {
     padding: 1em;
     margin: .5em 0;
     overflow: auto;
 }
 
 :not(pre) > code[class*="language-"],
 pre[class*="language-"] {
     background: #f5f2f0;
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"] {
     padding: .1em;
     border-radius: .3em;
     white-space: normal;
 }
 
 .token.comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
     fill: #008000;
     color: #008000;
 }
 
 .token.operator,
 .token.punctuation {
     fill: black !important;
     opacity: 1 !important;
 }

 .token.attr-name, .token.attr-value, .token.string, .token.char, .token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable, .token.inserted {
    color: black !important;
 }
 
 .token.namespace {
     opacity: .7;
     fill: #9068B0;
     color: #9068B0;
 }
 
 .token.property,
 .token.tag,
 .token.boolean,
 .token.constant,
 .token.symbol,
 .token.deleted {
     fill: #0000FF;
     color: #0000FF !important;
 }
 
 .token.number {
     fill: #09885A;
     color: #09885A !important;
 }
 
 .token.selector,
 .token.attr-name,
 .token.char,
 .token.inserted {
     fill: #690;
     color: #690;
 }

 .token.string,
 .token.char {
     fill: #A31515;
     color: #A31515 !important;
 }
 
 .token.vexclass {
     fill: #318A98;
     color:#318A98;
 }

 .token.vexclassinstance {
     fill: #1E6471;
     color:#1E6471;
 }

 .token.entity,
 .token.url,
 .language-css .token.string,
 .style .token.string {
     fill: #A31515;
     color: #A31515 !important;
     /* This background color was intended by the author of the orignal theme. Don't think we need it, so commented it out. */
     /* background: hsla(0, 0%, 100%, .5); */
 }
 
 .token.builtin,
 .token.atrule,
 .token.attr-value,
 .token.keyword {
     fill: #0000FF;
     color: #0000FF !important;
 }
 
 .token.function,
 .token.vexfunctions,
 .token.class-name {
     fill: #8A481D;
     color: #8A481D;
 }

 .token.vexenumglobals {
     fill: #F39100;
     color: #F39100;
 }
 
 .token.regex,
 .token.important,
 .token.variable {
     fill: #e90;
     color:#e90;
 }
 
 .token.important,
 .token.bold {
     font-weight: bold;
 }
 .token.italic {
     font-style: italic;
 }
 
 .token.entity {
     cursor: help;
 }
 