@charset "UTF-8";
/*!
  Lithium - Bright Highlighting Theme for HighlightJS
  Works with HighlighJS and Prism.

  Copyright (c) 2014 Union of RAD - All rights reserved.

  The code is distributed under the terms of the BSD 3-clause
  License. For the full license text see the LICENSE file.
*/

pre > code {
  display: block;
  color: #111;
  border-left: 8px solid #e8e8e8;
  background: rgb(253,252,255);
  overflow: auto;
  padding: 15px;
  margin-left: -23px;
  margin-right: -15px;

  white-space: pre;
  word-spacing: normal;
  word-break: normal;

  -moz-tab-size: 4;
  tab-size: 4;
}
/* inline literals */
:not(pre) > code {
  background: #F8F7F7;
  padding: .1em .2em .1em .3em;
  margin-left: -.3em;
  margin-right: -.2em;
}

pre > code.language-asciiart {
  font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  border-left: 0;
  margin-left: 0;
  background: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata,
.hljs-phpdoc,
.hljs-comment,
code .comment,
.template_comment, .javadoc {
	color: #ababab;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted,
pre code .string,
.hljs-string {
	color: #319931;
}

.token.punctuation,
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
code .keyword,
.me1 {
	color: #111;
}

.token.boolean {
  color: #CB0532;
}
.token.number,
code .hljs-number {
	color: #7044bb;
    color: #7745D1
}
.token.variable,
code .variable,
.hljs-variable, .envvar {
	color: #2060ad;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: #f92672;
}
.token.atrule,
.token.attr-value {
    color: #e6db74;
}
.token.keyword {
    color: #2F99A1;
}
