fix: convert logo from JPG to PNG with transparent corners#43
Merged
Conversation
The logo is a rounded-square design but was saved as JPG which does not support transparency. The corners had near-white pixels that were visible against GitHub backgrounds. Convert to PNG and flood-fill the corners to transparent. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
The lychee-action v2.8.0 bundles lychee v0.23.0 which defaults to .lychee.toml, but we renamed the config to lychee.toml (no dot) for compatibility with lychee 0.24+. Pass --config explicitly so both versions find the config. This enables max_retries=3 for transient network errors like helm.sh ConnectionReset. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
SebTardif
added a commit
to attune-io/.github
that referenced
this pull request
May 26, 2026
JPEG does not support transparency, causing colored corners on dark backgrounds. The repo logo was converted to PNG in attune-io/attune#43. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
SebTardif
added a commit
that referenced
this pull request
May 26, 2026
* fix: convert logo from JPG to PNG with transparent corners The logo is a rounded-square design but was saved as JPG which does not support transparency. The corners had near-white pixels that were visible against GitHub backgrounds. Convert to PNG and flood-fill the corners to transparent. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca> * ci: pass lychee config explicitly The lychee-action v2.8.0 bundles lychee v0.23.0 which defaults to .lychee.toml, but we renamed the config to lychee.toml (no dot) for compatibility with lychee 0.24+. Pass --config explicitly so both versions find the config. This enables max_retries=3 for transient network errors like helm.sh ConnectionReset. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca> --------- Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
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.
The logo is a rounded-square design but was saved as JPG, which does not support transparency. The corners had near-white pixels (srgb 254,254,254) visible against GitHub's dark mode background.
Converted to PNG with flood-fill transparency on all four corners (5% fuzz to catch JPG compression artifacts around the edges).