diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-04 18:55:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-04 18:55:51 -0400 |
| commit | f359b8a7608c7f118710af02cb5edab4e6abb942 (patch) | |
| tree | 9e3754b023a6f3d1db9446153bf577c63640c0e4 /docs/conf.py | |
| parent | 33f4d7e9423bf833b60f5b2b788e932ca4e702ba (diff) | |
| parent | 57b3810abcfa453b8b00e128fb90b7fa9c3dfe69 (diff) | |
| download | python-setuptools-git-f359b8a7608c7f118710af02cb5edab4e6abb942.tar.gz | |
Merge pull request #2853 from abravalheri/add-logo
Add logo
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index ba541423..4f3eb8dc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,6 +101,19 @@ default_role = 'any' # HTML theme html_theme = 'furo' +html_logo = "images/logo.png" + +html_theme_options = { + "sidebar_hide_name": True, + "light_css_variables": { + "color-brand-primary": "#336790", # "blue" + "color-brand-content": "#336790", + }, + "dark_css_variables": { + "color-brand-primary": "#E5B62F", # "yellow" + "color-brand-content": "#E5B62F", + }, +} # Add support for inline tabs extensions += ['sphinx_inline_tabs'] |
