html.prism {
  code[class*='language-'],
  pre[class*='language-'] {
    color: #7f7f7f;
    background: transparent;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
  }

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

  :not(pre) > code[class*='language-'],
  pre[class*='language-'] {
    background: #2b2b2b;
  }

  :not(pre) > code[class*='language-'] {
    padding: 0.1em;
    border-radius: 0.3em;
    white-space: normal;
  }

  /* Comments */
  .token.block-comment,
  .token.cdata,
  .token.comment,
  .token.doctype,
  .token.prolog {
    color: #797979;
  }

  /* Punctuation */
  .token.punctuation {
    color: #585858;
  }

  /* Tags, attribute names, deleted text, namespaces */
  .token.attr-name,
  .token.deleted,
  .token.namespace,
  .token.tag {
    color: #a6a6a6;
  }

  /* Function names */
  .token.function-name {
    color: #c8c8c8;
  }

  /* Booleans, numbers, function identifiers */
  .token.boolean,
  .token.function,
  .token.number {
    color: #868686;
  }

  /* Classes, constants, properties, symbols */
  .token.class-name,
  .token.constant,
  .token.property,
  .token.symbol {
    color: #c2c2c2;
  }

  /* Keywords, selectors, builtins */
  .token.atrule,
  .token.builtin,
  .token.important,
  .token.keyword,
  .token.selector {
    color: #8d8c8c;
  }

  /* Strings, chars, variables, regex */
  .token.attr-value,
  .token.char,
  .token.regex,
  .token.string,
  .token.variable {
    color: #cecece;
  }

  /* Entities, operators, URLs */
  .token.entity,
  .token.operator,
  .token.url {
    color: #767676;
  }

  /* Bold / Italic */
  .token.bold,
  .token.important {
    font-weight: 700;
  }

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

  /* Entity hover */
  .token.entity {
    cursor: help;
  }
}
