From ea1721c689dbb246439c31ff15b47c36a50b80ae Mon Sep 17 00:00:00 2001 From: Derek Lewis Date: Thu, 20 Aug 2026 16:53:44 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=EF=B8=8F=F0=9F=94=A7=EF=BC=9Abring?= =?UTF-8?q?=20the=20navbar=20into=20the=20palette?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Assisted-by: Claude-Code:claude-opus-5 --- _assets/styles/_sublime-theme.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_assets/styles/_sublime-theme.scss b/_assets/styles/_sublime-theme.scss index 819997ada..00082f42a 100644 --- a/_assets/styles/_sublime-theme.scss +++ b/_assets/styles/_sublime-theme.scss @@ -8,6 +8,12 @@ $quaternary: #a55054; $primary-text-emphasis: $primary; $spacer: 1rem; $body-color: #1d1916; + +// The navbar is `bg-dark`, which until now meant Bootstrap's own #212529: a +// colour this palette never chose. Against parchment nobody could tell, but +// a page with a dark section under the navbar puts a cool grey directly on +// our warm ink and it reads as a mistake. Our dark is the ink. +$dark: $body-color; $body-bg: #e7e7d6; $pagination-border-width: 2px; $pagination-border-color: $tertiary;