pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/

/*
This is left on purpose making default.css the single file that can be lifted
as-is from the repository directly without the need for a build step

Typically this "required" baseline CSS is added by `makestuff.js` during build.
*/

pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/* end baseline CSS */

.hljs {
  background: #F3F3F3;
  color: #444;
}

/* Base color: saturation 0; */

.hljs-subst,
.code .line .subst {
  /* default */
}

/* purposely ignored */



.hljs-comment,
.code .line .comment {
  color: #697070;
}

.hljs-tag,
.hljs-punctuation,
.code .line .tag,
.code .line .punctuation {
  color: rgba(68,68,68,0.66667);
}

.hljs-tag .hljs-name,
.hljs-tag .hljs-attr,
.code .line .tag .name,
.code .line .tag .attr {
  color: #444;
}

.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-name,
.code .line .keyword,
.code .line .attribute,
.code .line .selector-tag,
.code .line .meta .keyword,
.code .line .doctag,
.code .line .name {
  font-weight: bold;
}

/* User color: hue: 0 */

.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion,
.code .line .type,
.code .line .string,
.code .line .number,
.code .line .selector-id,
.code .line .selector-class,
.code .line .quote,
.code .line .template-tag,
.code .line .deletion {
  color: #880000;
}

.hljs-title,
.hljs-section,
.code .line .title,
.code .line .section {
  color: #880000;
  font-weight: bold;
}

.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-operator,
.hljs-selector-pseudo,
.code .line .regexp,
.code .line .symbol,
.code .line .variable,
.code .line .template-variable,
.code .line .link,
.code .line .selector-attr,
.code .line .operator,
.code .line .selector-pseudo {
  color: #ab5656;
}

/* Language color: hue: 90; */

.hljs-literal,
.code .line .literal {
  color: #695;
}

.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition,
.code .line .built_in,
.code .line .bullet,
.code .line .code,
.code .line .addition {
  color: #397300;
}

/* Meta color: hue: 200 */

.hljs-meta,
.code .line .meta {
  color: #1f7199;
}

.hljs-meta .hljs-string,
.code .line .meta .string {
  color: #38a;
}

/* Misc effects */

.hljs-emphasis,
.code .line .emphasis {
  font-style: italic;
}

.hljs-strong,
.code .line .strong {
  font-weight: bold;
}

@media (prefers-color-scheme: dark) {
  pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/*!
  Theme: StackOverflow Dark
  Description: Dark theme as used on stackoverflow.com
  Author: stackoverflow.com
  Maintainer: @Hirse
  Website: https://github.com/StackExchange/Stacks
  License: MIT
  Updated: 2021-05-15

  Updated for @stackoverflow/stacks v0.64.0
  Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
  Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
*/

.hljs {
  /* var(--highlight-color) */
  color: #ffffff;
  /* var(--highlight-bg) */
  background: #1c1b1b;
}

.hljs-subst,
.code .line .subst {
  /* var(--highlight-color) */
  color: #ffffff;
}

.hljs-comment,
.code .line .comment {
  /* var(--highlight-comment) */
  color: #999999;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-section,
.code .line .keyword,
.code .line .selector-tag,
.code .line .meta .keyword,
.code .line .doctag,
.code .line .section {
  /* var(--highlight-keyword) */
  color: #88aece;
}

.hljs-attr,
.code .line .attr {
  /* var(--highlight-attribute); */
  color: #88aece;
}

.hljs-attribute,
.code .line .attribute {
  /* var(--highlight-symbol) */
  color: #c59bc1;
}

.hljs-name,
.hljs-type,
.hljs-number,
.hljs-selector-id,
.hljs-quote,
.hljs-template-tag,
.code .line .name,
.code .line .type,
.code .line .number,
.code .line .selector-id,
.code .line .quote,
.code .line .template-tag {
  /* var(--highlight-namespace) */
  color: #f08d49;
}

.hljs-selector-class,
.code .line .selector-class {
  /* var(--highlight-keyword) */
  color: #88aece;
}

.hljs-string,
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.code .line .string,
.code .line .regexp,
.code .line .symbol,
.code .line .variable,
.code .line .template-variable,
.code .line .link,
.code .line .selector-attr {
  /* var(--highlight-variable) */
  color: #b5bd68;
}

.hljs-meta,
.hljs-selector-pseudo,
.code .line .meta,
.code .line .selector-pseudo {
  /* var(--highlight-keyword) */
  color: #88aece;
}

.hljs-built_in,
.hljs-title,
.hljs-literal,
.code .line .built_in,
.code .line .title,
.code .line .literal {
  /* var(--highlight-literal) */
  color: #f08d49;
}

.hljs-bullet,
.hljs-code,
.code .line .bullet,
.code .line .code {
  /* var(--highlight-punctuation) */
  color: #cccccc;
}

.hljs-meta .hljs-string,
.code .line .meta .string {
  /* var(--highlight-variable) */
  color: #b5bd68;
}

.hljs-deletion,
.code .line .deletion {
  /* var(--highlight-deletion) */
  color: #de7176;
}

.hljs-addition,
.code .line .addition {
  /* var(--highlight-addition) */
  color: #76c490;
}

.hljs-emphasis,
.code .line .emphasis {
  font-style: italic;
}

.hljs-strong,
.code .line .strong {
  font-weight: bold;
}

.hljs-formula,
.hljs-operator,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag,
.code .line .formula,
.code .line .operator,
.code .line .params,
.code .line .property,
.code .line .punctuation,
.code .line .tag {
  /* purposely ignored */
}
}