sphinx_rtd_dark_mode
sphinx_rtd_dark_mode copied to clipboard
Function and class names are black when compiled on readthedocs
When locally compiled, the names of functions and classes are blue as intended. But when compiled on readthedocs, the colors turn black and are difficult to read.
I'm having the same issue, but it persists locally and when deploying to gh-pages after the build (via github actions) (via make clean html
)
I have the same issue. It also applies to click
CLI apps documented with sphinx-click
.
For me the local build is already black.
It may help to mention that I solved this issue by specifying sphinx-rtd-theme==0.5.2, it seems that 1.0.0 is causing the issue.
Is there some activity regarding this issue? I still have dark class names.
I have this issue when using the theme along Breathe
Here's what I have come up with as a quick fix:
html[data-theme="dark"].writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name {
color: var(--dark-text-color);
}
html[data-theme="dark"].writer-html5 .rst-content dd dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name {
color:inherit;
}
YMMV
The issue is also visible in the docs of this project: https://sphinx-rtd-dark-mode.vercel.app/api.html#filter-object