Recolor the brand assets to burnt orange - #49
Merged
Conversation
Matches the CSS accent change in #48. favicon.ico was byte-identical to the website's copy, so the already recolored file is copied across rather than converted a second time. Two independent conversions would drift; this keeps them identical. logo.png is two flat colors, remapped by projecting onto the gold-to-gray axis so antialiasing survives. logo-icon.png carries the duller #a39259 gold on a dark ground and gets the same saturation-gated remap as the favicon, leaving the neutral background untouched.
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.
Image counterpart to #48, which moved the CSS accent to
#d98a45.docs/assets/favicon.ico#a39259#da8b46docs/assets/logo.png#c0995e#d98a45docs/assets/logo-icon.png#a39259#da8b46Notes
The favicon was byte-identical to the website's copy (same SHA-256), so the already-recolored file is copied across rather than run through the conversion a second time. Two independent conversions would drift apart; this keeps them identical.
logo.pngis two flat colors plus antialiasing. Every pixel is projected onto the gold-to-gray axis, the gold endpoint swapped, and the residual added back — both endpoints map exactly and all blend shades survive without edge fringing.logo-icon.pngcarries the duller#a39259gold on a dark ground, so it gets the same saturation-gated HLS remap as the favicon: neutral background and lettering pass through untouched.Unrelated to this PR
The navbar brand icon in
overrides/main.htmlis<img src="https://comp-physics.group/favicon.ico">— an absolute production URL. It picks up the new color from the website deploy, not from this repo, so nothing here needs to change for it.mkdocs build --strictpasses.