Commit 6379942

bryfry <bryon@fryer.io>
2025-07-22 11:33:06
Update favicon to timer design
- Replace simple 'B' favicon with timer clock design - Includes winding key at top like timer emoji - White clock face with hour markers and red hands - Uses brand colors (#2c3e50) with red accent (#e74c3c) - Better represents the 'delay/wait' concept of buylater.email
1 parent 42f2ca7
Changed files (1)
ui
static
ui/static/img/favicon.svg
@@ -1,4 +1,26 @@
 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
-    <rect width="32" height="32" fill="#2c3e50"/>
-    <text x="16" y="20" font-family="Arial, sans-serif" font-size="16" font-weight="bold" text-anchor="middle" fill="white">B</text>
+    <!-- Background circle -->
+    <circle cx="16" cy="18" r="12" fill="#2c3e50" stroke="#34495e" stroke-width="1"/>
+    
+    <!-- Timer winding key -->
+    <rect x="13" y="2" width="6" height="3" rx="1" fill="#2c3e50"/>
+    <rect x="14.5" y="4" width="3" height="2" rx="0.5" fill="#2c3e50"/>
+    
+    <!-- Clock face -->
+    <circle cx="16" cy="18" r="10" fill="white" stroke="#2c3e50" stroke-width="1.5"/>
+    
+    <!-- Hour markers -->
+    <line x1="16" y1="9" x2="16" y2="11" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
+    <line x1="25" y1="18" x2="23" y2="18" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
+    <line x1="16" y1="27" x2="16" y2="25" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
+    <line x1="7" y1="18" x2="9" y2="18" stroke="#2c3e50" stroke-width="2" stroke-linecap="round"/>
+    
+    <!-- Clock hands showing approximately 10:10 -->
+    <!-- Hour hand pointing to 10 -->
+    <line x1="16" y1="18" x2="12" y2="14" stroke="#e74c3c" stroke-width="2.5" stroke-linecap="round"/>
+    <!-- Minute hand pointing to 2 -->
+    <line x1="16" y1="18" x2="20" y2="12" stroke="#e74c3c" stroke-width="2" stroke-linecap="round"/>
+    
+    <!-- Center dot -->
+    <circle cx="16" cy="18" r="1.5" fill="#e74c3c"/>
 </svg>
\ No newline at end of file