docs: add the taskito logo - #582
Merged
Merged
Conversation
Excludes the generated favicon.svg — it wraps a base64 raster, so browsers would prefer 294K over the 15K .ico.
GitHub strips inline styles, so the accent on "ito" has to ship as an image; light/dark variants swap via prefers-color-scheme.
Trade-off: the drawn mark tracked the operator's brandAccent override; the artwork has fixed colors.
📝 WalkthroughWalkthroughThe change standardizes branding across the dashboard, documentation site, and README, replacing placeholder or inline logo rendering with raster assets and adding base-aware favicon, manifest, and icon references. ChangesBranding and site assets
Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Consecutive raw HTML blocks inside the centered div render inline, so the two marks sat side by side; explicit paragraphs separate them.
pratyush618
approved these changes
Jul 29, 2026
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.
Puts the taskito logo on the docs site, the README, and the dashboard, and gives all three a real favicon (none of them had one).
What landed where
Docs site —
logo.pngreplaces the CSS-drawn.logosquare in the nav and footer..logonow sizes on height (height: 27px; width: auto): the artwork is 770×513, so the old 27×27 square box would have cropped the flanking queuearrows. Favicon, apple-touch-icon and web manifest wired in
root.tsx, all throughimport.meta.env.BASE_URLso they resolve under the/taskitoPages base rather than at the domain root.README — the logo above the title, and the title itself replaced with a two-tone wordmark matching the site's
task+ accentedito. GitHub strips inline styles from markdown, so the accent has to ship as an image; light and dark variants swap viaprefers-color-scheme. Colors are the docs tokens (#13a44elight,#3bbf72dark).Dashboard —
BrandMarkwas a hand-drawn rounded square with dot eyes and a check-smile, unrelated to the actual logo. Now the same artwork, plus favicon links inindex.html.Three judgement calls
favicon.svgis not included. The generated bundle ships one, but it holds a single<image>element wrapping a base64 raster — zero<path>elements, so it is a PNG in SVG clothing at 294 KB. Browsers prefertype="image/svg+xml"over.icowhen both are declared, so including it would cost every tab load 294 KB instead of the 15 KB.ico.site.webmanifestwas rewritten. It shipped as"name": "MyWebSite","short_name": "MySite", white theme colors, and absolute/web-app-manifest-*.pngicon paths — the last of which 404s under the/taskitobase. Nowtaskito, relative icon paths (resolved against the manifest URL, correct at any base), and#364b53sampled from the mark's hexagon stroke.The dashboard mark no longer follows
brandAccent. The drawn mark usedvar(--accent)/var(--accent-fg), so it tracked an operator's Settings → Branding accent override; fixed artwork cannot. The sidebar wordmark beside it still tracks the accent and the custom-title path is untouched, but an operator who rebrands the accent now sees taskito-green artwork next to their color. Noted in the component docstring — say the word and I'll keep the drawn mark wheneverbrandAccentis set.Verification
DOCS_BASE_PATH=/taskitobuild emits/taskito/favicon.ico,/taskito/favicon-96x96.png,/taskito/apple-touch-icon.png,/taskito/site.webmanifest,/taskito/logo.pngimg-src 'self' data:, so the bundled PNG passessdks/*/static/dashboardis untracked, so no committed artifact goes stale;build:dashboardregenerates itSummary by CodeRabbit