Skip to content

Commit f1d510d

Browse files
committed
Fix circuit SVG arrows: orange -> gold (#FFD700)
1 parent 9b9a413 commit f1d510d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,21 +170,21 @@ <h2>The Circuit</h2>
170170
<svg class="circuit-svg" viewBox="0 0 380 380">
171171
<defs>
172172
<marker id="arrowhead" markerWidth="10" markerHeight="7" refX="10" refY="3.5" orient="auto">
173-
<polygon points="0 0, 10 3.5, 0 7" fill="#FF8C42" opacity="0.7" />
173+
<polygon points="0 0, 10 3.5, 0 7" fill="#FFD700" opacity="0.7" />
174174
</marker>
175175
</defs>
176176
<!-- Research → Evidence -->
177-
<path d="M 229,83 Q 262,55 268,103" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
177+
<path d="M 229,83 Q 262,55 268,103" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
178178
<!-- Evidence → Consulting -->
179-
<path d="M 303,170 Q 338,190 303,210" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
179+
<path d="M 303,170 Q 338,190 303,210" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
180180
<!-- Consulting → Revenue -->
181-
<path d="M 268,278 Q 262,325 229,298" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
181+
<path d="M 268,278 Q 262,325 229,298" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
182182
<!-- Revenue → Experiments -->
183-
<path d="M 151,298 Q 118,325 112,278" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
183+
<path d="M 151,298 Q 118,325 112,278" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
184184
<!-- Experiments → Products -->
185-
<path d="M 77,210 Q 42,190 77,170" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
185+
<path d="M 77,210 Q 42,190 77,170" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
186186
<!-- Products → Research -->
187-
<path d="M 112,103 Q 118,55 151,83" stroke="#FF8C42" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
187+
<path d="M 112,103 Q 118,55 151,83" stroke="#FFD700" stroke-width="1.5" fill="none" opacity="0.4" marker-end="url(#arrowhead)" />
188188
</svg>
189189
<div class="circuit-node active">Research</div>
190190
<div class="circuit-node">Evidence</div>

0 commit comments

Comments
 (0)