/* Darkmown syntax highlighting — highlight.js classes mapped to $code-* skin
   tokens. Dark mode is automatic: the tokens swap under tokens dark / :theme,
   so this stylesheet ships zero JavaScript. */
.hljs {
  color: var(--code-fg, #e9efe7);
  background: var(--code-bg, #1b2420);
}
.hljs-comment,
.hljs-quote {
  color: var(--code-comment, #7d8a82);
  font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-doctag,
.hljs-name {
  color: var(--code-keyword, #d39bda);
}
.hljs-string,
.hljs-regexp,
.hljs-meta .hljs-string,
.hljs-attr,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition {
  color: var(--code-string, #8fd28a);
}
.hljs-title,
.hljs-title.function_,
.hljs-built_in,
.hljs-class .hljs-title,
.hljs-selector-class,
.hljs-selector-id {
  color: var(--code-function, #82c0e9);
}
.hljs-number,
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta {
  color: var(--code-number, #e3a76f);
}
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-attribute,
.hljs-params,
.hljs-tag,
.hljs-deletion,
.hljs-punctuation,
.hljs-operator {
  color: var(--code-punctuation, #b9c4be);
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: 600;
}
