[LOGO] worldcoin - #1362
Conversation
a13c435 to
81217bb
Compare
2212673 to
630f323
Compare
10ab4d1 to
5fd199d
Compare
12b73db to
12925b9
Compare
12925b9 to
95fd6d8
Compare
2121336 to
7b8131d
Compare
e0dc965 to
484797d
Compare
a06b757 to
e1a87d9
Compare
8059263 to
5773490
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit fe91990. Configure here.
| <g stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="45.481" clip-path="url(#logo_worldcoin_svg__b)" display="block" transform="translate(-668.3 -668.509)scale(1.2367)"> | ||
| <path d="m1050.504 750.335-189.082.3c-62.608 0-113.366 50.757-113.366 113.365s50.758 113.366 113.366 113.366h182.082M646.74 864h436.767" display="block"/> | ||
| <path d="M863.623 644.117c121.438 0 219.883 98.445 219.883 219.883s-98.445 219.883-219.883 219.883S643.74 985.438 643.74 864s98.445-219.883 219.883-219.883Z" display="block"/> | ||
| </g> |
There was a problem hiding this comment.
Outline logo fills solid black
High Severity
The new Worldcoin mark is stroke-based (round caps, thick stroke-width), but neither the root svg nor the stroked g/path elements set fill="none". SVG defaults fill to black, so the closed circle path paints as a solid disk and hides the orb outline. The previous asset set fill="none" on the root; that was dropped in this replacement.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit fe91990. Configure here.
| </clipPath> | ||
| </defs> | ||
| <g clip-path="url(#logo-dark_worldcoin_svg__a)" transform="translate(-99.69 -99.947)"> | ||
| <g stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="45.481" clip-path="url(#logo-dark_worldcoin_svg__b)" display="block" transform="translate(-668.3 -668.509)scale(1.2367)"> |
There was a problem hiding this comment.
Dark logo invisible on dark
High Severity
logo-dark/worldcoin.svg uses stroke="#000" with no light fill plate. list.md renders this asset on background-color: #111, and dark-theme consumers resolve the same path, so the mark is effectively invisible. The previous dark asset used a white circle behind the glyph, which preserved contrast.
Reviewed by Cursor Bugbot for commit fe91990. Configure here.


Note
Overview
Replaces the Worldcoin icon in both
logo/worldcoin.svgandlogo-dark/worldcoin.svgwith an updated mark.The previous 20×20 filled globe-on-white-circle asset is swapped for a stroke-based design (circle plus horizontal bar) on a 600×600 viewBox, using clip paths and transforms. The two theme paths share the same geometry; only SVG
idprefixes differ (logo_worldcoin_svg__*vslogo-dark_worldcoin_svg__*).Reviewed by Cursor Bugbot for commit 7fdb22a. Bugbot is set up for automated code reviews on this repo. Configure here.