rebrand: replace SF Mono/Inter with Geist Mono/Sans

This commit is contained in:
Hanzo Dev
2026-03-13 16:27:01 -07:00
parent abca8f9b4f
commit 9d38a8238d
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -1492,7 +1492,7 @@ const elementPicker = (() => {
overlay.style.cssText = 'position:fixed;pointer-events:none;z-index:2147483646;border:2px solid #fff;border-radius:3px;background:rgba(255,255,255,0.06);transition:all 0.1s ease;display:none;';
label = document.createElement('div');
label.id = 'hanzo-picker-label';
label.style.cssText = 'position:fixed;z-index:2147483647;pointer-events:none;background:#000;color:#fff;font:11px/1.4 SF Mono,Menlo,monospace;padding:3px 8px;border-radius:4px;max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:none;box-shadow:0 2px 8px rgba(0,0,0,0.4);';
label.style.cssText = 'position:fixed;z-index:2147483647;pointer-events:none;background:#000;color:#fff;font:11px/1.4 Geist Mono,Menlo,monospace;padding:3px 8px;border-radius:4px;max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:none;box-shadow:0 2px 8px rgba(0,0,0,0.4);';
document.body.appendChild(overlay);
document.body.appendChild(label);
}
@@ -1636,7 +1636,7 @@ const inlineConsole = (() => {
if (root) return;
root = document.createElement('div');
root.id = 'hanzo-console-root';
root.style.cssText = 'position:fixed;bottom:20px;left:20px;right:20px;z-index:2147483646;font-family:SF Mono,Menlo,Consolas,monospace;font-size:12px;display:none;';
root.style.cssText = 'position:fixed;bottom:20px;left:20px;right:20px;z-index:2147483646;font-family:Geist Mono,Menlo,Consolas,monospace;font-size:12px;display:none;';
root.innerHTML = `
<div style="background:rgba(0,0,0,0.92);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.15);border-radius:10px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,0.5);">
<div id="hanzo-console-output" style="max-height:200px;overflow-y:auto;padding:8px 12px;color:#ccc;white-space:pre-wrap;word-break:break-all;"></div>
+2 -2
View File
@@ -28,7 +28,7 @@
body {
width: 360px;
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
background: var(--bg);
color: var(--text);
font-size: 13px;
@@ -500,7 +500,7 @@ kbd {
background: rgba(255,255,255,0.06);
border: 1px solid var(--border);
border-radius: 3px;
font-family: 'SF Mono', 'Menlo', monospace;
font-family: 'Geist Mono', 'Menlo', monospace;
font-size: 10px;
}
+8 -8
View File
@@ -34,7 +34,7 @@
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
font-size: 13px;
@@ -523,13 +523,13 @@ html {
padding: 10px 12px;
margin: 8px 0;
overflow-x: auto;
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
font-size: 12px;
line-height: 1.4;
}
.msg-assistant code {
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
font-size: 12px;
background: rgba(255,255,255,0.06);
padding: 2px 5px;
@@ -964,7 +964,7 @@ html {
}
.mono {
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
font-size: 11px;
}
@@ -1036,7 +1036,7 @@ html {
border: 1px solid var(--border);
border-radius: 6px;
font-size: 11px;
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
color: var(--text-secondary);
max-height: 200px;
overflow-y: auto;
@@ -1100,7 +1100,7 @@ html {
font-size: 11px;
line-height: 1.4;
color: var(--text-tertiary);
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
white-space: pre-wrap;
word-break: break-all;
scrollbar-width: thin;
@@ -1248,7 +1248,7 @@ html {
.tab-filesystem {
max-height: 240px;
overflow-y: auto;
font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
font-family: 'Geist Mono', 'Monaco', 'Consolas', monospace;
font-size: 12px;
scrollbar-width: thin;
scrollbar-color: rgba(255,255,255,0.08) transparent;
@@ -1661,7 +1661,7 @@ select option {
}
.usage-meter-header .mono {
font-family: 'SF Mono', 'Fira Code', monospace;
font-family: 'Geist Mono', monospace;
font-size: 11px;
color: var(--text-primary);
}