docs(README.md): adopt the new Coder shorthand mark#19
Merged
Conversation
Replaces the old square white-on-black mark hotlinked from coder/presskit (which was wiped and redirected to https://coder.together.agency) with the official shorthand mark from the new presskit bundle, vendored as SVG under assets/. Uses an HTML <picture> element with prefers-color-scheme so the black mark is shown on light backgrounds and the white mark on dark backgrounds, matching GitHub's documented pattern for theme- aware images. The <img> fallback keeps a single image rendering in non-GitHub Markdown renderers. Files vendored locally to avoid breaking if the source layout moves. SVG is byte-identical to the official downloads from coder.together.agency/downloads/logo/downloadFile.zip. This change was prepared by Coder Agents.
There was a problem hiding this comment.
Pull request overview
Updates the README header logo to use the new official Coder “shorthand” mark while avoiding a broken upstream hotlink by vendoring the logo assets into this repository.
Changes:
- Replaced the hotlinked
coder/presskitPNG logo with a theme-aware<picture>block (dark/light) inREADME.md. - Added locally vendored SVG logo assets for black and white variants under
assets/.
Reviewed changes
Copilot reviewed 1 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Switches the header logo to a locally vendored, theme-aware SVG via <picture> + prefers-color-scheme. |
| assets/coder-mark-white.svg | Adds the white shorthand SVG used for dark mode. |
| assets/coder-mark-black.svg | Adds the black shorthand SVG used as the default/light-mode fallback. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
bpmct
approved these changes
Jun 26, 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.
Summary
Replaces the old coder logo hotlinked from
coder/presskitwith the official "shorthand" mark from the new presskit, vendored locally underassets/.Markup
This is GitHub's documented pattern for theme-aware images, see Quickstart for writing on GitHub and the GitHub blog. The bare
<img>is the fallback for renderers that do not support<picture>or the media query, so the black mark continues to render in non-GitHub contexts.This change was prepared by Coder Agents.