Skip to content

Commit

Permalink
deploy: b0e9a6a
Browse files Browse the repository at this point in the history
  • Loading branch information
admercs committed Feb 12, 2024
1 parent cd61c5a commit afdc0ed
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 12 deletions.
Binary file modified api_docs/doctrees/environment.pickle
Binary file not shown.
56 changes: 44 additions & 12 deletions css/extra.css
Original file line number Diff line number Diff line change
@@ -1,39 +1,71 @@
/* extra.css */

.center {
display: block;
margin: 0 auto;
}

:root {
/* nervosys: light mode */
[data-md-color-scheme="nervosys_light"] {

/* primary color shades */
/* violet: #5000cd, magenta: #ff008a, seafoam: #00ffcd */
--md-primary-fg-color: #5000cd;
--md-primary-fg-color--light: #5000cd;
--md-primary-fg-color--dark: #ff008a; /* #00ffcd */
--md-primary-fg-color--light: #ff008a;
--md-default-bg-color: #ffffff;
--md-primary-bg-color: hsla(0, 0%, 100%, 1);
--md-primary-bg-color--light: hsl(0, 0%, 100%);
--md-primary-bg-color--dark: hsl(0, 0%, 0%);
--md-text-link-color: hsla(168, 100%, 50%, 1);

/* accent color shades */
--md-accent-fg-color: rgb(98, 18, 189);
--md-accent-fg-color: rgb(80, 0, 205);
--md-accent-fg-color--transparent: hsla(189, 100%, 37%, 0.1);
--md-accent-bg-color: hsla(0, 0%, 100%, 1);
--md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7);
--md-accent-bg-color--dark: hsla(0, 0%, 100%, 0.3);
}
:root > * {

[data-md-color-scheme="nervosys_light"] > * {

/* code block color shades */
--md-code-bg-color: hsla(0, 0%, 96%, 1);
--md-code-fg-color: hsla(200, 18%, 26%, 1);

/* footer color shades */
/* footer */
--md-footer-bg-color: #861f41;
--md-footer-bg-color--light: hsla(0, 0%, 0%, 0.32);
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
--md-footer-fg-color--dark: hsla(0, 0%, 100%, 1);
}

/* nervosys: dark mode */
[data-md-color-scheme="nervosys_dark"] {

/* primary color shades */
--md-primary-fg-color: #ff008a;
--md-primary-fg-color--dark: #00ffcd;
--md-default-bg-color: #000000;
--md-primary-bg-color: hsl(0, 0%, 0%);
--md-primary-bg-color--dark: hsl(0, 0%, 0%);
--md-text-link-color: hsla(168, 100%, 50%, 1);

/* accent color shades */
--md-accent-fg-color: rgb(80, 0, 205);
--md-accent-fg-color--transparent: hsla(189, 100%, 37%, 0.9);
--md-accent-bg-color: hsla(0, 0%, 100%, 1);
--md-accent-bg-color--dark: hsla(0, 0%, 100%, 0.7);
}

[data-md-color-scheme="nervosys_dark"] > * {

/* code block color shades */
--md-code-bg-color: hsla(0, 0%, 96%, 1);
--md-code-fg-color: hsla(200, 18%, 26%, 1);

/* footer */
--md-footer-bg-color: #861f41;
--md-footer-bg-color--light: hsla(263, 100%, 40%, 1);
--md-footer-bg-color--dark: hsla(328, 100%, 50%, 1);
--md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32);
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
--md-footer-fg-color--dark: hsla(0, 0%, 100%, 0.7);
--md-footer-fg-color--darker: hsla(0, 0%, 100%, 0.3);
}
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit afdc0ed

Please sign in to comment.