/* theme/css/tokyo-night-code.css */
.hljs,
pre code.hljs,
code.hljs {
  background: #24283b !important;
  color: #c0caf5 !important;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
  color: #bb9af7 !important; /* purple */
}
.hljs-string,
.hljs-attribute,
.hljs-attr {
  color: #9ece6a !important; /* green */
}
.hljs-number,
.hljs-literal {
  color: #ff9e64 !important; /* orange */
}
.hljs-variable,
.hljs-tag,
.hljs-regexp,
.hljs-symbol,
.hljs-bullet {
  color: #7dcfff !important; /* cyan */
}
.hljs-comment {
  color: #565f89 !important;
  font-style: italic !important;
}
pre code.hljs {
  background: #24283b !important;
  color: #c0caf5 !important;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
:not(pre) > code.hljs {
  background: transparent;
  border: none;
  padding: 0;
}
