Context
The Atlas documentation site at atlas.devarno.cloud was rendering with three competing visual signals: black (night sky background), orange/red (Mars iron oxide from--mars-iron-oxide: #CD5C5C), and blue (electric blue from --mars-electric: #3B82F6). The blue was used as a “secondary” accent for borders on cards, sidebar, code blocks, tables, callouts, navbar, search, inline code, accordions, footer, and horizontal rules — but it clashed with the Mars survival theme and diluted the SO1 brand identity.
Additionally, the landing page (index.mdx) was a simple card grid with no visual architecture context, no Mermaid diagrams, and no requirement traceability — making it a poor first impression for anyone arriving via a Devarno conversion.
Root Cause
Themars.css custom theme defined --mars-electric: #3B82F6 (Tailwind blue-500) and used it in 17 CSS rules as border colors and backgrounds for structural UI elements. This was originally intended as a “cool contrast” to the warm Mars palette, but in practice it created visual confusion — users couldn’t tell if the blue was intentional branding, a Mintlify default bleeding through, or a bug.
The index.mdx also used color="#3B82F6" on the Ground Control cards (Rover Console, GitHub), which rendered as bright blue card icons against the otherwise warm page.
Changes Made
mars.css — Color Unification
Every instance of#3B82F6 / rgba(59, 130, 246, ...) was replaced with warm Mars tones:
| Element | Before (Blue) | After (Mars) |
|---|---|---|
| Sidebar border | rgba(59, 130, 246, 0.12) | rgba(205, 92, 92, 0.12) — iron oxide |
| Card borders | rgba(59, 130, 246, 0.15) | rgba(160, 82, 45, 0.18) — sienna |
| Code block borders | rgba(59, 130, 246, 0.12) | rgba(160, 82, 45, 0.12) — sienna |
| Table borders | rgba(59, 130, 246, 0.12) | rgba(160, 82, 45, 0.12) — sienna |
| Callout borders | rgba(59, 130, 246, 0.2) | rgba(205, 92, 92, 0.2) — iron oxide |
| Navbar border | rgba(59, 130, 246, 0.1) | rgba(160, 82, 45, 0.1) — sienna |
| Inline code bg/border | rgba(59, 130, 246, 0.1/0.15) | rgba(160, 82, 45, 0.1/0.18) — sienna |
| Search border | rgba(59, 130, 246, 0.15) | rgba(160, 82, 45, 0.15) — sienna |
| Accordion borders | rgba(59, 130, 246, 0.12) | rgba(160, 82, 45, 0.12) — sienna |
| Footer border | rgba(59, 130, 246, 0.08) | rgba(160, 82, 45, 0.08) — sienna |
| HR gradient | red-to-blue gradient | red-to-sienna gradient |
| Body background | blue radial gradient | sienna radial gradient |
--mars-electric CSS variable was removed entirely. The --mars-night backgrounds were also shifted from blue-tinted (#0A0E27) to neutral-dark (#0A0E17) to eliminate any residual blue cast.
index.mdx — Landing Page Redesign
The landing page was rebuilt with five Mermaid diagrams:- Platform Architecture (Fig 1) — Full system topology showing The Hab, Mission Control, Rover, and Surface modules with communication pathways
- FORGE Pipeline (Fig 2) — Five-stage engineering pipeline with gate verification at each transition
- Agent Fleet Topology (Fig 3) — 21 agents across 7 domains with orchestration and gatekeeper flows
- Verification Traceability Matrix (Fig 4) — Requirement → Implementation → Test mapping for core platform concerns
- Deployment Topology (Fig 5) — Infrastructure mapping showing Vercel, Railway, Supabase, and external service integration
%%{init}%% directives, with iron oxide as primary, sienna as borders, and regolith as line colors.
Ground Control cards were changed from color="#3B82F6" to color="#CD5C5C" (iron oxide) and color="#A0522D" (sienna).
Design Principles Applied
- One accent family — All accent colors are now in the warm spectrum: iron oxide (
#CD5C5C), sienna (#A0522D), regolith (#D2B48C). No cool tones. - Diagrams over descriptions — The landing page now shows architecture visually before listing modules as cards.
- Traceability as a first-class concept — The VTM diagram on the landing page signals that SO1 takes requirement coverage seriously.
- Captions on every diagram — Each Mermaid block has a figure number and explanatory caption.
Impact
- Users arriving from a Devarno conversion now see a cohesive Mars-red branded experience
- The architecture is immediately legible without clicking into any sub-pages
- The FORGE pipeline is visible before any technical deep-dive
- The blue contamination is fully eliminated from the theme