diff --git a/docs/Makefile b/docs/Makefile index 08494e2..af39166 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -226,3 +226,6 @@ dummy: favicon.ico: logo.svg convert -density 384 -background transparent -define icon:auto-resize -colors 256 logo.svg favicon.ico + +logo.png: logo.svg + inkscape -z -e logo.png -w 100 -h 100 logo.svg diff --git a/docs/conf.py b/docs/conf.py index 96412a1..a9d5c9d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -159,7 +159,7 @@ html_theme_options = { # The name of an image file (relative to this directory) to place at the top # of the sidebar. # -# html_logo = None +html_logo = "logo.png" # The name of an image file (relative to this directory) to use as a favicon of # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 diff --git a/docs/logo.png b/docs/logo.png new file mode 100644 index 0000000..f06b81c Binary files /dev/null and b/docs/logo.png differ