Skip to content

Commit a1aeb07

Browse files
committed
Add @hebcal/noaa docs
1 parent e394d37 commit a1aeb07

13 files changed

+1915
-0
lines changed

api/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ <h3>JavaScript / TypeScript</h3>
4040
<li><a href="leyning/">@hebcal/leyning</a></li>
4141
<li><a href="rest-api/">@hebcal/rest-api</a></li>
4242
<li><a href="icalendar/">@hebcal/icalendar</a></li>
43+
<li><a href="noaa/">@hebcal/noaa</a></li>
4344
</ul>
4445

4546
<h3>Golang</h3>

api/noaa/.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.

api/noaa/assets/highlight.css

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

api/noaa/assets/icons.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)