/*
  Night Owl (Sarah Drasner) ported to highlight.js classes.
  Dark navy bg + same-lightness pastel tokens, hue-coded.
*/
.hljs {
  background: #011627;
  color: #D6DEEB;
  font-weight: 500;
}

/* keywords, storage */
.hljs-keyword {
  color: #C792EA;
  font-weight: bold;
}

/* strings */
.hljs-string {
  color: #ECC48D;
}

/* comments */
.hljs-comment {
  color: #637777;
  font-style: italic;
}

/* function names */
.hljs-title {
  color: #82AAFF;
}

/* types */
.hljs-type {
  color: #FFCB8B;
}

/* built-ins (panic, len, make...) */
.hljs-built_in {
  color: #ADDB67;
}

/* numbers, constants (nil, true, false) */
.hljs-number,
.hljs-literal {
  color: #F78C6C;
}

/* meta, properties */
.hljs-meta {
  color: #7FDBCA;
}

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

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