From ef639284c23a3747f059b945cb662a8055385883 Mon Sep 17 00:00:00 2001 From: Nelson Spence Date: Tue, 31 Mar 2026 02:57:37 -0500 Subject: [PATCH] docs: swap Research/Formalization tier colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Research → teal (positive) — green at top of fold signals growth/exploration Formalization → terracotta (negative) — signals rigor/exacting precision Infrastructure stays amber (neutral) Coding-Agent: claude-code Model: claude-opus-4-6 --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index e929eb7..7b43164 100644 --- a/index.html +++ b/index.html @@ -115,9 +115,9 @@ color: var(--text-dim); } - .category--research .category-header h2 { color: var(--negative); } + .category--research .category-header h2 { color: var(--positive); } .category--infra .category-header h2 { color: var(--neutral); } - .category--formalization .category-header h2 { color: var(--positive); } + .category--formalization .category-header h2 { color: var(--negative); } /* --- Grid --- */ .grid { @@ -203,9 +203,9 @@ margin-bottom: 0.75rem; } - .tier--research { background: rgba(196, 122, 122, 0.12); color: var(--negative); } + .tier--research { background: rgba(126, 184, 168, 0.12); color: var(--positive); } .tier--infra { background: rgba(212, 165, 116, 0.12); color: var(--neutral); } - .tier--formalization { background: rgba(126, 184, 168, 0.12); color: var(--positive); } + .tier--formalization { background: rgba(196, 122, 122, 0.12); color: var(--negative); } /* --- Footer --- */ footer {