Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ if(n<200&&document.readyState==="loading")requestAnimationFrame(function(){bar(n
markdown: {
theme: {
light: "github-light",
dark: "dracula",
dark: "github-dark",
},
config(md) {
md.use(tabsMarkdownPlugin);
Expand Down
5 changes: 5 additions & 0 deletions docs/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ html.dark {
--vp-c-brand-soft: rgba(0, 99, 153, 0.14);
--plane-500: #006399;

/* Inline code — neutral body-text color instead of the VitePress default
(brand blue), which is hard to read on the dark pill background.
Linked code keeps --vp-code-link-color (brand) so links stay visible. */
--vp-code-color: var(--vp-c-text-1);

/* Fonts — Inter for body and headings (override VoidZero APK Protocol) */
--font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
Expand Down
Loading