mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
Some checks failed
tinymist::auto_tag / auto-tag (push) Has been cancelled
tinymist::ci / Duplicate Actions Detection (push) Has been cancelled
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Has been cancelled
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Has been cancelled
tinymist::ci / prepare-build (push) Has been cancelled
tinymist::gh_pages / build-gh-pages (push) Has been cancelled
tinymist::ci / announce (push) Has been cancelled
tinymist::ci / build (push) Has been cancelled
It provides a `package-doc.json` and HTML is rendered using a
`package-doc` function.
```typ
#let package-doc(info, path: none) [
#metadata((
// more sub paths
)) <static-paths>
#render-page(info, path) // the content of $path/.html
]
#package-doc(json("package-doc.json"))
```
30 lines
516 B
TOML
30 lines
516 B
TOML
|
|
[light]
|
|
color-scheme = "light"
|
|
main-color = "#000"
|
|
dash-color = "#20609f"
|
|
code-theme = ""
|
|
|
|
[rust]
|
|
color-scheme = "light"
|
|
main-color = "#262625"
|
|
dash-color = "#2b79a2"
|
|
code-theme = ""
|
|
|
|
[coal]
|
|
color-scheme = "dark"
|
|
main-color = "#98a3ad"
|
|
dash-color = "#2b79a2"
|
|
code-theme = "tokyo-night.tmTheme"
|
|
|
|
[navy]
|
|
color-scheme = "dark"
|
|
main-color = "#bcbdd0"
|
|
dash-color = "#2b79a2"
|
|
code-theme = "tokyo-night.tmTheme"
|
|
|
|
[ayu]
|
|
color-scheme = "dark"
|
|
main-color = "#c5c5c5"
|
|
dash-color = "#0096cf"
|
|
code-theme = "tokyo-night.tmTheme"
|