/* ═══════════════════════════════════════════════════════════════════
   aihu docs — design system
   Brand palette derived from aihu-logo.html / aihu-wordmark.svg
   ═══════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Brand colors — extracted from aihu SVG assets */
  --color-brand-ink: #1a1d24; /* primary dark — logo stroke */
  --color-brand-accent: #c8543a; /* terracotta — the dot, CTA */
  --color-brand-accent-dim: #a8432b; /* darker terracotta — hover */
  --color-brand-warm-white: #faf8f4; /* warm off-white background */
  --color-brand-canvas: #ece9e2; /* warm surface */
  --color-brand-rule: #ece8e0; /* warm border */
  --color-brand-muted: #5a5a55; /* muted warm grey */

  /* Surface tokens — light theme */
  --color-surface-base: #faf8f4;
  --color-surface-raised: #ffffff;
  --color-surface-overlay: #f2ede7;
  --color-surface-code: #f0ede7;
  --color-surface-hero: #1a1d24;

  /* Text tokens */
  --color-text-primary: #1a1d24;
  --color-text-secondary: #5a5a55;
  --color-text-muted: #8a8880;
  --color-text-inverse: #faf8f4;
  --color-text-accent: #c8543a;

  /* Border tokens */
  --color-border-default: #ddd9d2;
  --color-border-subtle: #ece8e0;
  --color-border-strong: #c2bdb6;

  /* Accent/interactive */
  --color-accent: #c8543a;
  --color-accent-hover: #a8432b;
  --color-accent-subtle: rgba(200, 84, 58, 0.08);
  --color-hover-bg: #f0ede7;

  /* Legacy compat aliases (components reference these) */
  --bg: var(--color-surface-base);
  --fg: var(--color-text-primary);
  --muted: var(--color-text-secondary);
  --border: var(--color-border-default);
  --accent: var(--color-accent);
  --hover-bg: var(--color-hover-bg);
  --code-bg: var(--color-surface-code);
  --btn-bg: var(--color-surface-overlay);

  /* Typography */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Fira Code", "Cascadia Code", monospace;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.75rem;
  --font-size-5xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Layout */
  --header-h: 64px;
  --sidebar-w: 260px;
  --content-max: 72ch;
  --page-max: 1280px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 29, 36, 0.06), 0 1px 2px rgba(26, 29, 36, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 29, 36, 0.1), 0 2px 4px rgba(26, 29, 36, 0.06);

  /* Transitions */
  --transition-fast: 100ms ease;
  --transition-base: 150ms ease;
}

/* ── Dark theme ─────────────────────────────────────────────────── */
.dark {
  --color-surface-base: #13151b;
  --color-surface-raised: #1a1d24;
  --color-surface-overlay: #21252f;
  --color-surface-code: #1e222b;
  --color-surface-hero: #0d0f13;

  --color-text-primary: #ede8e0;
  --color-text-secondary: #9e9890;
  --color-text-muted: #6e6860;
  --color-text-inverse: #1a1d24;
  --color-text-accent: #e8705a;

  --color-border-default: #2e3240;
  --color-border-subtle: #252930;
  --color-border-strong: #404558;

  --color-accent: #e8705a;
  --color-accent-hover: #f08070;
  --color-accent-subtle: rgba(232, 112, 90, 0.12);
  --color-hover-bg: #1e222b;

  --bg: var(--color-surface-base);
  --fg: var(--color-text-primary);
  --muted: var(--color-text-secondary);
  --border: var(--color-border-default);
  --accent: var(--color-accent);
  --hover-bg: var(--color-hover-bg);
  --code-bg: var(--color-surface-code);
  --btn-bg: var(--color-surface-overlay);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-surface-base);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.65;
  transition:
    background var(--transition-base),
    color var(--transition-base);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--color-accent-hover);
}

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

/* ── Site Header ────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--color-surface-base);
  border-bottom: 1px solid var(--color-border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  text-decoration: none;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  height: 36px;
  width: auto;
}

/* Dark mode: invert the dark ink stroke, keep the accent dot */
:root .logo-mark {
  filter: none;
}
.dark .logo-mark {
  filter: invert(1) hue-rotate(0deg) brightness(1.1);
}

.version {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  font-weight: 500;
  background: var(--color-accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.header-link:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

/* Hamburger button — visible only on mobile */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  cursor: pointer;
  color: var(--color-text-primary);
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}
.menu-toggle:hover {
  background: var(--color-hover-bg);
}
.menu-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ── Hero Section ───────────────────────────────────────────────── */

.site-hero {
  background: var(--color-surface-hero);
  color: var(--color-text-inverse);
  padding: var(--space-16) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dark .site-hero {
  color: var(--color-text-primary);
  background: var(--color-surface-hero);
}

/* subtle warm grid pattern */
.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.hero-logo {
  width: 72px;
  height: 72px;
}

.hero-wordmark {
  height: 52px;
  width: auto;
}

/* Wordmark on dark hero — path is outline-only, text is filled, dot keeps accent */
.site-hero .hero-wordmark path {
  stroke: var(--color-brand-warm-white);
  fill: none;
}

.site-hero .hero-wordmark text {
  fill: var(--color-brand-warm-white);
  stroke: none;
}

.site-hero .hero-wordmark circle {
  fill: var(--color-brand-accent);
  stroke: none;
}

.hero-tagline {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: rgba(250, 248, 244, 0.7);
  margin: 0;
  max-width: 54ch;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.dark .hero-tagline {
  color: var(--color-text-secondary);
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-brand-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-brand-accent-dim);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200, 84, 58, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 248, 244, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
}

.dark .btn-secondary {
  background: var(--color-surface-overlay);
  color: var(--color-text-primary);
  border-color: var(--color-border-default);
}
.dark .btn-secondary:hover {
  background: var(--color-hover-bg);
}

/* ── Hero Playground strip ──────────────────────────────────────── */

.hero-playground {
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-surface-raised);
}

.hero-playground-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6) var(--space-12);
}

.hero-playground h2 {
  margin: 0 0 var(--space-1);
  font-size: var(--font-size-2xl);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-playground-tagline {
  margin: 0 0 var(--space-6);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.hero-playground-tagline code {
  font-family: var(--font-mono);
  background: var(--color-surface-code);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

/* ── Overlay backdrop for mobile drawer ─────────────────────────── */

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 36, 0.5);
  z-index: 149;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sidebar-backdrop.open {
  opacity: 1;
}

/* ── Docs shell layout ──────────────────────────────────────────── */

.docs-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: calc(100vh - var(--header-h));
}

/* ── Docs navigation sidebar ────────────────────────────────────── */

.docs-nav {
  border-right: 1px solid var(--color-border-subtle);
  padding: var(--space-6) 0 var(--space-8);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: var(--color-surface-base);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-default) transparent;
}

.docs-nav::-webkit-scrollbar {
  width: 4px;
}
.docs-nav::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
  border-radius: 2px;
}

/* Nav group headers */
.nav-group-label {
  display: block;
  padding: var(--space-3) var(--space-6) var(--space-1);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  margin-top: var(--space-4);
}

.nav-group-label:first-child {
  margin-top: 0;
}

.docs-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 7px var(--space-6);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 450;
  border-left: 2px solid transparent;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  line-height: 1.4;
}

.nav-link:hover {
  background: var(--color-hover-bg);
  color: var(--color-text-primary);
  text-decoration: none;
  border-left-color: var(--color-border-strong);
}

.nav-link.active {
  color: var(--color-accent);
  background: var(--color-accent-subtle);
  border-left-color: var(--color-accent);
  font-weight: 600;
}

/* ── Docs content area ──────────────────────────────────────────── */

.docs-content {
  padding: var(--space-12) var(--space-12) var(--space-16);
  min-width: 0;
}

/* Prose styles */
.docs-content article {
  max-width: var(--content-max);
}

.docs-content article h1 {
  margin-top: 0;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.docs-content article h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border-subtle);
}

.docs-content article h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.docs-content article h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

.docs-content article p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-primary);
  line-height: 1.75;
}

.docs-content article ul,
.docs-content article ol {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-6);
  line-height: 1.75;
}

.docs-content article li {
  margin-bottom: var(--space-1);
}

/* Code blocks */
.docs-content article pre {
  background: var(--color-surface-code);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  overflow-x: auto;
  font-size: var(--font-size-sm);
  line-height: 1.65;
  margin: var(--space-6) 0;
  font-family: var(--font-mono);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-default) transparent;
}

.docs-content article pre::-webkit-scrollbar {
  height: 4px;
}
.docs-content article pre::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
  border-radius: 2px;
}

.docs-content article code {
  font-family: var(--font-mono);
  background: var(--color-surface-code);
  border: 1px solid var(--color-border-subtle);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-text-accent);
}

.docs-content article pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

/* Tables */
.docs-content article table {
  border-collapse: collapse;
  width: 100%;
  margin: var(--space-6) 0;
  font-size: var(--font-size-sm);
  display: block;
  overflow-x: auto;
}

.docs-content article th,
.docs-content article td {
  border: 1px solid var(--color-border-default);
  padding: 10px var(--space-4);
  text-align: left;
  line-height: 1.5;
}

.docs-content article th {
  background: var(--color-surface-overlay);
  font-weight: 600;
  font-size: var(--font-size-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.docs-content article td code {
  font-size: 0.75rem;
}

/* Blockquote */
.docs-content article blockquote {
  border-left: 3px solid var(--color-accent);
  margin: var(--space-6) 0;
  padding: var(--space-4) var(--space-6);
  background: var(--color-accent-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.docs-content article blockquote p {
  margin: 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Highlight.js overrides — pre > code specificity beats hljs defaults */
pre code.hljs {
  background: transparent;
  padding: 0;
}

/* ── Theme toggle ────────────────────────────────────────────────── */

.theme-toggle {
  background: none;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px 10px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
  width: 36px;
  height: 36px;
}

.theme-toggle:hover {
  background: var(--color-hover-bg);
  color: var(--color-text-primary);
}

.icon-sun,
.icon-moon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-sun svg,
.icon-moon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Show sun in dark mode, moon in light mode */
:root .icon-sun {
  display: none;
}
:root .icon-moon {
  display: flex;
}
.dark .icon-sun {
  display: flex;
}
.dark .icon-moon {
  display: none;
}

/* ── Live demo ───────────────────────────────────────────────────── */

.live-demo {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-subtle);
}

.demo-label-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 84, 58, 0.2);
  width: fit-content;
}

.dark .demo-badge {
  border-color: rgba(232, 112, 90, 0.2);
}

.demo-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.demo-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: var(--space-2) 0 0;
  line-height: 1.5;
}

.demo-output {
  background: var(--color-surface-code);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
}

.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.demo-value {
  font-size: 3rem;
  font-weight: 700;
  min-width: 3ch;
  display: inline-block;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  line-height: 1;
}

.btn-dec,
.btn-inc {
  background: var(--color-surface-overlay);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: var(--font-size-xl);
  font-weight: 500;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
  font-family: var(--font-sans);
}

.btn-dec:hover,
.btn-inc:hover {
  background: var(--color-hover-bg);
  border-color: var(--color-border-strong);
}

.btn-inc:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-reset {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: var(--font-size-xs);
  font-family: var(--font-mono);
  padding: 4px 12px;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn-reset:hover {
  background: var(--color-hover-bg);
  color: var(--color-text-secondary);
}

.demo-hint {
  margin: var(--space-4) 0 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

/* ── Mobile responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Sidebar becomes a fixed drawer */
  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 100%;
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 200ms ease;
    padding-top: calc(var(--header-h) + var(--space-4));
    box-shadow: var(--shadow-md);
  }

  .docs-nav.open {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    display: block;
  }

  .docs-content {
    padding: var(--space-8) var(--space-6) var(--space-12);
  }

  .site-hero {
    padding: var(--space-12) var(--space-6);
  }

  .hero-wordmark {
    height: 40px;
  }

  .hero-tagline {
    font-size: var(--font-size-lg);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 var(--space-4);
  }

  .header-link {
    display: none;
  }

  .docs-content {
    padding: var(--space-6) var(--space-4) var(--space-12);
  }
}

/* ── Syntax highlight theme (hljs) ─────────────────────────────── */
/* Warm, brand-aligned code color scheme */

:root .hljs-keyword,
:root .hljs-built_in {
  color: #c8543a;
}
:root .hljs-string,
:root .hljs-attr {
  color: #6b9e5e;
}
:root .hljs-comment {
  color: #9e9890;
  font-style: italic;
}
:root .hljs-number,
:root .hljs-literal {
  color: #4f88c4;
}
:root .hljs-title,
:root .hljs-function {
  color: #7b5ea8;
}
:root .hljs-variable,
:root .hljs-params {
  color: #5a5a55;
}
:root .hljs-tag {
  color: #c8543a;
}
:root .hljs-name {
  color: #c8543a;
}
:root .hljs-type {
  color: #7b5ea8;
}

.dark .hljs-keyword,
.dark .hljs-built_in {
  color: #e8705a;
}
.dark .hljs-string,
.dark .hljs-attr {
  color: #88c07a;
}
.dark .hljs-comment {
  color: #6e6860;
  font-style: italic;
}
.dark .hljs-number,
.dark .hljs-literal {
  color: #79aee0;
}
.dark .hljs-title,
.dark .hljs-function {
  color: #b08ad8;
}
.dark .hljs-variable,
.dark .hljs-params {
  color: #9e9890;
}
.dark .hljs-tag {
  color: #e8705a;
}
.dark .hljs-name {
  color: #e8705a;
}
.dark .hljs-type {
  color: #b08ad8;
}
