summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ0J0 Todos <jojo@peek-a-boo.at>2023-10-29 10:29:43 +0100
committerJ0J0 Todos <jojo@peek-a-boo.at>2023-10-29 10:30:33 +0100
commitd80d45974b0d331ecb36ec8888c9c07d6cf0b233 (patch)
tree75ce4f9a014078a1d45113d3bee1f176958f8420
parentf984749cc638632c10ab9fc1bfe683c6f3bebaf6 (diff)
Transparent background logo for docs
Exchange the white-bg logo with a transparent-bg version, to ensure Sphinx pydata theme also looks well when switched to dark mode.
-rw-r--r--docs/_static/beets_logo.pngbin10205 -> 0 bytes
-rw-r--r--docs/_static/beets_logo_nobg.pngbin0 -> 11502 bytes
-rw-r--r--docs/conf.py2
3 files changed, 1 insertions, 1 deletions
diff --git a/docs/_static/beets_logo.png b/docs/_static/beets_logo.png
deleted file mode 100644
index 0359260ad..000000000
--- a/docs/_static/beets_logo.png
+++ /dev/null
Binary files differ
diff --git a/docs/_static/beets_logo_nobg.png b/docs/_static/beets_logo_nobg.png
new file mode 100644
index 000000000..eb91ef503
--- /dev/null
+++ b/docs/_static/beets_logo_nobg.png
Binary files differ
diff --git a/docs/conf.py b/docs/conf.py
index 0220ab48b..82061247c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -69,6 +69,6 @@ html_theme_options = {
"pygment_light_style": "bw",
}
html_title = "beets"
-html_logo = "_static/beets_logo.png"
+html_logo = "_static/beets_logo_nobg.png"
html_static_path = ['_static']
html_css_files = ['beets.css']