/* firehose — one voice. Tokens + dark mode + fluid type; no breakpoints. */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,600;1,400;1,600&family=IBM+Plex+Sans:wght@400;600&display=swap");
:root {
  --measure: 68ch;
  --font-body: "Crimson Pro", Georgia, serif;
  --font-chrome: "IBM Plex Sans", system-ui, sans-serif;
  --step-0: clamp(1.05rem, 0.9rem + 0.6vw, 1.25rem);
  --step--1: clamp(0.82rem, 0.74rem + 0.3vw, 0.95rem);
  --line: 1.6;

  /* Cool utility palette: a river is for scanning, not lingering (pj keeps
     the warm paper). ONE working accent, reserved for things that go
     somewhere — titles and links; everything else stays quiet. */
  --ink: #33373d;
  --bg: #f7f8fa;
  --muted: #6b7280;
  --rule: #e2e5ea;
  --accent: #1e5f8a;         /* titles + links: the eye's latch */
  --accent-visited: #64798c; /* already-clicked titles fade: free triage */
  --link: var(--accent);
  --bad: #b3453f;
  --code-bg: #eef0f4;
  color-scheme: light dark;
}
/* Theme resolution: user toggle (localStorage -> data-theme) beats config
   default (baked data-theme) beats the OS. Absent attribute = auto. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #d3d7dd;
    --bg: #15181c;
    --muted: #8d95a0;
    --rule: #2a2e35;
    --accent: #7db2dd;
    --accent-visited: #78899a;
    --link: var(--accent);
    --bad: #e08a85;
    --code-bg: #1e2228;
  }
}
:root[data-theme="dark"] {
    --ink: #d3d7dd;
    --bg: #15181c;
    --muted: #8d95a0;
    --rule: #2a2e35;
    --accent: #7db2dd;
    --accent-visited: #78899a;
    --link: var(--accent);
    --bad: #e08a85;
    --code-bg: #1e2228;
}
:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font: var(--step-0)/var(--line) var(--font-body);
  max-width: var(--measure);
  margin-inline: auto;
  padding: clamp(1rem, 4vw, 3rem) 1.25rem;
}

a { color: var(--link); }

.chrome, .feeditem__meta, .nav { font-family: var(--font-chrome); }

.nav { font-size: var(--step--1); display: flex; flex-wrap: wrap; gap: 0.75em; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--accent); }
.nav button.themetoggle {
  margin-left: auto; background: none; border: none; padding: 0;
  cursor: pointer; color: var(--muted); font: inherit; font-size: 1.05em;
}
.nav button.themetoggle:hover { color: var(--accent); }
.nav a.nav__current { color: var(--ink); font-weight: 600; }

/* Explicit 600: the loaded webfont faces are 400/600; browser-default bold
   (700) would force a synthesized face. */
.page__title, .feeditem__title, strong, b, th { font-weight: 600; }

.page__title { font-size: 1.4em; margin: 0.5em 0 0.9em; }

.feeditem { padding: 0.85em 0; border-top: 1px solid var(--rule); }

.feeditem__title { font-size: 1.15em; margin: 0 0 0.15em; line-height: 1.3; }
.feeditem__title a { color: var(--accent); text-decoration: none; }
.feeditem__title a:visited { color: var(--accent-visited); }
.feeditem__title a:hover { text-decoration: underline; }

.feeditem__meta { font-size: var(--step--1); color: var(--muted); margin: 0 0 0.45em; }

/* Publisher thematic breaks pass the structural policy (by design), but a
   full-width rule inside a body would mimic the item separator. Render them
   short, centered, dotted: clearly a break WITHIN a piece. */
.feeditem__body hr { border: none; border-top: 1px dotted var(--rule); width: 25%; margin: 1.1em auto; }
.feeditem__meta a { color: var(--muted); }
.feeditem__section { text-transform: uppercase; letter-spacing: 0.05em; }

.feeditem__body { overflow-wrap: anywhere; }
.feeditem__body img, .feeditem__full img {
  max-width: 100%; max-height: 24rem; height: auto; display: block; margin: 0.75em 0;
}
.feeditem__leadimage { margin: 0 0 0.75em; }
.feeditem__leadimage img { max-height: 18rem; }

blockquote { margin: 0.75em 0; padding-left: 1em; border-left: 3px solid var(--rule); color: var(--muted); }

pre { background: var(--code-bg); padding: 0.75em 1em; overflow-x: auto; font-size: 0.85em; }
code { background: var(--code-bg); padding: 0.1em 0.3em; }
pre code { padding: 0; background: none; }

details.feeditem__more summary {
  cursor: pointer; font-family: var(--font-chrome);
  font-size: var(--step--1); color: var(--link);
}

button.copy {
  font: inherit; font-size: 1em; color: var(--muted);
  background: none; border: none; padding: 0; cursor: pointer;
}
button.copy:hover { color: var(--ink); }

.footer {
  font-family: var(--font-chrome); font-size: var(--step--1); color: var(--muted);
  text-align: center; margin: 2.5em 0 1em;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--accent); }

.readmark {
  font-family: var(--font-chrome); font-size: var(--step--1);
  color: var(--accent); text-align: center; letter-spacing: 0.1em;
  margin: 0.4em 0; border-top: 1px dotted var(--accent); padding-top: 0.4em;
}

/* The health table is wider than a phone; scroll it sideways rather than
   crushing columns (fluid design, still no breakpoints). */
.health-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.health { border-collapse: collapse; width: 100%; min-width: 44rem; font-family: var(--font-chrome); font-size: var(--step--1); }
.health th, .health td { text-align: left; padding: 0.4em 0.6em; border-bottom: 1px solid var(--rule); vertical-align: top; }
.health__url { color: var(--muted); overflow-wrap: anywhere; }
.health__cats { color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85em; }
.health--bad td { color: var(--bad); }
.health--quiet td { color: var(--muted); }

/* chroma syntax highlighting */
/* Background */ .bg { background-color: #f7f7f7; }
/* PreWrapper */ .chroma { background-color: #f7f7f7; -webkit-text-size-adjust: none; }
/* Error */ .chroma .err { color: #f6f8fa; background-color: #82071e }
/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ .chroma .hl { background-color: #dedede }
/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
/* Line */ .chroma .line { display: flex; }
/* Keyword */ .chroma .k { color: #cf222e }
/* KeywordConstant */ .chroma .kc { color: #cf222e }
/* KeywordDeclaration */ .chroma .kd { color: #cf222e }
/* KeywordNamespace */ .chroma .kn { color: #cf222e }
/* KeywordPseudo */ .chroma .kp { color: #cf222e }
/* KeywordReserved */ .chroma .kr { color: #cf222e }
/* KeywordType */ .chroma .kt { color: #cf222e }
/* NameAttribute */ .chroma .na { color: #1f2328 }
/* NameClass */ .chroma .nc { color: #1f2328 }
/* NameConstant */ .chroma .no { color: #0550ae }
/* NameDecorator */ .chroma .nd { color: #0550ae }
/* NameEntity */ .chroma .ni { color: #6639ba }
/* NameLabel */ .chroma .nl { color: #990000; font-weight: bold }
/* NameNamespace */ .chroma .nn { color: #24292e }
/* NameOther */ .chroma .nx { color: #1f2328 }
/* NameTag */ .chroma .nt { color: #0550ae }
/* NameBuiltin */ .chroma .nb { color: #6639ba }
/* NameBuiltinPseudo */ .chroma .bp { color: #6a737d }
/* NameVariable */ .chroma .nv { color: #953800 }
/* NameVariableClass */ .chroma .vc { color: #953800 }
/* NameVariableGlobal */ .chroma .vg { color: #953800 }
/* NameVariableInstance */ .chroma .vi { color: #953800 }
/* NameVariableMagic */ .chroma .vm { color: #953800 }
/* NameFunction */ .chroma .nf { color: #6639ba }
/* NameFunctionMagic */ .chroma .fm { color: #6639ba }
/* LiteralString */ .chroma .s { color: #0a3069 }
/* LiteralStringAffix */ .chroma .sa { color: #0a3069 }
/* LiteralStringBacktick */ .chroma .sb { color: #0a3069 }
/* LiteralStringChar */ .chroma .sc { color: #0a3069 }
/* LiteralStringDelimiter */ .chroma .dl { color: #0a3069 }
/* LiteralStringDoc */ .chroma .sd { color: #0a3069 }
/* LiteralStringDouble */ .chroma .s2 { color: #0a3069 }
/* LiteralStringEscape */ .chroma .se { color: #0a3069 }
/* LiteralStringHeredoc */ .chroma .sh { color: #0a3069 }
/* LiteralStringInterpol */ .chroma .si { color: #0a3069 }
/* LiteralStringOther */ .chroma .sx { color: #0a3069 }
/* LiteralStringRegex */ .chroma .sr { color: #0a3069 }
/* LiteralStringSingle */ .chroma .s1 { color: #0a3069 }
/* LiteralStringSymbol */ .chroma .ss { color: #032f62 }
/* LiteralNumber */ .chroma .m { color: #0550ae }
/* LiteralNumberBin */ .chroma .mb { color: #0550ae }
/* LiteralNumberFloat */ .chroma .mf { color: #0550ae }
/* LiteralNumberHex */ .chroma .mh { color: #0550ae }
/* LiteralNumberInteger */ .chroma .mi { color: #0550ae }
/* LiteralNumberIntegerLong */ .chroma .il { color: #0550ae }
/* LiteralNumberOct */ .chroma .mo { color: #0550ae }
/* Operator */ .chroma .o { color: #0550ae }
/* OperatorWord */ .chroma .ow { color: #0550ae }
/* OperatorReserved */ .chroma .or { color: #0550ae }
/* Punctuation */ .chroma .p { color: #1f2328 }
/* Comment */ .chroma .c { color: #57606a }
/* CommentHashbang */ .chroma .ch { color: #57606a }
/* CommentMultiline */ .chroma .cm { color: #57606a }
/* CommentSingle */ .chroma .c1 { color: #57606a }
/* CommentSpecial */ .chroma .cs { color: #57606a }
/* CommentPreproc */ .chroma .cp { color: #57606a }
/* CommentPreprocFile */ .chroma .cpf { color: #57606a }
/* GenericDeleted */ .chroma .gd { color: #82071e; background-color: #ffebe9 }
/* GenericEmph */ .chroma .ge { color: #1f2328 }
/* GenericInserted */ .chroma .gi { color: #116329; background-color: #dafbe1 }
/* GenericOutput */ .chroma .go { color: #1f2328 }
/* GenericUnderline */ .chroma .gl { text-decoration: underline }
/* TextWhitespace */ .chroma .w { color: #ffffff }
@media (prefers-color-scheme: dark) {
/* Background */ :root:not([data-theme="light"]) .bg { color: #e6edf3; background-color: #0d1117; }
/* PreWrapper */ :root:not([data-theme="light"]) .chroma { color: #e6edf3; background-color: #0d1117; -webkit-text-size-adjust: none; }
/* Error */ :root:not([data-theme="light"]) .chroma .err { color: #f85149 }
/* LineLink */ :root:not([data-theme="light"]) .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
/* LineTableTD */ :root:not([data-theme="light"]) .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ :root:not([data-theme="light"]) .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ :root:not([data-theme="light"]) .chroma .hl { background-color: #6e7681 }
/* LineNumbersTable */ :root:not([data-theme="light"]) .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #737679 }
/* LineNumbers */ :root:not([data-theme="light"]) .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #6e7681 }
/* Line */ :root:not([data-theme="light"]) .chroma .line { display: flex; }
/* Keyword */ :root:not([data-theme="light"]) .chroma .k { color: #ff7b72 }
/* KeywordConstant */ :root:not([data-theme="light"]) .chroma .kc { color: #79c0ff }
/* KeywordDeclaration */ :root:not([data-theme="light"]) .chroma .kd { color: #ff7b72 }
/* KeywordNamespace */ :root:not([data-theme="light"]) .chroma .kn { color: #ff7b72 }
/* KeywordPseudo */ :root:not([data-theme="light"]) .chroma .kp { color: #79c0ff }
/* KeywordReserved */ :root:not([data-theme="light"]) .chroma .kr { color: #ff7b72 }
/* KeywordType */ :root:not([data-theme="light"]) .chroma .kt { color: #ff7b72 }
/* NameClass */ :root:not([data-theme="light"]) .chroma .nc { color: #f0883e; font-weight: bold }
/* NameConstant */ :root:not([data-theme="light"]) .chroma .no { color: #79c0ff; font-weight: bold }
/* NameDecorator */ :root:not([data-theme="light"]) .chroma .nd { color: #d2a8ff; font-weight: bold }
/* NameEntity */ :root:not([data-theme="light"]) .chroma .ni { color: #ffa657 }
/* NameException */ :root:not([data-theme="light"]) .chroma .ne { color: #f0883e; font-weight: bold }
/* NameLabel */ :root:not([data-theme="light"]) .chroma .nl { color: #79c0ff; font-weight: bold }
/* NameNamespace */ :root:not([data-theme="light"]) .chroma .nn { color: #ff7b72 }
/* NameProperty */ :root:not([data-theme="light"]) .chroma .py { color: #79c0ff }
/* NameTag */ :root:not([data-theme="light"]) .chroma .nt { color: #7ee787 }
/* NameVariable */ :root:not([data-theme="light"]) .chroma .nv { color: #79c0ff }
/* NameVariableClass */ :root:not([data-theme="light"]) .chroma .vc { color: #79c0ff }
/* NameVariableGlobal */ :root:not([data-theme="light"]) .chroma .vg { color: #79c0ff }
/* NameVariableInstance */ :root:not([data-theme="light"]) .chroma .vi { color: #79c0ff }
/* NameVariableMagic */ :root:not([data-theme="light"]) .chroma .vm { color: #79c0ff }
/* NameFunction */ :root:not([data-theme="light"]) .chroma .nf { color: #d2a8ff; font-weight: bold }
/* NameFunctionMagic */ :root:not([data-theme="light"]) .chroma .fm { color: #d2a8ff; font-weight: bold }
/* Literal */ :root:not([data-theme="light"]) .chroma .l { color: #a5d6ff }
/* LiteralDate */ :root:not([data-theme="light"]) .chroma .ld { color: #79c0ff }
/* LiteralString */ :root:not([data-theme="light"]) .chroma .s { color: #a5d6ff }
/* LiteralStringAffix */ :root:not([data-theme="light"]) .chroma .sa { color: #79c0ff }
/* LiteralStringBacktick */ :root:not([data-theme="light"]) .chroma .sb { color: #a5d6ff }
/* LiteralStringChar */ :root:not([data-theme="light"]) .chroma .sc { color: #a5d6ff }
/* LiteralStringDelimiter */ :root:not([data-theme="light"]) .chroma .dl { color: #79c0ff }
/* LiteralStringDoc */ :root:not([data-theme="light"]) .chroma .sd { color: #a5d6ff }
/* LiteralStringDouble */ :root:not([data-theme="light"]) .chroma .s2 { color: #a5d6ff }
/* LiteralStringEscape */ :root:not([data-theme="light"]) .chroma .se { color: #79c0ff }
/* LiteralStringHeredoc */ :root:not([data-theme="light"]) .chroma .sh { color: #79c0ff }
/* LiteralStringInterpol */ :root:not([data-theme="light"]) .chroma .si { color: #a5d6ff }
/* LiteralStringOther */ :root:not([data-theme="light"]) .chroma .sx { color: #a5d6ff }
/* LiteralStringRegex */ :root:not([data-theme="light"]) .chroma .sr { color: #79c0ff }
/* LiteralStringSingle */ :root:not([data-theme="light"]) .chroma .s1 { color: #a5d6ff }
/* LiteralStringSymbol */ :root:not([data-theme="light"]) .chroma .ss { color: #a5d6ff }
/* LiteralNumber */ :root:not([data-theme="light"]) .chroma .m { color: #a5d6ff }
/* LiteralNumberBin */ :root:not([data-theme="light"]) .chroma .mb { color: #a5d6ff }
/* LiteralNumberFloat */ :root:not([data-theme="light"]) .chroma .mf { color: #a5d6ff }
/* LiteralNumberHex */ :root:not([data-theme="light"]) .chroma .mh { color: #a5d6ff }
/* LiteralNumberInteger */ :root:not([data-theme="light"]) .chroma .mi { color: #a5d6ff }
/* LiteralNumberIntegerLong */ :root:not([data-theme="light"]) .chroma .il { color: #a5d6ff }
/* LiteralNumberOct */ :root:not([data-theme="light"]) .chroma .mo { color: #a5d6ff }
/* Operator */ :root:not([data-theme="light"]) .chroma .o { color: #ff7b72; font-weight: bold }
/* OperatorWord */ :root:not([data-theme="light"]) .chroma .ow { color: #ff7b72; font-weight: bold }
/* OperatorReserved */ :root:not([data-theme="light"]) .chroma .or { color: #ff7b72; font-weight: bold }
/* Comment */ :root:not([data-theme="light"]) .chroma .c { color: #8b949e; font-style: italic }
/* CommentHashbang */ :root:not([data-theme="light"]) .chroma .ch { color: #8b949e; font-style: italic }
/* CommentMultiline */ :root:not([data-theme="light"]) .chroma .cm { color: #8b949e; font-style: italic }
/* CommentSingle */ :root:not([data-theme="light"]) .chroma .c1 { color: #8b949e; font-style: italic }
/* CommentSpecial */ :root:not([data-theme="light"]) .chroma .cs { color: #8b949e; font-weight: bold; font-style: italic }
/* CommentPreproc */ :root:not([data-theme="light"]) .chroma .cp { color: #8b949e; font-weight: bold; font-style: italic }
/* CommentPreprocFile */ :root:not([data-theme="light"]) .chroma .cpf { color: #8b949e; font-weight: bold; font-style: italic }
/* GenericDeleted */ :root:not([data-theme="light"]) .chroma .gd { color: #ffa198; background-color: #490202 }
/* GenericEmph */ :root:not([data-theme="light"]) .chroma .ge { font-style: italic }
/* GenericError */ :root:not([data-theme="light"]) .chroma .gr { color: #ffa198 }
/* GenericHeading */ :root:not([data-theme="light"]) .chroma .gh { color: #79c0ff; font-weight: bold }
/* GenericInserted */ :root:not([data-theme="light"]) .chroma .gi { color: #56d364; background-color: #0f5323 }
/* GenericOutput */ :root:not([data-theme="light"]) .chroma .go { color: #8b949e }
/* GenericPrompt */ :root:not([data-theme="light"]) .chroma .gp { color: #8b949e }
/* GenericStrong */ :root:not([data-theme="light"]) .chroma .gs { font-weight: bold }
/* GenericSubheading */ :root:not([data-theme="light"]) .chroma .gu { color: #79c0ff }
/* GenericTraceback */ :root:not([data-theme="light"]) .chroma .gt { color: #ff7b72 }
/* GenericUnderline */ :root:not([data-theme="light"]) .chroma .gl { text-decoration: underline }
/* TextWhitespace */ :root:not([data-theme="light"]) .chroma .w { color: #6e7681 }
}
/* Background */ :root[data-theme="dark"] .bg { color: #e6edf3; background-color: #0d1117; }
/* PreWrapper */ :root[data-theme="dark"] .chroma { color: #e6edf3; background-color: #0d1117; -webkit-text-size-adjust: none; }
/* Error */ :root[data-theme="dark"] .chroma .err { color: #f85149 }
/* LineLink */ :root[data-theme="dark"] .chroma .lnlinks { outline: none; text-decoration: none; color: inherit }
/* LineTableTD */ :root[data-theme="dark"] .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
/* LineTable */ :root[data-theme="dark"] .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
/* LineHighlight */ :root[data-theme="dark"] .chroma .hl { background-color: #6e7681 }
/* LineNumbersTable */ :root[data-theme="dark"] .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #737679 }
/* LineNumbers */ :root[data-theme="dark"] .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #6e7681 }
/* Line */ :root[data-theme="dark"] .chroma .line { display: flex; }
/* Keyword */ :root[data-theme="dark"] .chroma .k { color: #ff7b72 }
/* KeywordConstant */ :root[data-theme="dark"] .chroma .kc { color: #79c0ff }
/* KeywordDeclaration */ :root[data-theme="dark"] .chroma .kd { color: #ff7b72 }
/* KeywordNamespace */ :root[data-theme="dark"] .chroma .kn { color: #ff7b72 }
/* KeywordPseudo */ :root[data-theme="dark"] .chroma .kp { color: #79c0ff }
/* KeywordReserved */ :root[data-theme="dark"] .chroma .kr { color: #ff7b72 }
/* KeywordType */ :root[data-theme="dark"] .chroma .kt { color: #ff7b72 }
/* NameClass */ :root[data-theme="dark"] .chroma .nc { color: #f0883e; font-weight: bold }
/* NameConstant */ :root[data-theme="dark"] .chroma .no { color: #79c0ff; font-weight: bold }
/* NameDecorator */ :root[data-theme="dark"] .chroma .nd { color: #d2a8ff; font-weight: bold }
/* NameEntity */ :root[data-theme="dark"] .chroma .ni { color: #ffa657 }
/* NameException */ :root[data-theme="dark"] .chroma .ne { color: #f0883e; font-weight: bold }
/* NameLabel */ :root[data-theme="dark"] .chroma .nl { color: #79c0ff; font-weight: bold }
/* NameNamespace */ :root[data-theme="dark"] .chroma .nn { color: #ff7b72 }
/* NameProperty */ :root[data-theme="dark"] .chroma .py { color: #79c0ff }
/* NameTag */ :root[data-theme="dark"] .chroma .nt { color: #7ee787 }
/* NameVariable */ :root[data-theme="dark"] .chroma .nv { color: #79c0ff }
/* NameVariableClass */ :root[data-theme="dark"] .chroma .vc { color: #79c0ff }
/* NameVariableGlobal */ :root[data-theme="dark"] .chroma .vg { color: #79c0ff }
/* NameVariableInstance */ :root[data-theme="dark"] .chroma .vi { color: #79c0ff }
/* NameVariableMagic */ :root[data-theme="dark"] .chroma .vm { color: #79c0ff }
/* NameFunction */ :root[data-theme="dark"] .chroma .nf { color: #d2a8ff; font-weight: bold }
/* NameFunctionMagic */ :root[data-theme="dark"] .chroma .fm { color: #d2a8ff; font-weight: bold }
/* Literal */ :root[data-theme="dark"] .chroma .l { color: #a5d6ff }
/* LiteralDate */ :root[data-theme="dark"] .chroma .ld { color: #79c0ff }
/* LiteralString */ :root[data-theme="dark"] .chroma .s { color: #a5d6ff }
/* LiteralStringAffix */ :root[data-theme="dark"] .chroma .sa { color: #79c0ff }
/* LiteralStringBacktick */ :root[data-theme="dark"] .chroma .sb { color: #a5d6ff }
/* LiteralStringChar */ :root[data-theme="dark"] .chroma .sc { color: #a5d6ff }
/* LiteralStringDelimiter */ :root[data-theme="dark"] .chroma .dl { color: #79c0ff }
/* LiteralStringDoc */ :root[data-theme="dark"] .chroma .sd { color: #a5d6ff }
/* LiteralStringDouble */ :root[data-theme="dark"] .chroma .s2 { color: #a5d6ff }
/* LiteralStringEscape */ :root[data-theme="dark"] .chroma .se { color: #79c0ff }
/* LiteralStringHeredoc */ :root[data-theme="dark"] .chroma .sh { color: #79c0ff }
/* LiteralStringInterpol */ :root[data-theme="dark"] .chroma .si { color: #a5d6ff }
/* LiteralStringOther */ :root[data-theme="dark"] .chroma .sx { color: #a5d6ff }
/* LiteralStringRegex */ :root[data-theme="dark"] .chroma .sr { color: #79c0ff }
/* LiteralStringSingle */ :root[data-theme="dark"] .chroma .s1 { color: #a5d6ff }
/* LiteralStringSymbol */ :root[data-theme="dark"] .chroma .ss { color: #a5d6ff }
/* LiteralNumber */ :root[data-theme="dark"] .chroma .m { color: #a5d6ff }
/* LiteralNumberBin */ :root[data-theme="dark"] .chroma .mb { color: #a5d6ff }
/* LiteralNumberFloat */ :root[data-theme="dark"] .chroma .mf { color: #a5d6ff }
/* LiteralNumberHex */ :root[data-theme="dark"] .chroma .mh { color: #a5d6ff }
/* LiteralNumberInteger */ :root[data-theme="dark"] .chroma .mi { color: #a5d6ff }
/* LiteralNumberIntegerLong */ :root[data-theme="dark"] .chroma .il { color: #a5d6ff }
/* LiteralNumberOct */ :root[data-theme="dark"] .chroma .mo { color: #a5d6ff }
/* Operator */ :root[data-theme="dark"] .chroma .o { color: #ff7b72; font-weight: bold }
/* OperatorWord */ :root[data-theme="dark"] .chroma .ow { color: #ff7b72; font-weight: bold }
/* OperatorReserved */ :root[data-theme="dark"] .chroma .or { color: #ff7b72; font-weight: bold }
/* Comment */ :root[data-theme="dark"] .chroma .c { color: #8b949e; font-style: italic }
/* CommentHashbang */ :root[data-theme="dark"] .chroma .ch { color: #8b949e; font-style: italic }
/* CommentMultiline */ :root[data-theme="dark"] .chroma .cm { color: #8b949e; font-style: italic }
/* CommentSingle */ :root[data-theme="dark"] .chroma .c1 { color: #8b949e; font-style: italic }
/* CommentSpecial */ :root[data-theme="dark"] .chroma .cs { color: #8b949e; font-weight: bold; font-style: italic }
/* CommentPreproc */ :root[data-theme="dark"] .chroma .cp { color: #8b949e; font-weight: bold; font-style: italic }
/* CommentPreprocFile */ :root[data-theme="dark"] .chroma .cpf { color: #8b949e; font-weight: bold; font-style: italic }
/* GenericDeleted */ :root[data-theme="dark"] .chroma .gd { color: #ffa198; background-color: #490202 }
/* GenericEmph */ :root[data-theme="dark"] .chroma .ge { font-style: italic }
/* GenericError */ :root[data-theme="dark"] .chroma .gr { color: #ffa198 }
/* GenericHeading */ :root[data-theme="dark"] .chroma .gh { color: #79c0ff; font-weight: bold }
/* GenericInserted */ :root[data-theme="dark"] .chroma .gi { color: #56d364; background-color: #0f5323 }
/* GenericOutput */ :root[data-theme="dark"] .chroma .go { color: #8b949e }
/* GenericPrompt */ :root[data-theme="dark"] .chroma .gp { color: #8b949e }
/* GenericStrong */ :root[data-theme="dark"] .chroma .gs { font-weight: bold }
/* GenericSubheading */ :root[data-theme="dark"] .chroma .gu { color: #79c0ff }
/* GenericTraceback */ :root[data-theme="dark"] .chroma .gt { color: #ff7b72 }
/* GenericUnderline */ :root[data-theme="dark"] .chroma .gl { text-decoration: underline }
/* TextWhitespace */ :root[data-theme="dark"] .chroma .w { color: #6e7681 }
