From 82d358ab90d45d960e6dee27b87657ceb3424305 Mon Sep 17 00:00:00 2001 From: goodboy Date: Sat, 27 Jun 2026 18:13:06 -0400 Subject: [PATCH] Adopt the wireframe logo in navbar + README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Carry the landing hero's transparent-faces wireframe look to the two other logo contexts. An ``-embedded svg can't read the page CSS (no `currentColor`), so the colours are baked per target, - navbar: 2 variants (`tractor_logo_nav_light.svg` near-black lines, `…_nav_dark.svg` near-white) wired via the pydata `logo.image_light`/`image_dark` opts so it swaps with the theme toggle, matching the hero, - README: `tractor_logo_wire.svg` — one neutral-grey, with INLINE fills (no ` + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_static/tractor_logo_nav_light.svg b/docs/_static/tractor_logo_nav_light.svg new file mode 100644 index 00000000..cee2d91f --- /dev/null +++ b/docs/_static/tractor_logo_nav_light.svg @@ -0,0 +1,458 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/_static/tractor_logo_wire.svg b/docs/_static/tractor_logo_wire.svg new file mode 100644 index 00000000..e279a296 --- /dev/null +++ b/docs/_static/tractor_logo_wire.svg @@ -0,0 +1,455 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/conf.py b/docs/conf.py index f1732184..4f9f4342 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -99,9 +99,12 @@ html_static_path = ['_static'] html_css_files = ['css/custom.css'] html_show_sourcelink = False html_theme_options = { + # theme-adaptive navbar logo: faces transparent, linework + # near-black on light / near-white on dark (pydata swaps by + # the active theme). Matches the landing hero's wireframe. 'logo': { - 'image_light': '_static/tractor_logo_side.svg', - 'image_dark': '_static/tractor_logo_side.svg', + 'image_light': '_static/tractor_logo_nav_light.svg', + 'image_dark': '_static/tractor_logo_nav_dark.svg', 'alt_text': 'tractor', }, 'github_url': 'https://github.com/goodboy/tractor',