# Nephrogen Brand Identity A complete profile of **Nephrogen**'s visual system — colors, typography, components, and personality — extracted from http://www.nephrogenbiotech.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/nephrogen - Machine-readable JSON: https://characterquilt.com/branding/nephrogen.json - Per-page llms.txt: https://characterquilt.com/branding/nephrogen/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #CF0063 | | Accent | #40089C | | Body Font | Manrope | | Heading Font | Droid Sans | ## Color Palette - primary: #CF0063 - secondary: #363A46 - accent: #40089C - background: #F5F5F5 - textPrimary: #000000 - link: #40089C ## Typography - primary: Manrope — https://fonts.google.com/specimen/Manrope - heading: Droid Sans — https://fonts.google.com/specimen/Droid+Sans ## Visual Assets - Logo: https://cdn.prod.website-files.com/5ecebc340464b231587afbd4/5ecefa146c2c8a1abe4babe9_nephrogenlogo.png - Favicon: https://cdn.prod.website-files.com/5ecebc340464b231587afbd4/5f1e696a29680834f78a911a_favicon.ico ## Brand Personality Tone: professional · Energy: medium · Audience: healthcare professionals ## Nephrogen Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/65b93f01904fa4cffecec816_IMG-0107.jpg - Source: https://www.nephrogenbiotech.com/ - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/67ad0cf9d8da69b4b200ae48_Chang%20Hong.jpg - Source: https://www.nephrogenbiotech.com/ - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/6827ed91b531f7afa0f6c7f7_Andrea%20An%20copy.jpeg - Source: https://www.nephrogenbiotech.com/ - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/65dfd079263944170d96d55e_1.png - Source: https://www.nephrogenbiotech.com/ - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/641e0028657e66cfeb6ec853_photocache.70687.jpeg - Source: https://www.nephrogenbiotech.com/ - **Nephrogen** - Image: https://cdn.prod.website-files.com/5ee3a102202f052ed7e8949d/641e365f8bbc471c6bb452f9_mark-kay_profilephoto.jpeg - Source: https://www.nephrogenbiotech.com/ ## 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": "light", "fonts": [ { "family": "Manrope", "role": "body" }, { "family": "Droid Sans", "role": "heading" } ], "colors": { "primary": "#CF0063", "secondary": "#363A46", "accent": "#40089C", "background": "#F5F5F5", "textPrimary": "#000000", "link": "#40089C" }, "typography": { "fontFamilies": { "primary": "Manrope", "heading": "Droid Sans" }, "fontStacks": { "heading": [ "Manrope", "sans-serif" ], "body": [ "Droid Sans", "sans-serif" ], "paragraph": [ "Manrope", "sans-serif" ] }, "fontSizes": { "h1": "8000px", "h2": "45px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "20px" }, "components": {}, "images": { "logo": "https://cdn.prod.website-files.com/5ecebc340464b231587afbd4/5ecefa146c2c8a1abe4babe9_nephrogenlogo.png", "favicon": "https://cdn.prod.website-files.com/5ecebc340464b231587afbd4/5f1e696a29680834f78a911a_favicon.ico", "ogImage": null, "logoHref": "#" }, "__llm_logo_reasoning": { "selectedIndex": 0, "reasoning": "Selected #0 because it is visible, located in the header, and matches the brand name 'Nephrogen' from the URL and page title.", "confidence": 0.9, "source": "llm" }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "healthcare professionals" }, "designSystem": { "framework": "custom", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0.95, "overall": 0.475 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": 0, "selectedLogoReasoning": "Selected #0 because it is visible, located in the header, and matches the brand name 'Nephrogen' from the URL and page title.", "confidence": 0.9 } }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false } } } ```