From 6a4607678cf60d96c07a80a9ccef24ae57a7810e Mon Sep 17 00:00:00 2001 From: Haowei Hsu Date: Mon, 22 Jun 2026 23:35:22 +0800 Subject: [PATCH] docs: add light/dark logos --- docs/_static/.gitkeep | 0 docs/_static/logo-dark.svg | 42 +++++++++++++++++++++++++++++++++++++ docs/_static/logo-light.svg | 41 ++++++++++++++++++++++++++++++++++++ docs/conf.py | 2 ++ 4 files changed, 85 insertions(+) delete mode 100644 docs/_static/.gitkeep create mode 100644 docs/_static/logo-dark.svg create mode 100644 docs/_static/logo-light.svg diff --git a/docs/_static/.gitkeep b/docs/_static/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/docs/_static/logo-dark.svg b/docs/_static/logo-dark.svg new file mode 100644 index 0000000000..576604a93e --- /dev/null +++ b/docs/_static/logo-dark.svg @@ -0,0 +1,42 @@ + + diff --git a/docs/_static/logo-light.svg b/docs/_static/logo-light.svg new file mode 100644 index 0000000000..878d1658b7 --- /dev/null +++ b/docs/_static/logo-light.svg @@ -0,0 +1,41 @@ + + diff --git a/docs/conf.py b/docs/conf.py index 25851142dc..fd1b603924 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -95,6 +95,8 @@ # documentation. # html_theme_options = { + "light_logo": "_static/logo-light.svg", + "dark_logo": "_static/logo-dark.svg", "github_url": "https://github.com/getsentry/sentry-python", }