/* :root dark overrides */

html.dark {
    --text-color: #eaeaea;
    --bg-color: #121212;
    --link-color: #a855d8;
    --code-bg: #1e1e1e;
    --pre-bg: #1a1a1a;
    --hr-color: #444;
  }
  
html.dark thead {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
html.dark tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
  }
  
html.dark th, html.dark td {
    border-color: var(--hr-color);
  }