/*
 * highlightjs-material-dark-theme
 * Material Dark theme for Highlight.js
 * Based off of https://github.com/equinusocio/material-theme
 * For use with Highlight.js, https://github.com/isagalaev/highlight.js
 */

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: rgb(38,50,56);
  color: rgb(178,204,214);
}
.hljs > *::selection {
  background-color: #373b41;
}

.hljs-comment {
  color: rgb(84,110,122);
  font-style: italic;
}

.hljs-selector-tag {
  color: #C792EA;
}

.hljs-string,
.hljs-subst {
  color: rgb(195,232,141);
}

.hljs-regexp {
  color: #F77669;
}

.hljs-number {
  color: rgb(255,235,149);
}

.hljs-variable {
  color: rgb(178,204,214);
}

.hljs-keyword {
  color: rgb(199,146,234);
}

.hljs-function > .hljs-title {
  color: rgb(112,214,255);
}

.hljs-tag,
.hljs-attr {
  color: #abb2bf;
}

.hljs-template-tag {
  color: #efd540;
}

.hljs-template-variable {
  color: #82b1ff;
}

.hljs-name {
  color: #e06c75;
}

.hljs-type {
  color: #da4939;
}

.hljs-attribute {
  color: #80CBBF;
}

.hljs-symbol,
.hljs-bullet,
.hljs-built_in,
.hljs-builtin-name,
.hljs-link {
  color: #C792EA;
}

.hljs-params {
  color: #EEFFF7;
}


.hljs-meta {
  color: #75A5FF;
}

.hljs-title {
  color: #75A5FF;
}

.hljs-section {
  color: #ffc66d;
}

.hljs-addition {
  background-color: #144212;
  color: #e6e1dc;
  display: inline-block;
  width: 100%;
}

.hljs-deletion {
  background-color: #600;
  color: #e6e1dc;
  display: inline-block;
  width: 100%;
}

.hljs-selector-class {
  color: #FFCB68;
}

.hljs-selector-id {
  color: #F77669;
}

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

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}
