/* Code highlighting styles - Tailwind-inspired dark theme */
/* Only two colors: pink (#ec4899) and blue (#60a5fa), plus light gray for default */
.hljs {
  background: #1e293b;
  color: #e2e8f0;
}
/* Pink for tags, keywords, and function names */
.hljs-tag,
.hljs-name,
.hljs-keyword,
.hljs-function {
  color: #ec4899;
}
/* Blue for attributes and strings */
.hljs-attr,
.hljs-string {
  color: #60a5fa;
}
/* Light gray for everything else - override all other highlight.js classes */
.hljs-number,
.hljs-title,
.hljs-variable,
.hljs-comment,
.hljs-built_in,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-meta,
.hljs-selector-tag,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-template-variable,
.hljs-addition,
.hljs-deletion,
.hljs-section,
.hljs-emphasis,
.hljs-strong,
.hljs-subst,
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-operator,
.hljs-punctuation,
.hljs-regexp,
.hljs-doctag,
.hljs-code,
.hljs-formula,
.hljs-attribute {
  color: #e2e8f0;
}
.hljs-comment {
  font-style: italic;
}






