🏗️🔧:bring the navbar into the palette - #1836
Merged
Merged
Conversation
The navbar is `bg-dark`, and until now that meant Bootstrap's #212529, a colour this palette never chose. Against parchment nobody could tell. Put a dark section directly under it, as the home page does, and a cool grey sits on our warm ink and reads as a mistake rather than a choice. Our dark is the ink, so `$dark` says so. `bg-dark` is the only thing derived from it that any template uses, so the navbar is the whole visible effect. Signed-off-by: Derek Lewis <DerekNonGeneric@inf.is> Assisted-by: Claude-Code:claude-opus-5
✅ Deploy Preview for gh-pages-openinf ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
OpenINFbot
approved these changes
Aug 20, 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.
The navbar carries Bootstrap's
bg-dark, which meant Bootstrap's own#212529— a colour this palette never chose.
_sublime-theme.scssnames four colours,an ink and a parchment, and that grey is none of them.
Against parchment it does not show. Put a dark section directly under the
navbar, as the home page in #1833 does, and the seam is obvious:
bg-dark#212529$body-color#1d1916Two darks of near-equal lightness with opposite hue casts, meeting on an edge.
It reads as something gone wrong rather than as a decision.
The change
Our dark is the ink, so the palette says so. Bootstrap derives
--bs-dark-rgband
bg-darkfrom$dark, so the navbar follows without touching any markupand without an
!importantto fight the utility.Scope
bg-darkis the only$dark-derived class any template uses, and it appearsonce:
No
text-dark,btn-dark,border-darkortable-darkanywhere. So thenavbar is the entire visible effect, on every page. Against parchment the
difference is slight; under the home page's masthead it is the point.
Checks
nps testpasses, all 17 verifiers.vnuclean.Note
#1833 wants this. The home page is what exposes the mismatch, and it will look
seamed until this lands.