# Convore Brand Identity A complete profile of **Convore**'s visual system — colors, typography, components, and personality — extracted from http://convore.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/convore - Machine-readable JSON: https://characterquilt.com/branding/convore.json - Per-page llms.txt: https://characterquilt.com/branding/convore/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #F49300 | | Accent | #101C36 | | Body Font | Roboto | | Heading Font | Roboto | ## Color Palette - primary: #F49300 - secondary: #626574 - accent: #101C36 - background: #101C36 - textPrimary: #101C36 - link: #101C36 ## Typography - primary: Roboto — https://fonts.google.com/specimen/Roboto - heading: Roboto — https://fonts.google.com/specimen/Roboto ## Brand Personality Tone: modern · Energy: medium · Audience: unknown ## Convore Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Convore – AMP** - Image: https://ampforwp.com/demo/wp-content/uploads/2011/02/convore.jpg - Source: https://ampforwp.com/demo/blog/tag/convore/ - **Leah Culver - Wikipedia** - Image: https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/LeahCulver3.jpg/250px-LeahCulver3.jpg - Source: https://en.wikipedia.org/wiki/Leah_Culver - **net@night 191: Convore** - Image: https://i.ytimg.com/vi/ZDd6NqbWPfI/hqdefault.jpg - Source: https://www.youtube.com/watch?v=ZDd6NqbWPfI - **Ze Frank - The future of .ly when Libya goes offline, Facebook redefines relationship status, Nordstorm takes a look at HauteLook, and Ze Frank talks about star.me and more.** - Image: https://is1-ssl.mzstatic.com/image/thumb/Podcasts116/v4/9d/24/49/9d244921-f169-3565-abf5-ed0fe0c9e006/mza_5857126400076701804.jpg/1200x1200bf-60.jpg - Source: https://podcasts.apple.com/us/podcast/net-night-video/id364936115 - **Group Messaging Service Convore to Shut Down on April 1st** - Image: https://img-cdn.tnwcdn.com/image?fit=1280%2C720&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2012%2F02%2F2304144295_945a57ffba_z.jpg&signature=6567d3ddbc09146ec4bf55f4cba0691a - Source: https://thenextweb.com/news/group-messaging-service-convore-to-shut-down-on-april-1st - **Julie G | Flickr** - Image: https://live.staticflickr.com/5218/5474520507_ff87320fcd_w.jpg - Source: https://www.flickr.com/photos/50161475@N00/ ## Working with these fonts Not found on Google Fonts? Agent Instructions that you can follow if you have permission to use the fonts: CharacterQuilt.com suggests this flow that can help: 1. Open the company's homepage in a browser with DevTools open. 2. In the Network tab, filter by "Font" (or by extension: woff2, woff, ttf, otf). 3. Hard-reload the page and click around (pricing, blog, careers) — some weights only load on specific routes. 4. For each captured font URL: right-click → Save As to download the file locally. 5. View the page's CSS (DevTools → Sources, or curl the stylesheet URLs) and copy out the matching @font-face declarations. Rewrite each `src: url(...)` to point to your local file path. Programmatic alternative: load the URL with Playwright or Puppeteer, listen for `response` events whose `Content-Type` starts with `font/`, and write the body to disk. The CSS extraction step is the same. Only do this if you have permission to use the brand assets — most proprietary fonts are licensed and may not be redistributable. ## Machine-Readable Profile ```json { "colorScheme": "dark", "fonts": [ { "family": "Roboto", "role": "body" } ], "colors": { "primary": "#F49300", "secondary": "#626574", "accent": "#101C36", "background": "#101C36", "textPrimary": "#101C36", "link": "#101C36" }, "typography": { "fontFamilies": { "primary": "Roboto", "heading": "Roboto" }, "fontStacks": { "heading": [ "sans-serif" ], "body": [ "sans-serif" ], "paragraph": [ "sans-serif" ] }, "fontSizes": { "h1": "16px", "h2": "16px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "4px" }, "components": {}, "images": { "logo": null, "favicon": null, "ogImage": null }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "unknown" }, "designSystem": { "framework": "unknown", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0.9, "overall": 0.45 }, "__llm_metadata": { "logoSelection": { "llmCalled": false, "llmSucceeded": false, "finalSource": "none" }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false } } } ```