# Sudden Coffee Brand Identity A complete profile of **Sudden Coffee**'s visual system — colors, typography, components, and personality — extracted from https://www.suddencoffee.com/. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/sudden-coffee - Machine-readable JSON: https://characterquilt.com/branding/sudden-coffee.json - Per-page llms.txt: https://characterquilt.com/branding/sudden-coffee/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #EA902A | | Accent | #3D4452 | | Body Font | Titillium Web | | Heading Font | Titillium Web | ## Color Palette - primary: #EA902A - secondary: #5865F2 - accent: #3D4452 - background: #F7F9F8 - textPrimary: #202124 - link: #3D4452 ## Typography - primary: Titillium Web — https://fonts.google.com/specimen/Titillium+Web - heading: Titillium Web — https://fonts.google.com/specimen/Titillium+Web ## UI Components - input: background=#F0F2F7, textColor=#202124, borderColor=#D7D9D8, borderRadius=0px, shadow=none ## Brand Personality Tone: playful · Energy: medium · Audience: coffee enthusiasts ## Sudden Coffee Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Beans - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2024/12/Coffee-Knowledge-Quiz.jpg - Source: https://suddencoffee.com/beans/ - **Coffee and Personal Branding: Professional Growth - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2025/11/Personal-Branding.jpg - Source: https://suddencoffee.com/personal-branding/ - **Guides - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2024/12/coffee-banana-smoothie.jpg - Source: https://suddencoffee.com/guides/ - **Coffee and Hairstyling Tutorials: Express Yourself - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2025/06/Hairstyling-Tutorials.jpg - Source: https://suddencoffee.com/hairstyling-tutorials/ - **Guides - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2024/12/pistachio-latte.jpg - Source: https://suddencoffee.com/guides/ - **The Art of Coffee Brewing Demonstrations - Sudden Coffee** - Image: https://suddencoffee.com/wp-content/uploads/2024/12/Coffee-Brewing.jpg.webp - Source: https://suddencoffee.com/coffee-brewing/ ## 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": "Titillium Web", "role": "body" } ], "colors": { "primary": "#EA902A", "secondary": "#5865F2", "accent": "#3D4452", "background": "#F7F9F8", "textPrimary": "#202124", "link": "#3D4452" }, "typography": { "fontFamilies": { "primary": "Titillium Web", "heading": "Titillium Web" }, "fontStacks": { "heading": [ "Titillium Web", "serif" ], "body": [ "Titillium Web", "serif" ], "paragraph": [ "Titillium Web", "serif" ] }, "fontSizes": { "h1": "33.76px", "h2": "21.04px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "4px" }, "components": { "input": { "background": "#F0F2F7", "textColor": "#202124", "borderColor": "#D7D9D8", "borderRadius": "0px", "borderRadiusCorners": { "topLeft": "0px", "topRight": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "shadow": "none" } }, "images": { "favicon": null, "ogImage": null }, "__llm_logo_reasoning": { "selectedIndex": -1, "reasoning": "No valid brand logo was found in the header area. All candidates are located in the body and do not match typical brand logo placement or characteristics.", "confidence": 0.2, "rejected": true, "source": "llm" }, "personality": { "tone": "playful", "energy": "medium", "targetAudience": "coffee enthusiasts" }, "designSystem": { "framework": "custom", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0.9, "overall": 0.45 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": -1, "selectedLogoReasoning": "No valid brand logo was found in the header area. All candidates are located in the body and do not match typical brand logo placement or characteristics.", "confidence": 0.2 } }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false } } } ```