theme.css
 1  :root {
 2      --pdoc-background: #050810;
 3      --pdoc-nav-background: #050810;
 4  }
 5  
 6  .pdoc {
 7      /* Minimalistic dark theme inspired by React Router */
 8      --text: #f1f5f9;
 9      --muted: #94a3b8;
10      --link: #60a5fa;
11      --link-hover: #93c5fd;
12      --code: #18212f;
13      --active: #0c2447;
14  
15      --accent: #161926;
16      --accent2: #334155;
17      --border: #334155;
18  
19      --nav-hover: rgba(255, 255, 255, 0.05);
20      --name: #60a5fa;
21      --def: #34d399;
22      --annotation: #22d3ee;
23  
24      --pad-global: clamp(0.5rem, 2vw, 1.75rem);
25  
26      /* Typography */
27      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
28      font-size: 16px;
29      line-height: 1.6;
30      background: var(--pdoc-background);
31      color: var(--text);
32  }