A social knowledge tool for researchers built on ATProto

style: update bookmarklet button color to orange

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+1 -1
+1 -1
src/webapp/app/bookmarklet/page.tsx
··· 38 38 // Create the bookmarklet link using dangerouslySetInnerHTML to bypass React's security check 39 39 const createBookmarkletLink = () => { 40 40 return { 41 - __html: `<a href="${bookmarkletCode}" style="text-decoration: none; padding: 8px 16px; background-color: var(--mantine-color-blue-6); color: white; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></svg>Open in Semble</a>` 41 + __html: `<a href="${bookmarkletCode}" style="text-decoration: none; padding: 8px 16px; background-color: var(--mantine-color-orange-6); color: white; border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></svg>Open in Semble</a>` 42 42 }; 43 43 }; 44 44