Skip to content

Commit e98835c

Browse files
committed
gen docs
1 parent 7623a7c commit e98835c

File tree

202 files changed

+2054
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+2054
-5
lines changed

docs/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/assets/highlight.css

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
:root {
2+
--light-hl-0: #001080;
3+
--dark-hl-0: #9CDCFE;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-code-background: #FFFFFF;
7+
--dark-code-background: #1E1E1E;
8+
}
9+
10+
@media (prefers-color-scheme: light) { :root {
11+
--hl-0: var(--light-hl-0);
12+
--hl-1: var(--light-hl-1);
13+
--code-background: var(--light-code-background);
14+
} }
15+
16+
@media (prefers-color-scheme: dark) { :root {
17+
--hl-0: var(--dark-hl-0);
18+
--hl-1: var(--dark-hl-1);
19+
--code-background: var(--dark-code-background);
20+
} }
21+
22+
:root[data-theme='light'] {
23+
--hl-0: var(--light-hl-0);
24+
--hl-1: var(--light-hl-1);
25+
--code-background: var(--light-code-background);
26+
}
27+
28+
:root[data-theme='dark'] {
29+
--hl-0: var(--dark-hl-0);
30+
--hl-1: var(--dark-hl-1);
31+
--code-background: var(--dark-code-background);
32+
}
33+
34+
.hl-0 { color: var(--hl-0); }
35+
.hl-1 { color: var(--hl-1); }
36+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)