add initial documentation files

This commit is contained in:
2025-03-16 18:42:38 +01:00
parent 0419994ae6
commit 567f100f0a
13 changed files with 1828 additions and 0 deletions

22
docs/assets/highlight.css Normal file
View File

@@ -0,0 +1,22 @@
:root {
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }
:root[data-theme='light'] {
--code-background: var(--light-code-background);
}
:root[data-theme='dark'] {
--code-background: var(--dark-code-background);
}
pre, code { background: var(--code-background); }