mirror of
https://github.com/litruv/Docs-Viewer.git
synced 2026-09-10 01:59:44 +10:00
Replace the classic DOM shell with slate widgets, markdown→slate rendering, and a CI index build that uses build-docs.cjs.
27 lines
616 B
CSS
27 lines
616 B
CSS
/* Match live Docs-Viewer tokens (lit.ruv.wtf/docs). */
|
|
|
|
:root {
|
|
--bg: #1a1a1a;
|
|
--ink: #e0e0e0;
|
|
--muted: #a0a0a0;
|
|
--panel: #252526;
|
|
--line: #404040;
|
|
--accent: #2196f3;
|
|
--docs-accent: #2196f3;
|
|
--docs-panel: #252526;
|
|
--docs-line: #404040;
|
|
--docs-muted: #a0a0a0;
|
|
--slate-font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans",
|
|
sans-serif;
|
|
--slate-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100%;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
font-family: var(--slate-font);
|
|
}
|