docs: fix logo on light mode

This commit is contained in:
classabbyamp 2023-12-03 12:24:10 -05:00 committed by classabbyamp
parent efae5a3b7f
commit 50112b8687
3 changed files with 6 additions and 2 deletions

1
docs/_static/logo-light.svg vendored Symbolic link
View File

@ -0,0 +1 @@
../logos/LogoMark_Black.svg

View File

@ -42,11 +42,14 @@ html_theme = 'sphinx_book_theme'
html_static_path = ['_static'] html_static_path = ['_static']
html_favicon = '_static/favicon.ico' html_favicon = '_static/favicon.ico'
smartquotes = False smartquotes = False
html_logo = '_static/logo.svg'
html_theme_options = { html_theme_options = {
'collapse_navigation': False,
'repository_url': 'https://github.com/zbm-dev/zfsbootmenu', 'repository_url': 'https://github.com/zbm-dev/zfsbootmenu',
'use_repository_button': True, 'use_repository_button': True,
'use_fullscreen_button': False,
'logo': {
'image_light': '_static/logo-light.svg',
'image_dark': '_static/logo-dark.svg',
},
} }
html_baseurl = 'https://docs.zfsbootmenu.org' html_baseurl = 'https://docs.zfsbootmenu.org'
html_css_files = ['custom.css'] html_css_files = ['custom.css']