first commit

This commit is contained in:
Matt Kane
2026-04-01 10:44:22 +01:00
commit 43fcb9a131
1789 changed files with 395041 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/* EmDash Docs Custom Styles */
:root {
/* Brand colors */
--sl-color-accent-low: #1a1a2e;
--sl-color-accent: #4a6cf7;
--sl-color-accent-high: #7b91f7;
/* Typography refinements */
--sl-font:
system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
"Open Sans", "Helvetica Neue", sans-serif;
--sl-font-mono:
ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}
:root[data-theme="dark"] {
--sl-color-accent-low: #1a1a2e;
--sl-color-accent: #6b7fff;
--sl-color-accent-high: #a3b0ff;
}
/* Improve code block readability */
.expressive-code {
margin-block: 1.5rem;
}
/* Card styling for callouts */
.starlight-aside {
border-radius: 0.5rem;
}