/**
 * Title    : Highlight.js Theme
 * Project  : Creative Coding
 * File     : apps/node-collab-server/public/css/highlight.css
 * Version  : 1.0.0
 * Published: https://github.com/cnichte/creative-coding
 *
 * Custom dark theme for code highlighting.
 *
 * Licence: CC BY-NC-SA 4.0
 * @author Carsten Nichte - 2024, 2026
 */

.hljs {
  color: #c9d1d9;
  background: #1a1a1a;
}

.hljs-comment,
.hljs-quote {
  color: #6e7681;
  font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-addition {
  color: #ff7b72;
}

.hljs-string,
.hljs-attribute,
.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-link {
  color: #a5d6ff;
}

.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
  color: #79c0ff;
}

.hljs-type,
.hljs-class .hljs-title,
.hljs-built_in {
  color: #ffa657;
}

.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-section,
.hljs-title,
.hljs-function {
  color: #d2a8ff;
}

.hljs-deletion,
.hljs-subst {
  color: #ffa198;
}

.hljs-meta {
  color: #8b949e;
}

.hljs-symbol,
.hljs-bullet {
  color: #7ee787;
}

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

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