diff --git a/app/components/StepArrow.tsx b/app/components/StepArrow.tsx index 67c74b7..9bb61e3 100644 --- a/app/components/StepArrow.tsx +++ b/app/components/StepArrow.tsx @@ -7,14 +7,16 @@ // 2. Its color lives in a `var(--stroke-0, #C9C9C9)` CSS custom property // that's scoped to the SVG file's own document when loaded via /next/image — un-recolorable from the host page's CSS, so it could -// never actually become the brand orange used everywhere else (buttons, -// checkmarks, icons). Inline SVG sidesteps that entirely. +// never actually become a solid dark color like the rest of this file's +// icons. Inline SVG sidesteps that entirely. Stroke color tried brand +// orange first, then switched to near-black (#222221, same as +// icon-check.svg's original fill) per feedback the same day. export function StepArrow({ className }: { className?: string }) { return (