Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit 3e9afaf

Browse files
Update theme to match Supermodel brand guidelines
- Replace Inter/JetBrains Mono with Public Sans/Martian Mono - Update :root CSS variables to brand palette (pure black bg, teal accent, muted secondary colors) - Fix hardcoded colors in CTA gradient, hero button hovers, and source code block Closes #15 (arch-docs portion)
1 parent 2b3a440 commit 3e9afaf

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

templates/_head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
<link rel="manifest" href="/manifest.json">
66
<link rel="preconnect" href="https://fonts.googleapis.com">
77
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
8+
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@200;300;400;500;600;700&family=Martian+Mono:wght@300;400;500&display=swap" rel="stylesheet">

templates/_styles.css

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
:root {
2-
--bg: #0f1117;
3-
--bg-card: #1a1d27;
4-
--bg-hover: #22263a;
5-
--border: #2a2e3e;
6-
--text: #e4e4e7;
7-
--text-muted: #9ca3af;
8-
--accent: #6366f1;
9-
--accent-light: #818cf8;
10-
--green: #22c55e;
11-
--orange: #f59e0b;
12-
--red: #ef4444;
13-
--blue: #3b82f6;
14-
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
15-
--mono: 'JetBrains Mono', 'Fira Code', monospace;
2+
--bg: #000000;
3+
--bg-card: #161616;
4+
--bg-hover: #08191C;
5+
--border: #202020;
6+
--text: #E9E9E9;
7+
--text-muted: #808080;
8+
--accent: #71B9BC;
9+
--accent-light: #8CC6C9;
10+
--green: #7CCE86;
11+
--orange: #D0A27D;
12+
--red: #E589C6;
13+
--blue: #8E8CE9;
14+
--font: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
15+
--mono: 'Martian Mono', 'Fira Code', monospace;
1616
--max-w: 1200px;
1717
--radius: 8px;
1818
}
@@ -270,9 +270,9 @@ a.pill:hover {
270270
}
271271
.hero-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
272272
.hero-btn-star { border-color: var(--orange); color: var(--orange); }
273-
.hero-btn-star:hover { background: rgba(245, 158, 11, 0.1); }
273+
.hero-btn-star:hover { background: rgba(208, 162, 125, 0.1); }
274274
.hero-btn-fork { border-color: var(--blue); color: var(--blue); }
275-
.hero-btn-fork:hover { background: rgba(59, 130, 246, 0.1); }
275+
.hero-btn-fork:hover { background: rgba(142, 140, 233, 0.1); }
276276
.hero-stats {
277277
display: flex;
278278
justify-content: center;
@@ -521,7 +521,7 @@ a.pill:hover {
521521

522522
/* CTA Banner */
523523
.cta-section {
524-
background: linear-gradient(135deg, var(--bg-card) 0%, #12141d 100%);
524+
background: linear-gradient(135deg, var(--bg-card) 0%, #08191C 100%);
525525
border: 1px solid var(--accent);
526526
border-radius: var(--radius);
527527
padding: 40px 32px;
@@ -607,7 +607,7 @@ a.pill:hover {
607607
margin: 0 0 8px 0;
608608
}
609609
.source-code {
610-
background: #0d0f14;
610+
background: #161616;
611611
border: 1px solid var(--border);
612612
border-radius: var(--radius);
613613
padding: 16px;
@@ -620,7 +620,7 @@ a.pill:hover {
620620
.source-code code {
621621
font-family: var(--mono);
622622
font-size: 13px;
623-
color: #e4e4e7;
623+
color: #E9E9E9;
624624
white-space: pre;
625625
tab-size: 2;
626626
margin-bottom: 0;

0 commit comments

Comments
 (0)