|
55 | 55 |
|
56 | 56 |
|
57 | 57 | # -- 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. |
62 | 59 | # Furo theme options specified here: https://pradyunsg.me/furo/
|
63 | 60 | 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 | + |
64 | 66 | # Furo theme option colors specified here:
|
65 | 67 | # https://github.com/pradyunsg/furo/blob/main/src/furo/assets/styles/variables/_colors.scss
|
66 | 68 | html_theme_options = {
|
67 | 69 | "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, |
72 | 74 | },
|
73 | 75 | "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, |
78 | 80 | },
|
79 | 81 | }
|
80 | 82 |
|
|
0 commit comments