/* highlightjs-dark.css — dark monochrome theme for code blocks only */
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.75em;
  background: #000;      /* pure black background */
  color: #f5f5f5;        /* main light text */
}

/* Typography-only emphasis */
.hljs-strong {
  font-weight: 700;
}
.hljs-emphasis {
  font-style: italic;
}

/* Comments / less-important text slightly muted */
.hljs-comment,
.hljs-quote,
.hljs-meta {
  color: #888;
}

/* Diff-style cues without color */
.hljs-addition {
  text-decoration: underline;
}
.hljs-deletion {
  text-decoration: line-through;
}

/* Keep links readable by underline, not color */
.hljs-link {
  text-decoration: underline;
}

/* All other token types just inherit the main light text color */
.hljs-bullet,
.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-code,
.hljs-selector-class,
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-attribute,
.hljs-name,
.hljs-variable,
.hljs-params,
.hljs-string,
.hljs-subst,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-symbol,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-template-tag,
.hljs-template-variable {
  color: inherit;
}
