/**
 * base16-prism (https://github.com/h404bi/base16-prism)
 * @license MIT
 *
 * prism.js Tomorrow theme for JavaScript, CSS and HTML
 * @author Chris Kempson (http:&#x2F;&#x2F;chriskempson.com)
 *
 * Slightly tweaked
 */

code,
pre[class*='language-'] {
  background: none;
  color: #4d4d4c;
  font-family: 'Roboto Mono', monospace;
  font-size: 1em;
  hyphens: none;
  line-height: 1.5;
  tab-size: 2;
  text-align: left;
  white-space: pre;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}

pre[class*='language-']::selection,
pre[class*='language-'] ::selection,
code[class*='language-']::selection,
code[class*='language-'] ::selection {
  background: #d6d6d6;
  color: inherit;
  text-shadow: none;
}

@media print {
  code[class*='language-'],
  pre[class*='language-'] {
    text-shadow: none;
  }
}

/* Code blocks */

pre[class*='language-'] {
  margin: 0.5em 0;
  overflow: auto;
  padding: 1em;
}

:not(pre) > code,
pre[class*='language-'] {
  background: #fcfcfc;
  border-radius: 0.3em;
}

/* Inline code */

:not(pre) > code {
  padding: 0 0.1em 0.1em;
}

.token.comment,
.token.prolog,
.token.cdata {
  color: #8e908c;
}

.token.entity,
.language-css .token.string,
.style .token.string {
  background: #e0e0e0;
  color: #969896;
}

.token.punctuation {
  color: #4d4d4c;
}

.token.variable,
.token.tag,
.token.deleted {
  color: #c82829;
}

.token.property,
.token.number,
.token.boolean,
.token.constant,
.token.url {
  color: #f5871f;
}

.token.class-name,
.token.bold {
  color: #eab700;
}

.token.string,
.token.symbol,
.token.attr-value,
.token.inserted,
.token.atrule {
  color: #718c00;
}

.token.regex,
.token.important {
  color: #3e999f;
}

.token.function,
.token.attr-name {
  color: #4271ae;
}

.token.keyword,
.token.selector,
.token.italic,
.token.char,
.token.builtin {
  color: #8959a8;
}

.token.doctype {
  color: #a3685a;
}

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

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

.token.entity {
  cursor: help;
}

.namespace {
  opacity: 0.7;
}
