Favicon: regenerate from logo so they match#60
Merged
Conversation
The favicon was the original v2.6.1 orange cartoon-fox silhouette; the panel logo (sidebar, login page) is the green geometric circuit- kitsune in a ring. Two completely different aesthetics — looking at the browser tab next to the panel, they didn't read as the same brand. Regenerated favicon.svg / favicon-16x16.png / favicon-32x32.png / favicon.ico from frontend/public/kitsune-command-logo-transparent.png so all four favicon variants are direct downsamples of the canonical logo source. The SVG embeds a 96px raster of the same source instead of being hand-drawn. Reasoning: redrawing the logo as a clean vector path would diverge from the source over time, and the logo's circuit traces don't survive a faithful path-only redraw at 16-32px anyway. Pinning the SVG to the same raster source means every favicon variant stays in lockstep with the logo — change the logo, run the script, all four files update together. Tradeoff at 16px: the fine circuit-trace line art washes out into a soft green silhouette. Modern browsers prefer the SVG path (which scales fluidly to whatever DPI the tab renders at), so the 16px raster is mostly a historical fallback. Could tune a bolder 16px variant later if the tab strip looks too washed out. Tooling: tools/regen-favicons.py is the regen script. Pillow only, no extra deps. Source path + output paths hardcoded so it just works from repo root. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 9, 2026
AdaInTheLab
added a commit
that referenced
this pull request
May 13, 2026
Rolls up everything since v2.6.2 into a single release tag. v2.6.3 was bumped on main (#63) but never tagged or released — folding it into v2.6.4 keeps the public release history clean. Marquee additions since v2.6.2: - Modpack (#64) — Bundle installed mods into a single zip players can download from the login page. No panel account required. Three-state workflow (draft → published → archived), top-right CTA on the login page, anonymous metadata + download endpoints. Atomic temp-file zip build so public downloaders can't grab a half-written archive. - Graceful Restart (#57, #58) — Scheduled daily restarts with player-friendly in-game countdown warnings. Configurable warning ladder, IANA-timezone schedule (DST-aware), krestart console command, REST endpoints, panel Settings tab. - Backups bug fix (#56) — BackupService had a redundant conn.Open() call that silently dropped writes due to a custom System.Data.SQLite quirk. Reads worked, so the bug went unnoticed until first hands-on test. Six call sites fixed, class doc comment added so future-me doesn't reintroduce it. - German / French / Spanish locales (#59, #61, #62) — Full polite-form translations across ~250 keys / 30 namespaces. Browser auto-detect picks the right one for de-* / fr-* / es-* visitors. Tooltip on the language switcher noting that in-game broadcast messages don't auto-translate. - Favicon (#60) — Regenerated all four favicon variants (svg / 16 / 32 / ico) from kitsune-command-logo-transparent.png so the browser tab matches the panel's sidebar logo. - README updates: features list now reflects all the above. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The browser-tab favicon was the original orange cartoon-fox silhouette from v2.6.1. The actual panel logo (sidebar, login) is the green geometric circuit-kitsune in a ring. Side-by-side they didn't read as the same brand.
This PR regenerates all four favicon variants (`favicon.svg`, `favicon-16x16.png`, `favicon-32x32.png`, `favicon.ico`) from `frontend/public/kitsune-command-logo-transparent.png` so they're direct downsamples of the canonical logo. Browser tab now matches the panel.
Approach
The SVG embeds a 96px raster of the logo (base64) rather than being a hand-drawn path. Why:
Tradeoff at 16px
The fine line-art washes out at 16×16 into a soft green silhouette in a circle. Modern browsers prefer the SVG (which scales fluidly to whatever DPI the tab renders at), so the 16px raster is mostly a historical fallback. If the tab strip looks too washed out we could hand-tune a bolder 16px variant later — but that'd diverge from the source-of-truth logo, which is the whole thing this PR fixes.
Files
Test plan
🤖 Generated with Claude Code