chore: add brand-styled logo + screenshot assets for adk-docs PR#4
Merged
Merged
Conversation
Adds the two assets the upstream adk-docs PR needs: - docs/assets/parallel.png: Parallel symbol logo (1080x1080), copied from assets.parallel.ai. Symbol-only (no wordmark) since the catalog already shows the partner name as text next to the icon. - docs/assets/research_agent.png: rendered terminal screenshot of the example agent run. Uses Parallel's brand fonts (FT System Mono) and palette per assets.parallel.ai/llms.txt: Off-white #fcfcfa background, Index black #1d1b16 body text, Signal #fb631b prompt accents, Neural #d8d0bf for the trace line. scripts/render_screenshot.py: regenerates the screenshot PNG from docs/screenshot.txt. Downloads FT System Mono fonts from assets.parallel.ai on demand (gitignored, browser-style User-Agent required to avoid 403 from the asset CDN). Also regenerates docs/screenshot.txt with current public tool names (was generated against the previous _underscore-prefixed names).
Now that the assets live in docs/assets/, surface them in the top-level README so the repo has visual polish and the assets justify their existence in-tree.
The Parallel symbol is dark-on-transparent, which renders fine in light mode but disappears in GitHub's dark mode. Add the white variant and use a <picture> element with prefers-color-scheme so the right mark renders in each theme.
The dark avatar variant carries its own background (dark rounded square with white mark), so it renders correctly in both GitHub light and dark modes without needing a <picture> element. Drops the unneeded white symbol PNG. Also leads the install snippet with 'uv add' (with pip as fallback) since most modern Python tooling is now uv-first.
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.
Adds the two assets the upstream
google/adk-docsPR needs to land cleanly:docs/assets/parallel.pngassets.parallel.ai/dark-parallel-avatar-1080.png. Carries its own contrast background (dark rounded square with white mark), so it works in both GitHub light and dark modes without needing a<picture>element.docs/assets/research_agent.pngexamples/research_agent.py. Uses Parallel's brand fonts (FT System Mono) and palette perassets.parallel.ai/llms.txt: Off-white `#fcfcfa` background, Index black `#1d1b16` body, Signal `#fb631b` prompt accents, Neural `#d8d0bf` trace line.Plus
scripts/render_screenshot.pyto regenerate the PNG fromdocs/screenshot.txt. Fonts download on demand fromassets.parallel.ai(gitignored — the CDN rejects the default urllib User-Agent, so the script passes a browser UA).Also updates the README to embed the logo and screenshot, leads the install snippet with
uv add(pip as fallback), and regeneratesdocs/screenshot.txtagainst the current public tool names (the previous capture was made against the pre-rename_web_searchetc.).Verification
pytest -v→ 29/29 passing (no source code changed)ruff check + format --check→ clean