Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use different colour for 'Return value: Borrowed reference' #188

Merged
merged 2 commits into from
Apr 26, 2024
Merged
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
34 changes: 27 additions & 7 deletions python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
@import url('classic.css');

/* Common colours */
:root {
--good-color: rgb(41 100 51);
--good-border: rgb(79 196 100);
--middle-color: rgb(133 72 38);
--middle-border: rgb(244, 227, 76);
--bad-color: rgb(159 49 51);
--bad-border: rgb(244, 76, 78);
}

/* unset some styles from the classic stylesheet */
div.document,
div.body,
Expand Down Expand Up @@ -323,8 +333,18 @@ div.footer a:hover {
color: #0095c4;
}

/* C API return value annotations */
:root {
--refcount: var(--good-color);
--refcount-return-borrowed-ref: var(--middle-color);
}

.refcount {
color: #060;
color: var(--refcount);
}

.refcount.return_borrowed_ref {
color: var(--refcount-return-borrowed-ref)
}

.stableabi {
Expand Down Expand Up @@ -625,13 +645,13 @@ div.genindex-jumpbox a {

/* Version change directives */
:root {
--versionadded: rgb(41 100 51);
--versionchanged: rgb(133 72 38);
--deprecated: rgb(159 49 51);
--versionadded: var(--good-color);
--versionchanged: var(--middle-color);
--deprecated: var(--bad-color);

--versionadded-border: rgb(79 196 100);
--versionchanged-border: rgb(244, 227, 76);
--deprecated-border: rgb(244, 76, 78);
--versionadded-border: var(--good-border);
--versionchanged-border: var(--middle-border);
--deprecated-border: var(--bad-border);
}

div.versionadded,
Expand Down
20 changes: 13 additions & 7 deletions python_docs_theme/static/pydoctheme_dark.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/* Common colours */
:root {
--good-color: rgb(79 196 100);
--good-border: var(--good-color);
--middle-color: rgb(244, 227, 76);
--middle-border: var(--middle-color);
--bad-color: rgb(244, 76, 78);
--bad-border: var(--bad-color);
}


/* Browser elements */
:root {
Expand Down Expand Up @@ -79,10 +89,6 @@ table.docutils th {
background-color: #424242;
}

.refcount {
color: #afa;
}

.stableabi {
color: #bbf;
}
Expand Down Expand Up @@ -143,7 +149,7 @@ img.invert-in-dark-mode {

/* Version change directives */
:root {
--versionadded: rgb(79 196 100);
--versionchanged: rgb(244, 227, 76);
--deprecated: rgb(244, 76, 78);
--versionadded: var(--good-color);
--versionchanged: var(--middle-color);
--deprecated: var(--bad-color);
}
Loading