/**
 * prism.js Monokai theme
 * @author Sam Clarke
 */
code[class*="language-"],
pre[class*="language-"] {
  color: #f8f8f2;
  background: none;

  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.4;

  -moz-tab-size: 8;
  -o-tab-size: 8;
  tab-size: 8;

  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
  font-size: 18;
  padding: .8em;
  overflow: auto;
  background: #212529;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: .1em;
  border-radius: .3em;
  white-space: normal;
  background: #212529;
}

.token.comment,
.token.blockquote,
.token.shebang.important,
.token.shebang {
  color: #75715e;
}

/* .ace-monokai .ace_entity.ace_name.ace_tag,
.ace-monokai .ace_keyword,
.ace-monokai .ace_meta.ace_tag,
.ace-monokai .ace_storage { */
.token.operator,
.token.important,
.token.rule,
.token.tag,
.token.deleted,
.token.selector,
.token.prolog,
.token.title .token.punctuation {
  color: #66d9ef;
}

.test-token {
	color: #00FF00;
}

.token.keyword, /*red to blue*/
.token.property,
.token.entity,
.token.atrule,
.token.command,
.token.code {
  color: #66d9ef;
}

.token.regex,
.token.atrule .token.property {
  color: #fd971f;
}

.token.pseudo-element,
.token.id,
.token.class,
.token.class-name,
.token.pseudo-class,
.token.function,
.token.namespace,
.token.inserted,
.token.symbol,
.token.url-reference .token.variable,
.token.attr-name {
  color: #ae81ff;
}

.token.string,
.token.url,
.token.list,
.token.cdata,
.token.attr-value,
.token.attr-value a.token.url-link {
  color: #f9ae58 ; /*#e6db74; F92672*/
}


/* .ace-monokai .ace_constant.ace_character,
.ace-monokai .ace_constant.ace_language,
.ace-monokai .ace_constant.ace_numeric,
.ace-monokai .ace_constant.ace_other { */
.token.constant,
.token.hexcode,
.token.builtin,
.token.number,
.token.boolean {
  color: #a6e22e;
  /* color: #ae81ff; */
}
/*.ace-monokai .ace_punctuation,
 .ace-monokai .ace_punctuation.ace_tag {*/
.token.doctype,
.token.punctuation,
.token.variable,
.token.macro.property {
  color: #f8f8f2;
}

.token.entity {
  cursor: help;
}

.token.title,
.token.title .token.punctuation {
  font-weight: bold;
}

.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

/* YAML */
.language-yaml .token.atrule {
  color: #f92672;
}

/* Bash */
.language-bash .token.function {
  color: #f92672;
}