Skip to content

Commit 37cf141

Browse files
authored
Add dark mode style color for contrast in docs (#429)
* add distinct dark mode style color for docs * set virtualenv for readthedocs builds
1 parent 409d2aa commit 37cf141

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

.readthedocs.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ build:
1616
- poetry config virtualenvs.create false
1717
post_install:
1818
# Install dependencies with 'docs' dependency group
19-
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
20-
- poetry install --with dev,docs --all-extras
19+
# (https://python-poetry.org/docs/managing-dependencies/#dependency-groups)
20+
# and leverage READTHEDOCS_VIRTUALENV_PATH for environment.
21+
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with dev,docs --all-extras
2122

2223
sphinx:
2324
builder: html

docs/conf.py

+14-12
Original file line numberDiff line numberDiff line change
@@ -55,26 +55,28 @@
5555

5656

5757
# -- Options for HTML output -------------------------------------------------
58-
59-
# The theme to use for HTML and HTML Help pages. See the documentation for
60-
# a list of builtin themes.
61-
pycytominer_hex = "#88239A"
58+
# The theme to use for HTML and HTML Help pages.
6259
# Furo theme options specified here: https://pradyunsg.me/furo/
6360
html_theme = "furo"
61+
62+
# colors used for styling the HTML output in light or dark mode
63+
pycytominer_hex_light = "#88239A"
64+
pycytominer_hex_dark = "#CF72DF"
65+
6466
# Furo theme option colors specified here:
6567
# https://github.com/pradyunsg/furo/blob/main/src/furo/assets/styles/variables/_colors.scss
6668
html_theme_options = {
6769
"light_css_variables": {
68-
"color-brand-primary": pycytominer_hex,
69-
"color-brand-content": pycytominer_hex,
70-
"color-api-pre-name": pycytominer_hex,
71-
"color-api-name": pycytominer_hex,
70+
"color-brand-primary": pycytominer_hex_light,
71+
"color-brand-content": pycytominer_hex_light,
72+
"color-api-pre-name": pycytominer_hex_light,
73+
"color-api-name": pycytominer_hex_light,
7274
},
7375
"dark_css_variables": {
74-
"color-brand-primary": pycytominer_hex,
75-
"color-brand-content": pycytominer_hex,
76-
"color-api-pre-name": pycytominer_hex,
77-
"color-api-name": pycytominer_hex,
76+
"color-brand-primary": pycytominer_hex_dark,
77+
"color-brand-content": pycytominer_hex_dark,
78+
"color-api-pre-name": pycytominer_hex_dark,
79+
"color-api-name": pycytominer_hex_dark,
7880
},
7981
}
8082

0 commit comments

Comments
 (0)