/* Minimal red-tinted Prism-compatible code highlighting */
code[class*="language-"], pre[class*="language-"] {
  color: var(--nx-text);
  font-family: var(--nx-mono);
  font-size: .92em;
  text-shadow: none;
  tab-size: 2;
  hyphens: none;
}

.token.comment, .token.prolog, .token.doctype, .token.cdata { color: var(--nx-text-faint); font-style: italic; }
.token.punctuation { color: var(--nx-text-dim); }
.token.namespace { opacity: .6; }
.token.property, .token.tag, .token.boolean, .token.number, .token.constant, .token.symbol, .token.deleted {
  color: var(--nx-red-300);
}
.token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted {
  color: #FFA8B0;
}
[data-theme="light"] .token.string { color: #B7152B; }
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string { color: var(--nx-red-200); }
[data-theme="light"] .token.operator { color: var(--nx-red-700); }
.token.atrule, .token.attr-value, .token.keyword { color: #FF7C8A; font-weight: 500; }
[data-theme="light"] .token.keyword { color: var(--nx-red-600); }
.token.function, .token.class-name { color: #FFC4CA; }
[data-theme="light"] .token.function { color: var(--nx-red-700); }
.token.regex, .token.important, .token.variable { color: #FFD7DB; }
.token.important, .token.bold { font-weight: bold; }
.token.italic { font-style: italic; }
