Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: actions/setup-python@v5
with:
python-version: 3.11

- name: install requirements
run: python -m pip install nox pre-commit
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: |
3.10
3.11
3.12

- name: run pre-commit
if: ${{ matrix.os == 'ubuntu-latest' }}
run: pre-commit run --all --show-diff-on-failure
- name: install requirements
run: python -m pip install nox pre-commit

- name: run tests
run: nox
- name: run pre-commit
if: ${{ matrix.os == 'ubuntu-latest' }}
run: pre-commit run --all --show-diff-on-failure

- name: run tests
run: nox
40 changes: 36 additions & 4 deletions docs/_custom/css/extra.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,44 @@
:root {
--md-primary-fg-color: #6495ED;
[data-md-color-scheme="default"] {
--md-primary-fg-color: #4378dc;
--md-primary-fg-color--light: #4378dc;
--md-primary-fg-color--dark: #4378dc;

/* Code colors – light background */
--md-code-hl-number-color: hsl(11, 80%, 40%);
--md-code-hl-special-color: hsl(340, 75%, 45%);
--md-code-hl-function-color: hsl(271, 55%, 45%);
--md-code-hl-constant-color: hsl(220, 70%, 45%);
--md-code-hl-keyword-color: var(--md-primary-fg-color);
--md-code-hl-string-color: hsl(160, 50%, 30%);
--md-code-hl-name-color: hsl(43, 90%, 32%);
--md-code-hl-operator-color: hsl(0, 0%, 30%);
--md-code-hl-punctuation-color: hsl(271, 45%, 45%);
--md-code-hl-comment-color: hsl(210, 15%, 50%);
--md-code-hl-generic-color: hsl(210, 15%, 45%);
--md-code-hl-variable-color: hsl(24, 70%, 38%);
}

[data-md-color-scheme="slate"] .md-header,
[data-md-color-scheme="slate"] .md-tabs {
[data-md-color-scheme="slate"] {
--md-typeset-a-color: #4378dc;
--md-primary-fg-color: #253758;
--md-primary-fg-color--dark: #253758;

/* Code colors – dark background */
--md-code-hl-number-color: hsl(11, 85%, 68%);
--md-code-hl-special-color: hsl(340, 82%, 72%);
--md-code-hl-function-color: hsl(271, 70%, 78%);
--md-code-hl-constant-color: hsl(220, 80%, 75%);
--md-code-hl-keyword-color: #6fa3f7;
--md-code-hl-string-color: hsl(160, 55%, 60%);
--md-code-hl-name-color: hsl(43, 100%, 65%);
--md-code-hl-operator-color: hsl(0, 0%, 72%);
--md-code-hl-punctuation-color: hsl(271, 60%, 78%);
--md-code-hl-comment-color: hsl(210, 15%, 55%);
--md-code-hl-generic-color: hsl(210, 15%, 62%);
--md-code-hl-variable-color: hsl(24, 80%, 68%);
}


.md-grid {
max-width: 1350px;
}
Expand Down
Loading