/* Prism token colours on theme tokens, so highlighted code follows the
   light/dark scheme instead of shipping a fixed palette. */
.token.comment, .token.prolog, .token.doctype, .token.cdata { color: var(--text-3); font-style: italic; }
.token.punctuation { color: var(--text-3); }
.token.property, .token.tag, .token.constant, .token.symbol, .token.deleted { color: var(--bad); }
.token.boolean, .token.number { color: var(--warn); }
.token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: var(--good); }
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable { color: var(--text-2); }
.token.atrule, .token.attr-value, .token.function, .token.class-name { color: var(--accent); }
.token.keyword { color: var(--accent); font-weight: 600; }
.token.regex, .token.important { color: var(--warn); }
.token.important, .token.bold { font-weight: 700; }
.token.italic { font-style: italic; }
