/*
 * Custom Prism.js theme for code blocks in post content. Palette
 * reuses the four cluster hues from the main site (lightened for
 * legibility on a dark background) instead of Prism's stock themes,
 * so highlighted code still reads as part of the same brand system.
 */

.post-content pre[class*="language-"] {
  background: #08203A;
  color: #EAF0F7;
  text-shadow: none;
}

.post-content code[class*="language-"] {
  text-shadow: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #8AAAC8;
  font-style: italic;
}

.token.punctuation,
.token.operator {
  color: #8AAAC8;
}

.token.keyword,
.token.tag,
.token.boolean,
.token.constant,
.token.selector {
  color: #6EA8FF;
}

.token.string,
.token.attr-value,
.token.char,
.token.builtin,
.token.inserted {
  color: #5FD8A0;
}

.token.function,
.token.class-name,
.token.regex,
.token.important {
  color: #B98CFF;
}

.token.number,
.token.property,
.token.attr-name,
.token.variable,
.token.symbol {
  color: #FFB366;
}

.token.deleted {
  color: #FF8A80;
}

.token.important,
.token.bold {
  font-weight: 700;
}

.token.italic {
  font-style: italic;
}
