/*
 * Syntax highlighting for statically-generated highlight.js markup, keeping the site's original
 * Base16 palette (previously applied to Rouge classes by Jekyll). Scoped under .highlight, the
 * wrapper the post generator emits around each code block.
 */
.highlight {
  color: #d0d0d0;
  background-color: #151515;
}
.highlight code.hljs {
  color: #d0d0d0;
}

/* comments */
.highlight .hljs-comment,
.highlight .hljs-quote {
  color: #505050;
}

/* keywords */
.highlight .hljs-keyword,
.highlight .hljs-selector-tag,
.highlight .hljs-template-tag {
  color: #aa759f;
}

/* types, classes, constants */
.highlight .hljs-type,
.highlight .hljs-class .hljs-title,
.highlight .hljs-title.class_,
.highlight .hljs-title.class_.inherited__,
.highlight .hljs-literal {
  color: #d28445;
}

/* strings, numbers, symbols */
.highlight .hljs-string,
.highlight .hljs-number,
.highlight .hljs-symbol,
.highlight .hljs-bullet,
.highlight .hljs-addition,
.highlight .hljs-code {
  color: #90a959;
}

/* regex */
.highlight .hljs-regexp {
  color: #75b5aa;
}

/* string interpolation, escapes */
.highlight .hljs-subst {
  color: #d0d0d0;
}
.highlight .hljs-char.escape_ {
  color: #8f5536;
}

/* functions, attributes */
.highlight .hljs-title,
.highlight .hljs-title.function_,
.highlight .hljs-function .hljs-title,
.highlight .hljs-attr,
.highlight .hljs-attribute,
.highlight .hljs-property {
  color: #6a9fb5;
}

/* tags, namespaces, sections */
.highlight .hljs-name,
.highlight .hljs-tag,
.highlight .hljs-section,
.highlight .hljs-selector-id,
.highlight .hljs-selector-class,
.highlight .hljs-selector-attr,
.highlight .hljs-selector-pseudo {
  color: #f4bf75;
}

/* variables, built-ins */
.highlight .hljs-variable,
.highlight .hljs-template-variable,
.highlight .hljs-built_in,
.highlight .hljs-params {
  color: #d0d0d0;
}

/* meta, annotations, punctuation */
.highlight .hljs-meta,
.highlight .hljs-meta .hljs-keyword,
.highlight .hljs-doctag {
  color: #f4bf75;
}
.highlight .hljs-operator,
.highlight .hljs-punctuation {
  color: #d0d0d0;
}

/* diff */
.highlight .hljs-deletion {
  color: #ac4142;
}

.highlight .hljs-emphasis {
  font-style: italic;
}
.highlight .hljs-strong {
  font-weight: bold;
}
