feat: dashboard theme overhaul — light content area with branded teal sidebar

Complete frontend visual redesign using certctl logo color palette:
- Deep teal sidebar (#0c2e25) with prominent centered logo (64px in white pill)
- Light content area (#f0f4f8) with white cards and visible borders
- Brand colors from logo: teal (#2ea88f), blue (#3b7dd8), orange (#e8873a), green (#4ebe6e)
- Inter + JetBrains Mono typography, colored stat card top borders
- All 17 pages + 7 components updated (25 files, ~700 lines changed)
- 15 new dashboard screenshots replacing old dark theme screenshots
- Prometheus metrics e2e test added, integration test mock fixes
- Docs updated: architecture.md theme description, testing-guide.md DNS-PERSIST-01 coverage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shankar0123
2026-03-26 23:27:42 -04:00
parent 8380cb7946
commit 50c520e1ff
48 changed files with 699 additions and 519 deletions
+6 -6
View File
@@ -27,10 +27,10 @@ export default function AgentGroupsPage() {
label: 'Group',
render: (g) => (
<div>
<div className="font-medium text-slate-200">{g.name}</div>
<div className="text-xs text-slate-500 font-mono">{g.id}</div>
<div className="font-medium text-ink">{g.name}</div>
<div className="text-xs text-ink-faint font-mono">{g.id}</div>
{g.description && (
<div className="text-xs text-slate-400 mt-0.5 max-w-xs truncate">{g.description}</div>
<div className="text-xs text-ink-muted mt-0.5 max-w-xs truncate">{g.description}</div>
)}
</div>
),
@@ -51,7 +51,7 @@ export default function AgentGroupsPage() {
))}
</div>
) : (
<span className="text-slate-500 text-xs">Manual only</span>
<span className="text-ink-faint text-xs">Manual only</span>
);
},
},
@@ -63,7 +63,7 @@ export default function AgentGroupsPage() {
{
key: 'created',
label: 'Created',
render: (g) => <span className="text-xs text-slate-400">{formatDateTime(g.created_at)}</span>,
render: (g) => <span className="text-xs text-ink-muted">{formatDateTime(g.created_at)}</span>,
},
{
key: 'actions',
@@ -71,7 +71,7 @@ export default function AgentGroupsPage() {
render: (g) => (
<button
onClick={(e) => { e.stopPropagation(); if (confirm(`Delete group ${g.name}?`)) deleteMutation.mutate(g.id); }}
className="text-xs text-red-400 hover:text-red-300 transition-colors"
className="text-xs text-red-600 hover:text-red-700 transition-colors"
>
Delete
</button>