/*
 * pico8
 * iivii
 * https://github.com/iiviigames
 * Remixed from "Hopscotch" by Jan T. Sott
 * https://github.com/idleberg/Hopscotch
 *
 * This work is licensed under the Creative Commons CC0 1.0 Universal License
 */ 

/* Comment */
.hljs-comment {
  color: #83769C;
}

/* Function Names*/
.hljs-title {
	color: #FFF1E8;
}

/* Red */
.hljs-variable,
.hljs-attribute,
.hljs-tag,
.hljs-regexp,
.ruby .hljs-constant,
.xml .hljs-tag .hljs-title,
.xml .hljs-pi,
.xml .hljs-doctype,
.html .hljs-doctype,
.css .hljs-id,
.css .hljs-class,
.css .hljs-pseudo {
  color: #FF5370;
}

/*PICO-8 Values*/
/* Blue */
.hljs-number,
.hljs-preprocessor,
.hljs-literal,
.hljs-constant  {
  color: #29ADFF;
}

/*Function parameters*/
.hljs-params {
	color: #FFF1E8;
}

/*PICO-8 Built Ins*/
.hljs-built_in {
	color: #00E436;
}

/* Yellow */
.ruby .hljs-class .hljs-title,
.css .hljs-rules .hljs-attribute {
  color: #fdcc59;
}

/* Green */
.hljs-string,
.hljs-value,
.hljs-inheritance,
.hljs-header,
.ruby .hljs-symbol,
.xml .hljs-cdata {
  color: #29ADFF;
}

/* Aqua */
.css .hljs-hexcolor {
  color: #149b93;
}

/* Blue */
.hljs-function,
.python .hljs-decorator,
.python .hljs-title,
.ruby .hljs-function .hljs-title,
.ruby .hljs-title .hljs-keyword,
.perl .hljs-sub,
.javascript .hljs-title,
.coffeescript .hljs-title {
  color: #1290bf;
}

/* Purple */
.hljs-keyword,
.javascript .hljs-function {
  color: #FF77A8;
}

.hljs {
  display: block;
  background: #1D2B53;
  color: #C2C3C7;
  padding: 0.5em;
  /*border-radius: 4px;*/
}

.coffeescript .javascript,
.javascript .xml,
.tex .hljs-formula,
.xml .javascript,
.xml .vbscript,
.xml .css,
.xml .hljs-cdata {
  opacity: 0.5;
}
