# Uberduck Brand Identity A complete profile of **Uberduck**'s visual system — colors, typography, components, and personality — extracted from https://www.uberduck.ai. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/uberduck - Machine-readable JSON: https://characterquilt.com/branding/uberduck.json - Per-page llms.txt: https://characterquilt.com/branding/uberduck/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #FCF4E7 | | Accent | #FB923C | | Body Font | Manrope | | Heading Font | Geologica | ## Color Palette - primary: #FCF4E7 - secondary: #FDA633 - accent: #FB923C - background: #FFFFFF - textPrimary: #333333 - link: #0F172A ## Typography - primary: Manrope — https://fonts.google.com/specimen/Manrope - heading: Geologica — https://fonts.google.com/specimen/Geologica ## Visual Assets - Logo: https://www.uberduck.ai/logo.svg - Favicon: https://www.uberduck.ai/favicon.ico - Social card (og:image): https://www.uberduck.ai/logo.png ## UI Components - input: background=#FFFFFF, textColor=#111827, borderColor=#2563EB, borderRadius=4px, shadow=rgb(255, 255, 255) 0px 0px 0px 0px, rgb(37, 99, 235) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px - buttonPrimary: background=#FB923C, textColor=#FAFAF8, borderColor=#FDBA74, borderRadius=8px, shadow=rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px - buttonSecondary: background=#0F172A, textColor=#FFFFFF, borderRadius=16px, shadow=rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px ## Brand Personality Tone: modern · Energy: high · Audience: tech-savvy individuals interested in AI and music ## Uberduck Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **AI Vocals and Text To Speech | Uberduck** - Image: https://uberduck-images.s3.amazonaws.com/commercial/1598e3a2-70af-4bb8-adce-de6cfb24064e/images/quackmaster.webp - Source: https://www.uberduck.ai/languages/english/text-to-speech - **Realistic AI Photography | Uberduck** - Image: https://www.uberduck.ai/_next/image?url=%2F_next%2Fstatic%2Fmedia%2F20.fb564d89.jpg&w=3840&q=75 - Source: https://www.uberduck.ai/image-generation - **Blog | Uberduck** - Image: https://www.uberduck.ai/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Ff5-tts.cce933ac.jpg&w=3840&q=75 - Source: https://www.uberduck.ai/blog - **Blog | Uberduck** - Image: https://www.uberduck.ai/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fflux-uberduck.12815d99.jpg&w=3840&q=75 - Source: https://www.uberduck.ai/blog - **Blog | Uberduck** - Image: https://www.uberduck.ai/_next/static/media/green_2.461cb87e.png - Source: https://www.uberduck.ai/blog - **Blog | Uberduck** - Image: https://www.uberduck.ai/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Freferral-program.80120960.webp&w=3840&q=75 - Source: https://www.uberduck.ai/blog ## 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": "Geologica", "role": "heading" } ], "colors": { "primary": "#FCF4E7", "secondary": "#FDA633", "accent": "#FB923C", "background": "#FFFFFF", "textPrimary": "#333333", "link": "#0F172A" }, "typography": { "fontFamilies": { "primary": "Manrope", "heading": "Geologica" }, "fontStacks": { "heading": [ "Geologica" ], "body": [ "Manrope" ], "paragraph": [ "Manrope" ] }, "fontSizes": { "h1": "60px", "h2": "36px", "body": "18px" } }, "spacing": { "baseUnit": 4, "borderRadius": "0px" }, "components": { "input": { "background": "#FFFFFF", "textColor": "#111827", "borderColor": "#2563EB", "borderRadius": "4px", "borderRadiusCorners": { "topLeft": "4px", "topRight": "4px", "bottomRight": "4px", "bottomLeft": "4px" }, "shadow": "rgb(255, 255, 255) 0px 0px 0px 0px, rgb(37, 99, 235) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px" }, "buttonPrimary": { "background": "#FB923C", "textColor": "#FAFAF8", "borderColor": "#FDBA74", "borderRadius": "8px", "borderRadiusCorners": { "topLeft": "8px", "topRight": "8px", "bottomRight": "8px", "bottomLeft": "8px" }, "shadow": "rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px" }, "buttonSecondary": { "background": "#0F172A", "textColor": "#FFFFFF", "borderRadius": "16px", "borderRadiusCorners": { "topLeft": "16px", "topRight": "16px", "bottomRight": "16px", "bottomLeft": "16px" }, "shadow": "rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px" } }, "images": { "logo": "https://www.uberduck.ai/logo.svg", "favicon": "https://www.uberduck.ai/favicon.ico", "ogImage": "https://www.uberduck.ai/logo.png", "logoHref": "/" }, "__llm_logo_reasoning": { "selectedIndex": 0, "reasoning": "Selected #0 because it is visible, located in the header, links to the homepage, and matches the brand inferred from the URL and page title.", "confidence": 0.9, "source": "llm" }, "__llm_button_reasoning": { "primary": { "index": 0, "text": "Sign up now", "reasoning": "Button #0 has a vibrant orange background (#FB923C), which is a strong indicator of a primary CTA. The text 'Sign up now' is action-oriented, making it the most likely primary button." }, "secondary": { "index": 1, "text": "Get Started", "reasoning": "Button #1 has a dark background (#0F172A) and the text 'Get Started', which is a common secondary action. It is distinct from the primary button's color group." }, "confidence": 0.95 }, "personality": { "tone": "modern", "energy": "high", "targetAudience": "tech-savvy individuals interested in AI and music" }, "designSystem": { "framework": "tailwind", "componentLibrary": "" }, "confidence": { "buttons": 0.95, "colors": 0.9, "overall": 0.925 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": 0, "selectedLogoReasoning": "Selected #0 because it is visible, located in the header, links to the homepage, and matches the brand inferred from the URL and page title.", "confidence": 0.9 } }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```