/*
 * Gruvbox Dark Theme for highlight.js
 * Based on the Gruvbox color scheme by morhetz
 * https://github.com/morhetz/gruvbox
 */

.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
/*  background: #282828; */
  background: #303030;
  color: #ebdbb2;
}

/* Comments */
.hljs-comment,
.hljs-quote {
  color: #928374;
  font-style: italic;
}

/* Keywords, literals */
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-type,
.hljs-section,
.hljs-link {
  color: #fb4934;
}

/* Function names, built-in classes */
.hljs-function,
.hljs-title,
.hljs-built_in,
.hljs-class .hljs-title {
  color: #b8bb26;
}

/* Strings */
.hljs-string,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-attr {
  color: #b8bb26;
}

/* Numbers */
.hljs-number,
.hljs-symbol,
.hljs-bullet {
  color: #d3869b;
}

/* Variable, parameters, attributes */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute,
.hljs-tag .hljs-attr,
.hljs-params {
  color: #83a598;
}

/* Regular expressions, special characters */
.hljs-regexp,
.hljs-meta .hljs-string {
  color: #8ec07c;
}

/* Tags (HTML/XML) */
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class {
  color: #8ec07c;
}

/* Deletion */
.hljs-deletion {
  color: #fb4934;
  background-color: #3c3836;
}

/* Addition */
.hljs-addition {
  color: #b8bb26;
  background-color: #3c3836;
}

/* Meta, doctags */
.hljs-meta,
.hljs-doctag {
  color: #fabd2f;
}

/* Operators, special */
.hljs-operator,
.hljs-property {
  color: #fe8019;
}

/* Template tags */
.hljs-template-tag,
.hljs-template-variable {
  color: #fabd2f;
}

/* Emphasis */
.hljs-emphasis {
  font-style: italic;
}

/* Strong */
.hljs-strong {
  font-weight: bold;
}

/* Selector pseudo */
.hljs-selector-pseudo {
  color: #d3869b;
}

/* Subst */
.hljs-subst {
  color: #ebdbb2;
}

/* Formula */
.hljs-formula {
  background-color: #3c3836;
  font-style: italic;
}
