Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
e-adrien committed Dec 7, 2023
1 parent 6b9c8d5 commit bc6149e
Show file tree
Hide file tree
Showing 46 changed files with 33,808 additions and 1,070 deletions.
33 changes: 20 additions & 13 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
:root {
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
--light-code-background: #ffffff;
--dark-code-background: #1e1e1e;
}

@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: light) {
:root {
--code-background: var(--light-code-background);
}
}

@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-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="light"] {
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--code-background: var(--dark-code-background);
:root[data-theme="dark"] {
--code-background: var(--dark-code-background);
}

pre, code { background: var(--code-background); }
pre,
code {
background: var(--code-background);
}
1,806 changes: 1,802 additions & 4 deletions docs/assets/main.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion docs/assets/search.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bc6149e

Please sign in to comment.