/* Swiss-restrained Prism token theme. Adapts to light/dark via CSS vars. */
:root {
  --tok-str: #0a7d6b;
  --tok-num: #b05730;
}
:root[data-theme="dark"] {
  --tok-str: #5fd0bb;
  --tok-num: #e0a06a;
}

code[class*="language-"],
pre[class*="language-"] {
  color: var(--ink);
  background: none;
  font-family: var(--font-mono);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  tab-size: 2;
  hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: var(--muted);
  font-style: italic;
}
.token.punctuation { color: var(--muted); }
.token.namespace { opacity: 0.7; }

.token.keyword,
.token.atrule,
.token.rule,
.token.important,
.token.operator,
.token.tag,
.token.deleted { color: var(--signal); }

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.inserted { color: var(--tok-str); }

.token.number,
.token.boolean,
.token.constant,
.token.symbol { color: var(--tok-num); }

.token.function,
.token.class-name,
.token.property,
.token.attr-name { color: var(--ink); font-weight: 600; }

.token.builtin,
.token.entity,
.token.variable,
.token.selector { color: var(--ink); }

.token.bold { font-weight: 700; }
.token.italic { font-style: italic; }
