# Cero Brand Identity A complete profile of **Cero**'s visual system — colors, typography, components, and personality — extracted from https://cero.ai. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/cero - Machine-readable JSON: https://characterquilt.com/branding/cero.json - Per-page llms.txt: https://characterquilt.com/branding/cero/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #FAFAD2 | | Accent | #44A2FF | | Body Font | Helvetica | | Heading Font | Space Grotesk | ## Color Palette - primary: #FAFAD2 - secondary: #0000EE - accent: #44A2FF - background: #A6A6A6 - textPrimary: #000000 - link: #44A2FF ## Typography - primary: Helvetica — https://fonts.google.com/specimen/Helvetica - heading: Space Grotesk — https://fonts.google.com/specimen/Space+Grotesk ## Visual Assets - Favicon: https://cero.ai/favicon.png ## UI Components - buttonPrimary: background=#000000, textColor=#FFFFFF, borderRadius=350px, shadow=none - buttonSecondary: background=#808080, textColor=#FFFFFF, borderRadius=350px, shadow=none ## Brand Personality Tone: modern · Energy: medium · Audience: business professionals ## Cero Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **CERO** - Image: https://cero.ai/assets/feedback-respuestas-BnLDMlbc.jpg - Source: https://cero.ai/ - **CERO** - Image: https://cero.ai/assets/feedback-chat-B35mp0d8.jpg - Source: https://cero.ai/ - **CERO** - Image: https://cero.ai/assets/Diego_Moreira_SS-BmAxPszq.jpeg - Source: https://cero.ai/ - **Corona Cero encourages fans to embrace 'Golden Moments' in first Olympic Games-inspired campaign** - Image: https://img.olympics.com/images/image/private/t_s_pog_staticContent_hero_md/f_auto/primary/rouf8gamgqq0w9zw5zho - Source: https://www.olympics.com/ioc/news/corona-cero-encourages-fans-to-embrace-golden-moments-in-first-olympic-games-inspired-campaign ## 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": "Space Grotesk", "role": "heading" }, { "family": "Helvetica", "role": "body" }, { "family": "Arial", "role": "body" } ], "colors": { "primary": "#FAFAD2", "secondary": "#0000EE", "accent": "#44A2FF", "background": "#A6A6A6", "textPrimary": "#000000", "link": "#44A2FF" }, "typography": { "fontFamilies": { "primary": "Helvetica", "heading": "Space Grotesk" }, "fontStacks": { "heading": [ "Space Grotesk" ], "body": [ "Space Grotesk" ], "paragraph": [ "Space Grotesk" ] }, "fontSizes": { "h1": "4000px", "h2": "2000px", "body": "2500px" } }, "spacing": { "baseUnit": 4, "borderRadius": "250px" }, "components": { "buttonPrimary": { "background": "#000000", "textColor": "#FFFFFF", "borderRadius": "350px", "borderRadiusCorners": { "topLeft": "350px", "topRight": "350px", "bottomRight": "350px", "bottomLeft": "350px" }, "shadow": "none" }, "buttonSecondary": { "background": "#808080", "textColor": "#FFFFFF", "borderRadius": "350px", "borderRadiusCorners": { "topLeft": "350px", "topRight": "350px", "bottomRight": "350px", "bottomLeft": "350px" }, "shadow": "none" } }, "images": { "favicon": "https://cero.ai/favicon.png", "ogImage": null }, "__llm_logo_reasoning": { "selectedIndex": -1, "reasoning": "No suitable logo candidate was found that clearly represents the brand 'CERO' in the header area. The heuristic suggestion did not match the brand name or favicon.", "confidence": 0.3, "rejected": true, "source": "llm" }, "__llm_button_reasoning": { "primary": { "index": 0, "text": "Agenda tu demo", "reasoning": "Button #0 'Agenda tu demo' is likely the primary CTA due to its action-oriented text and prominent dark background color, which stands out against the page's light color scheme." }, "secondary": { "index": 3, "text": "Ver integraciones", "reasoning": "Button #3 'Ver integraciones' is selected as secondary because it has a different neutral background color (#808080) and serves as a supportive action." }, "confidence": 0.9 }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "business professionals" }, "designSystem": { "framework": "custom", "componentLibrary": "" }, "confidence": { "buttons": 0.9, "colors": 0.9, "overall": 0.9 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": -1, "selectedLogoReasoning": "No suitable logo candidate was found that clearly represents the brand 'CERO' in the header area. The heuristic suggestion did not match the brand name or favicon.", "confidence": 0.3 } }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```