Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
3e9afaf
Update theme to match Supermodel brand guidelines
jonathanpopham Mar 11, 2026
fa841eb
Update chart/graph colors and fonts to match brand palette
jonathanpopham Mar 11, 2026
474a83b
Switch treemap to vertical slice layout on narrow screens
jonathanpopham Mar 11, 2026
e6ba49b
Revert "Switch treemap to vertical slice layout on narrow screens"
jonathanpopham Mar 11, 2026
cc0b512
Update typography to match brand guide type scale
jonathanpopham Mar 11, 2026
563c284
Replace treemap with horizontal bar list on mobile (<600px)
jonathanpopham Mar 11, 2026
35a31a2
Make homepage treemap responsive with resize listener
jonathanpopham Mar 11, 2026
41ccb34
Allow hero stats to wrap at any viewport width
jonathanpopham Mar 11, 2026
5fac445
Replace SVG treemap with HTML flexbox composition
jonathanpopham Mar 11, 2026
9365f54
Use percentage flex-basis for proportional composition boxes
jonathanpopham Mar 11, 2026
9552e7f
Compact composition boxes to match treemap proportions
jonathanpopham Mar 11, 2026
4133cc1
Two-row composition layout for area-proportional boxes
jonathanpopham Mar 11, 2026
51605d2
Revert "Two-row composition layout for area-proportional boxes"
jonathanpopham Mar 11, 2026
23db7f4
Make force graphs resize with viewport
jonathanpopham Mar 11, 2026
2fadd03
Hide empty chart panel on hub pages with no distribution data
jonathanpopham Mar 11, 2026
b7901ad
Revert "Hide empty chart panel on hub pages with no distribution data"
jonathanpopham Mar 11, 2026
b14c112
Fix WCAG contrast issues flagged by CodeRabbit
jonathanpopham Mar 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
<link rel="manifest" href="/manifest.json">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<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">
38 changes: 19 additions & 19 deletions templates/_styles.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
:root {
--bg: #0f1117;
--bg-card: #1a1d27;
--bg-hover: #22263a;
--border: #2a2e3e;
--text: #e4e4e7;
--text-muted: #9ca3af;
--accent: #6366f1;
--accent-light: #818cf8;
--green: #22c55e;
--orange: #f59e0b;
--red: #ef4444;
--blue: #3b82f6;
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--mono: 'JetBrains Mono', 'Fira Code', monospace;
--bg: #000000;
--bg-card: #161616;
--bg-hover: #08191C;
--border: #202020;
--text: #E9E9E9;
--text-muted: #808080;
--accent: #71B9BC;
--accent-light: #8CC6C9;
Comment thread
coderabbitai[bot] marked this conversation as resolved.
--green: #7CCE86;
--orange: #D0A27D;
--red: #E589C6;
--blue: #8E8CE9;
--font: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Quote BlinkMacSystemFont so stylelint stops tripping here.

This stack currently violates value-keyword-case. Quoting the fallback keeps the behavior the same and clears the lint error.

Small fix
-  --font: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
+  --font: 'Public Sans', -apple-system, 'BlinkMacSystemFont', sans-serif;
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
--font: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
--font: 'Public Sans', -apple-system, 'BlinkMacSystemFont', sans-serif;
🧰 Tools
🪛 Stylelint (17.4.0)

[error] 14-14: Expected "BlinkMacSystemFont" to be "blinkmacsystemfont" (value-keyword-case)

(value-keyword-case)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@templates/_styles.css` at line 14, The custom property --font currently
contains an unquoted BlinkMacSystemFont which triggers stylelint's
value-keyword-case; update the --font declaration used in templates/_styles.css
(the --font variable string) to quote "BlinkMacSystemFont" (e.g. '--font:
'Public Sans', -apple-system, "BlinkMacSystemFont", sans-serif;') so the
fallback is quoted and the value-keyword-case lint error is resolved.

--mono: 'Martian Mono', 'Fira Code', monospace;
--max-w: 1200px;
--radius: 8px;
}
Expand Down Expand Up @@ -270,9 +270,9 @@ a.pill:hover {
}
.hero-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-btn-star { border-color: var(--orange); color: var(--orange); }
.hero-btn-star:hover { background: rgba(245, 158, 11, 0.1); }
.hero-btn-star:hover { background: rgba(208, 162, 125, 0.1); }
.hero-btn-fork { border-color: var(--blue); color: var(--blue); }
.hero-btn-fork:hover { background: rgba(59, 130, 246, 0.1); }
.hero-btn-fork:hover { background: rgba(142, 140, 233, 0.1); }
.hero-stats {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -521,7 +521,7 @@ a.pill:hover {

/* CTA Banner */
.cta-section {
background: linear-gradient(135deg, var(--bg-card) 0%, #12141d 100%);
background: linear-gradient(135deg, var(--bg-card) 0%, #08191C 100%);
border: 1px solid var(--accent);
border-radius: var(--radius);
padding: 40px 32px;
Expand Down Expand Up @@ -607,7 +607,7 @@ a.pill:hover {
margin: 0 0 8px 0;
}
.source-code {
background: #0d0f14;
background: #161616;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 16px;
Expand All @@ -620,7 +620,7 @@ a.pill:hover {
.source-code code {
font-family: var(--mono);
font-size: 13px;
color: #e4e4e7;
color: #E9E9E9;
white-space: pre;
tab-size: 2;
margin-bottom: 0;
Expand Down
Loading