From 3b1e4dc7c720a6b7fb9770d90c844a3a43843d99 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Fri, 16 Jan 2026 15:05:12 +0100 Subject: [PATCH] feat: add section color coding to overview first paragraphs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The strong and code elements in .section-overview now use section-specific colors (purple/pink/teal) instead of default purple. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- src/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.css b/src/main.css index 53dd116..d165ebc 100644 --- a/src/main.css +++ b/src/main.css @@ -2623,12 +2623,12 @@ input:checked + .toggle-slider::before { } .section-overview strong { - color: var(--primary-dark); + color: var(--section-color-dark, var(--primary-dark)); } .section-overview code { - background: var(--primary-bg-light); - color: var(--primary-dark); + background: rgba(var(--section-color-rgb, 145, 99, 184), 0.1); + color: var(--section-color-dark, var(--primary-dark)); padding: 0.1rem 0.35rem; border-radius: 4px; font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;