Skip to content

Commit 3c2190b

Browse files
committed
update dependencies
1 parent 22822de commit 3c2190b

19 files changed

+2875
-5119
lines changed

docs/assets/dmt/dmt-component-data.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/assets/dmt/dmt-components.css

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/assets/dmt/dmt-components.js

Lines changed: 0 additions & 67 deletions
This file was deleted.

docs/assets/dmt/dmt-search.cmp

-155 Bytes
Binary file not shown.

docs/assets/dmt/dmt-theme.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/assets/highlight.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,57 @@
11
:root {
2+
--light-hl-0: #000000;
3+
--dark-hl-0: #D4D4D4;
4+
--light-hl-1: #0451A5;
5+
--dark-hl-1: #9CDCFE;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #CD3131;
9+
--dark-hl-3: #F44747;
10+
--light-hl-4: #0000FF;
11+
--dark-hl-4: #569CD6;
212
--light-code-background: #FFFFFF;
313
--dark-code-background: #1E1E1E;
414
}
515

616
@media (prefers-color-scheme: light) { :root {
17+
--hl-0: var(--light-hl-0);
18+
--hl-1: var(--light-hl-1);
19+
--hl-2: var(--light-hl-2);
20+
--hl-3: var(--light-hl-3);
21+
--hl-4: var(--light-hl-4);
722
--code-background: var(--light-code-background);
823
} }
924

1025
@media (prefers-color-scheme: dark) { :root {
26+
--hl-0: var(--dark-hl-0);
27+
--hl-1: var(--dark-hl-1);
28+
--hl-2: var(--dark-hl-2);
29+
--hl-3: var(--dark-hl-3);
30+
--hl-4: var(--dark-hl-4);
1131
--code-background: var(--dark-code-background);
1232
} }
1333

1434
:root[data-theme='light'] {
35+
--hl-0: var(--light-hl-0);
36+
--hl-1: var(--light-hl-1);
37+
--hl-2: var(--light-hl-2);
38+
--hl-3: var(--light-hl-3);
39+
--hl-4: var(--light-hl-4);
1540
--code-background: var(--light-code-background);
1641
}
1742

1843
:root[data-theme='dark'] {
44+
--hl-0: var(--dark-hl-0);
45+
--hl-1: var(--dark-hl-1);
46+
--hl-2: var(--dark-hl-2);
47+
--hl-3: var(--dark-hl-3);
48+
--hl-4: var(--dark-hl-4);
1949
--code-background: var(--dark-code-background);
2050
}
2151

52+
.hl-0 { color: var(--hl-0); }
53+
.hl-1 { color: var(--hl-1); }
54+
.hl-2 { color: var(--hl-2); }
55+
.hl-3 { color: var(--hl-3); }
56+
.hl-4 { color: var(--hl-4); }
2257
pre, code { background: var(--code-background); }

docs/assets/main.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/navigation.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)