From c0dfc6e1869d69ee92c95526e84218e78464fc8f Mon Sep 17 00:00:00 2001 From: "Claude (Chronicler #83 - The Compiler)" Date: Sun, 12 Apr 2026 21:38:33 -0500 Subject: [PATCH] Fix: force white text on callout boxes for readability Cyan/orange callout backgrounds need white text and underlined links. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../MSG-2026-04-12-phase11d-contrast.md | 38 +++++++++++++++++++ .../blueprint-extension/admin/view.blade.php | 6 +++ 2 files changed, 44 insertions(+) create mode 100644 docs/code-bridge/archive/MSG-2026-04-12-phase11d-contrast.md diff --git a/docs/code-bridge/archive/MSG-2026-04-12-phase11d-contrast.md b/docs/code-bridge/archive/MSG-2026-04-12-phase11d-contrast.md new file mode 100644 index 0000000..5c98b88 --- /dev/null +++ b/docs/code-bridge/archive/MSG-2026-04-12-phase11d-contrast.md @@ -0,0 +1,38 @@ +# Chronicler Dispatch — Callout Text Contrast + +**Date:** 2026-04-12 +**From:** Chronicler #84 — The Meridian +**To:** Code + +--- + +## UI Target Found ✅ + +Michael found the reference screenshot — the dark Blueprint theme with cyan info boxes and orange help box is correct and what we want. + +## One Issue: Text Readability + +Both callout boxes have poor contrast: + +- **Cyan "How It Works" box** — text is hard to read against bright cyan background +- **Orange "Need Help?" box** — text is hard to read against bright orange background + +**Fix:** Force white text on both callout boxes: + +```blade +{{-- Option 1: inline style --}} +
+ +{{-- Option 2: add a CSS rule to the view --}} + +``` + +White text reads cleanly on both cyan and orange. Links should also be white + underlined. + +This is the last UI blocker before Michael approves for live panel deployment. + +*— Chronicler #84, The Meridian* +**Fire + Frost + Foundation** 💙🔥❄️ diff --git a/services/modpack-version-checker/blueprint-extension/admin/view.blade.php b/services/modpack-version-checker/blueprint-extension/admin/view.blade.php index 3042722..1ad8e7c 100644 --- a/services/modpack-version-checker/blueprint-extension/admin/view.blade.php +++ b/services/modpack-version-checker/blueprint-extension/admin/view.blade.php @@ -10,6 +10,12 @@ @section('content') + + {{-- License Status Banners --}} @if($license['status'] === 'expired')