/*
 * GitHub Dark theme for highlight.js
 * Based on GitHub's dark theme
 */

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #c9d1d9;
  background: #0d1117;
}

.hljs-comment,
.hljs-quote {
  color: #8b949e;
  font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-type,
.hljs-addition {
  color: #ff7b72;
}

.hljs-number,
.hljs-selector-attr,
.hljs-selector-pseudo {
  color: #79c0ff;
}

.hljs-string,
.hljs-doctag,
.hljs-regexp {
  color: #a5d6ff;
}

.hljs-title,
.hljs-name,
.hljs-section,
.hljs-built_in {
  color: #d2a8ff;
}

.hljs-variable,
.hljs-template-variable,
.hljs-selector-id,
.hljs-class .hljs-title {
  color: #ffa657;
}

.hljs-section,
.hljs-name,
.hljs-strong {
  font-weight: bold;
}

.hljs-symbol,
.hljs-bullet,
.hljs-subst,
.hljs-meta,
.hljs-link {
  color: #f2cc60;
}

.hljs-deletion {
  color: #f85149;
}

.hljs-formula {
  background: #161b22;
}

.hljs-attr,
.hljs-attribute {
  color: #7ee787;
}

.hljs-emphasis {
  font-style: italic;
}