@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/fonts/Newsreader-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design tokens

   Type rides one modular scale (ratio 1.2, base 17px = 1rem):
     --step--2  0.6944rem (11.8px)  table headers, overline labels
     --step--1  0.8333rem (14.2px)  meta, dates, labels, code, tables
     --step-0   1rem      (17px)    body, nav
     --step-1   1.2rem    (20.4px)  site title, lede, h3
     --step-2   1.44rem   (24.5px)  h2, homepage title
     --step-3   1.728rem  (29.4px)  post h1

   Themes: every color is declared exactly once via light-dark(). The
   default color-scheme follows the OS; the header toggle forces one by
   setting html[data-theme] (persisted in localStorage), which flips
   color-scheme and with it every token.
   ========================================================================== */
:root {
  color-scheme: light dark;

  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono:
    "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono",
    Consolas, "Courier New", monospace;

  --step--2: 0.6944rem;
  --step--1: 0.8333rem;
  --step-0: 1rem;
  --step-1: 1.2rem;
  --step-2: 1.44rem;
  --step-3: 1.728rem;

  /* Shared shape + motion tokens (kept consistent across the whole UI). */
  --radius: 8px; /* cards, code blocks, tables, buttons */
  --radius-sm: 4px; /* inline code, chips, small marks */
  --transition: 0.15s ease;

  --color-bg: light-dark(#fcfcfc, #14161a);
  --color-text: light-dark(#212529, #cfd3d7);
  --color-heading: light-dark(#0b0d0f, #f1f2f3);
  --color-muted: light-dark(#6a7076, #8f959b);
  --color-border: light-dark(#e7e8e9, #2a2d32);
  --color-sky: #6cabdd;
  --color-accent: light-dark(#1c74b4, #85b8e6);
  --color-selection-text: #08263c;
  --color-bg-code: light-dark(#f4f5f5, #1b1e23);
  --color-bg-hover: light-dark(#f2f7fb, #1a2028);
  --color-underline: light-dark(#c9cbcd, #43474c);

  --measure: 45.5rem;
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
}

/* === Reset / base === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 106.25%; /* 1rem = 17px */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Large monitors: scale the root up (and widen the column) so the page fills
   more of a wide display without stretching the line length past a comfortable
   measure. Because --measure is in rem, bumping the root font-size grows the
   column in pixels while keeping the characters-per-line roughly constant, and
   the whole UI (text, nav, footer) scales together. MacBook-class widths
   (<= 1512 px) are untouched. Placed after the base html rule so the
   font-size override wins on source order. */
@media (min-width: 1600px) {
  html {
    font-size: 112.5%; /* 1rem = 18px */
  }
  :root {
    --measure: 50rem;
  }
}

@media (min-width: 2200px) {
  html {
    font-size: 125%; /* 1rem = 20px */
  }
  :root {
    --measure: 54rem;
  }
}

body {
  margin: 0;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
}

::selection {
  background-color: var(--color-sky);
  color: var(--color-selection-text);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background-color: var(--color-heading);
  color: var(--color-bg);
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* === Layout === */
.site-container {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block-end: 2rem;
}

.site-header {
  max-width: var(--measure);
  margin-inline: auto;
  padding: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.site-title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -0.005em;
}

.site-title:hover {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.nav-link {
  color: var(--color-muted);
  text-decoration: none;
  padding-block: 0.15rem;
  font-size: var(--step-0);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link[aria-current] {
  color: var(--color-heading);
  box-shadow: inset 0 -2px 0 var(--color-sky);
}

.theme-toggle {
  align-self: center;
  border: 0;
  padding: 0.25rem;
  margin: -0.25rem 0;
  background: none;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 0;
  transition: color var(--transition);
}

.theme-toggle:hover {
  color: var(--color-accent);
}

.theme-icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-icon-sun {
  display: block;
}

:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-icon-sun {
    display: block;
  }

  :root:not([data-theme="light"]) .theme-icon-moon {
    display: none;
  }
}

/* === Footer === */
.site-footer {
  max-width: var(--measure);
  margin: 2.75rem auto 0;
  padding: 1.5rem 1.5rem 2rem;
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

.footer-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-label {
  display: block;
  font-weight: 500;
  color: var(--color-muted);
  margin-block-end: 0.7rem;
}

.footer-icons {
  display: flex;
  gap: 1.05rem;
  align-items: center;
}

.social-link {
  color: var(--color-muted);
  line-height: 0;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--color-accent);
}

.badges {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.badge {
  display: inline-block;
  line-height: 0;
  filter: grayscale(0.5) opacity(0.75);
  transition: filter var(--transition);
}

.badge:hover {
  filter: none;
}

.badge svg,
.badge img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.badge-sep {
  width: 1px;
  height: 22px;
  background-color: var(--color-border);
}

.footer-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-block-start: 1.5rem;
  padding-block-start: 1rem;
  border-top: 1px solid var(--color-border);
}

.site-footer a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-accent);
}

/* === Article meta === */
.article-header {
  margin-block-end: 1.5rem;
}

.article-header h1 {
  margin-block-end: 0.4rem;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: var(--step--1);
}

.article-reading-time::before,
.article-updated::before {
  content: "\00b7";
  margin-inline-end: 0.5rem;
}

/* === Table of contents (long posts) === */
.toc {
  margin-block: 1.5rem 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-bg-code);
  font-size: var(--step--1);
}

.toc summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  list-style: none;
}

.toc summary::-webkit-details-marker {
  display: none;
}

.toc summary::before {
  content: "▸";
  display: inline-block;
  margin-inline-end: 0.5rem;
  color: var(--color-muted);
  transition: transform var(--transition);
}

.toc[open] summary::before {
  transform: rotate(90deg);
}

.toc nav ul {
  list-style: none;
  margin: 0.6rem 0 0;
  padding-inline-start: 0.75rem;
}

.toc nav > ul {
  padding-inline-start: 0;
}

.toc nav li {
  margin-block: 0.2rem;
  line-height: 1.5;
}

.toc nav a {
  color: var(--color-text);
  text-decoration: none;
}

.toc nav a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  color: var(--color-muted);
  text-decoration: none;
  font-size: var(--step--1);
  margin-block-end: 1.25rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--color-accent);
}

/* === Prose typography === */
.main-content {
  margin-block-start: 0.5rem;
}

.prose a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: var(--color-underline);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.19em;
  transition:
    color var(--transition),
    text-decoration-color var(--transition);
}

.prose a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.main-content h1 {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1.2;
  margin: 2.25rem 0 0.75rem;
  color: var(--color-heading);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.main-content h2 {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.25;
  margin: 2.25rem 0 0.75rem;
  color: var(--color-heading);
  letter-spacing: -0.005em;
}

.main-content h3 {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.3;
  margin: 1.75rem 0 0.6rem;
  color: var(--color-heading);
}

.prose p {
  margin-block: 0.9em;
}

.prose ul {
  margin-block: 0.9em;
  padding-inline-start: 1.25rem;
}

.prose ol {
  margin-block: 0.9em;
  padding-inline-start: 1.25rem;
}

.prose li {
  margin-block: 0.3em;
}

.prose blockquote {
  font-style: italic;
  color: var(--color-muted);
  margin-block: 1.5rem;
  padding-inline: 1.5rem;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin-block: 2.25rem;
}

/* === Tables === */
.table-wrapper {
  margin-block: 1.5rem;
  overflow-x: auto;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}

.prose th {
  padding: 0.4rem 0.75rem;
  text-align: left;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-block-end: 1px solid var(--color-heading);
}

.prose td {
  padding: 0.45rem 0.75rem;
  border-block-end: 1px solid var(--color-border);
}

.prose tbody tr:hover td {
  background-color: var(--color-bg-hover);
}

/* === Heading anchors === */
.main-content :is(h2, h3, h4) {
  scroll-margin-block-start: 2rem;
}

a.heading-anchor {
  font-family: var(--font-sans);
  font-size: 0.8em;
  margin-inline-start: 0.375rem;
  color: var(--color-muted);
  text-decoration: none;
  opacity: 0;
  transition:
    opacity var(--transition),
    color var(--transition);
}

:is(h2, h3, h4):hover a.heading-anchor,
a.heading-anchor:focus-visible {
  opacity: 1;
}

a.heading-anchor:hover {
  color: var(--color-accent);
}

/* === Homepage === */
/* Visually hidden, still announced to screen readers and available to crawlers. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-hero {
  margin-block: 1.5rem 1.75rem;
}

.home-tagline {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--color-muted);
}

.homepage .prose > p:first-child {
  font-size: var(--step-1);
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.home-recent {
  margin-block-start: 2.5rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.home-recent h2 {
  margin-block-start: 0;
}

.home-recent .blog-timeline {
  margin-block: 0.75rem 0.5rem;
}

.home-recent-all {
  display: inline-block;
  margin-block-start: 0.5rem;
  color: var(--color-muted);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
  transition: color var(--transition);
}

.home-recent-all:hover {
  color: var(--color-accent);
}

/* === Blog timeline === */
.blog-timeline {
  list-style: none;
  margin-block: 0.75rem;
  padding: 0;
}

.blog-timeline li {
  margin: 0;
}

.blog-timeline-entry {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.55rem 0.6rem;
  margin-inline: -0.6rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: background-color var(--transition);
}

.blog-timeline-entry:hover {
  background-color: var(--color-bg-hover);
}

.blog-timeline-date {
  flex-shrink: 0;
  width: 6.25rem;
  text-align: right;
  color: var(--color-muted);
  font-size: var(--step--1);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.7;
}

.blog-timeline-content {
  display: block;
  flex: 1;
  min-width: 0;
  line-height: 1.55;
}

.blog-timeline-title {
  color: var(--color-heading);
  font-weight: 500;
  transition: color var(--transition);
}

.blog-timeline-entry:hover .blog-timeline-title {
  color: var(--color-accent);
}

.blog-timeline-sep {
  color: var(--color-muted);
}

.blog-timeline-desc {
  color: var(--color-muted);
  font-size: var(--step--1);
}

/* === Figures === */
.figure-block {
  margin-block: 1.75rem;
  text-align: center;
}

.figure-block img {
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.figure-caption {
  margin-block-start: 0.6rem;
  font-size: var(--step--1);
  color: var(--color-muted);
  font-style: italic;
}

/* === Code === */
.highlight {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-block: 1.5rem;
  overflow-x: auto;
  background-color: var(--color-bg-code);
}

.highlight pre {
  margin: 0;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  line-height: 1.55;
  background-color: transparent;
}

code:not(pre code) {
  background-color: var(--color-bg-code);
  color: var(--color-text);
  padding: 0.08em 0.32em;
  border-radius: var(--radius-sm);
  font-size: 0.85em;
  font-weight: 500;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
}

/* Keep long KaTeX display equations scrollable instead of overflowing. */
.katex-display {
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 0.25rem;
}

/* === 404 === */
.error-page {
  text-align: center;
  padding-block: 4rem;
}

.error-title {
  font-size: 4rem;
  margin-block-end: 1rem;
}

.error-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-heading);
  color: var(--color-bg);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 500;
  margin-block-start: 1rem;
}

.error-button:hover {
  background-color: var(--color-muted);
}

/* === Responsive === */
@media (max-width: 640px) {
  .site-header {
    padding: 1rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: var(--step--1);
    padding-block: 0.4rem;
  }

  .site-container {
    padding-inline: 1rem;
  }

  .site-footer {
    padding-inline: 1rem;
  }

  .footer-cols {
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight {
    margin-inline: -1rem;
    border-radius: 0;
    border-inline: none;
  }

  .blog-timeline-entry {
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.55rem 0.6rem;
  }

  .blog-timeline-date {
    text-align: left;
    width: auto;
  }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* === Syntax highlighting (Chroma classes) ===
   Merged from `hugo gen chromastyles --style=github` (light) and
   `--style=github-dark` (dark): every token declares both colours via
   light-dark(). Backgrounds are stripped in favour of --color-bg-code,
   token classes that only one palette defines fall back to the other
   theme's base text colour, and dark-only bold/italic accents are
   dropped so both themes share one typography. Regenerate with those
   commands on bumps. */
.chroma {
  color: light-dark(#212529, #e6edf3);
  -webkit-text-size-adjust: none;
}
/* 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;
}
/* 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: light-dark(#7f7f7f, #737679);
}
/* 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: light-dark(#7f7f7f, #6e7681);
}
/* Line */
.chroma .line {
  display: flex;
}
/* Error */
.chroma .err {
  color: light-dark(#cf222e, #f85149);
}
/* Keyword, KeywordDeclaration, KeywordNamespace, KeywordReserved, KeywordType */
.chroma .k,
.chroma .kd,
.chroma .kn,
.chroma .kr,
.chroma .kt {
  color: light-dark(#cf222e, #ff7b72);
}
/* KeywordConstant, KeywordPseudo */
.chroma .kc,
.chroma .kp {
  color: light-dark(#cf222e, #79c0ff);
}
/* NameAttribute, NameOther */
.chroma .na,
.chroma .nx {
  color: light-dark(#1f2328, #e6edf3);
}
/* NameClass, NameException */
.chroma .nc,
.chroma .ne {
  color: light-dark(#1f2328, #f0883e);
}
/* NameConstant */
.chroma .no {
  color: light-dark(#0550ae, #79c0ff);
}
/* NameDecorator */
.chroma .nd {
  color: light-dark(#0550ae, #d2a8ff);
}
/* NameEntity */
.chroma .ni {
  color: light-dark(#6639ba, #ffa657);
}
/* NameLabel */
.chroma .nl {
  color: light-dark(#990000, #79c0ff);
  font-weight: bold;
}
/* NameNamespace */
.chroma .nn {
  color: light-dark(#24292e, #ff7b72);
}
/* NameTag */
.chroma .nt {
  color: light-dark(#0550ae, #7ee787);
}
/* NameBuiltin */
.chroma .nb {
  color: light-dark(#6639ba, #e6edf3);
}
/* NameBuiltinPseudo */
.chroma .bp {
  color: light-dark(#6a737d, #e6edf3);
}
/* NameVariable, NameVariableClass, NameVariableGlobal, NameVariableInstance,
   NameVariableMagic */
.chroma .nv,
.chroma .vc,
.chroma .vg,
.chroma .vi,
.chroma .vm {
  color: light-dark(#953800, #79c0ff);
}
/* NameFunction, NameFunctionMagic */
.chroma .nf,
.chroma .fm {
  color: light-dark(#6639ba, #d2a8ff);
}
/* NameProperty */
.chroma .py {
  color: light-dark(#1f2328, #79c0ff);
}
/* Literal */
.chroma .l {
  color: light-dark(#1f2328, #a5d6ff);
}
/* LiteralDate */
.chroma .ld {
  color: light-dark(#1f2328, #79c0ff);
}
/* LiteralString, LiteralStringBacktick, LiteralStringChar, LiteralStringDoc,
   LiteralStringDouble, LiteralStringInterpol, LiteralStringOther,
   LiteralStringSingle */
.chroma .s,
.chroma .sb,
.chroma .sc,
.chroma .sd,
.chroma .s2,
.chroma .si,
.chroma .sx,
.chroma .s1 {
  color: light-dark(#0a3069, #a5d6ff);
}
/* LiteralStringAffix, LiteralStringDelimiter, LiteralStringEscape,
   LiteralStringHeredoc, LiteralStringRegex */
.chroma .sa,
.chroma .dl,
.chroma .se,
.chroma .sh,
.chroma .sr {
  color: light-dark(#0a3069, #79c0ff);
}
/* LiteralStringSymbol */
.chroma .ss {
  color: light-dark(#032f62, #a5d6ff);
}
/* LiteralNumber, LiteralNumberBin, LiteralNumberFloat, LiteralNumberHex,
   LiteralNumberInteger, LiteralNumberIntegerLong, LiteralNumberOct */
.chroma .m,
.chroma .mb,
.chroma .mf,
.chroma .mh,
.chroma .mi,
.chroma .il,
.chroma .mo {
  color: light-dark(#0550ae, #a5d6ff);
}
/* Operator, OperatorWord, OperatorReserved */
.chroma .o,
.chroma .ow,
.chroma .or {
  color: light-dark(#0550ae, #ff7b72);
}
/* Punctuation */
.chroma .p {
  color: light-dark(#1f2328, #e6edf3);
}
/* Comment, CommentHashbang, CommentMultiline, CommentSingle, CommentSpecial,
   CommentPreproc, CommentPreprocFile */
.chroma .c,
.chroma .ch,
.chroma .cm,
.chroma .c1,
.chroma .cs,
.chroma .cp,
.chroma .cpf {
  color: light-dark(#57606a, #8b949e);
}
/* GenericDeleted */
.chroma .gd {
  color: light-dark(#82071e, #ffa198);
}
/* GenericEmph */
.chroma .ge {
  color: light-dark(#1f2328, #e6edf3);
  font-style: italic;
}
/* GenericError */
.chroma .gr {
  color: light-dark(#1f2328, #ffa198);
}
/* GenericHeading, GenericSubheading */
.chroma .gh,
.chroma .gu {
  color: light-dark(#1f2328, #79c0ff);
}
/* GenericInserted */
.chroma .gi {
  color: light-dark(#116329, #56d364);
}
/* GenericOutput, GenericPrompt */
.chroma .go,
.chroma .gp {
  color: light-dark(#1f2328, #8b949e);
}
/* GenericStrong */
.chroma .gs {
  font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
  color: light-dark(#1f2328, #ff7b72);
}
/* GenericUnderline */
.chroma .gl {
  text-decoration: underline;
}
/* TextWhitespace */
.chroma .w {
  color: light-dark(#ffffff, #6e7681);
}
