# Casco Brand Identity A complete profile of **Casco**'s visual system — colors, typography, components, and personality — extracted from https://casco.com. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/casco - Machine-readable JSON: https://characterquilt.com/branding/casco.json - Per-page llms.txt: https://characterquilt.com/branding/casco/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #00292B | | Accent | #002626 | | Body Font | Satoshi | | Heading Font | Satoshi | ## Color Palette - primary: #00292B - secondary: #0DC499 - accent: #002626 - background: #FFFDF6 - textPrimary: #002626 - link: #002626 ## Typography - primary: Satoshi — https://fonts.google.com/specimen/Satoshi - heading: Satoshi — https://fonts.google.com/specimen/Satoshi ## Visual Assets - Logo: https://casco.com/logo-wide.svg - Favicon: https://casco.com/favicon.ico - Social card (og:image): https://casco.com/twitter-image.png?607547a4c3740ca2 ## UI Components - buttonPrimary: background=#002626, textColor=#FFFDF6, borderRadius=33554400px, shadow=none - buttonSecondary: background=#FFFFFF, textColor=#1E1E1E, borderRadius=0px, shadow=none ## Brand Personality Tone: professional · Energy: medium · Audience: technology companies and developers ## Casco Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Autonomous Security Testing for Modern Applications | Casco** - Image: https://casco.com/landing.png - Source: https://casco.com/ - **What to Share When Clients Ask for a Pentest Report? | Casco** - Image: https://casco.com/_next/static/media/remediation-summary.5660e71d.png - Source: https://casco.com/blog/what-to-share-when-clients-ask-for-pentest-report - **Security Blog - Insights on Autonomous Security Testing with Agentic AI | Casco** - Image: https://casco.com/_next/image?url=%2Fblog%2Fbuilding-self-securing-software%2Fimage2.png&w=1920&q=75 - Source: https://casco.com/blog - **Why "Clean" Pentest Reports are a Red Flag | Casco** - Image: https://casco.com/blog/the-myth-of-the-clean-pentest-report/1.jpeg - Source: https://casco.com/blog/the-myth-of-the-clean-pentest-report - **Why "Clean" Pentest Reports are a Red Flag | Casco** - Image: https://casco.com/_next/static/media/9.d0cec99d.jpeg - Source: https://casco.com/blog/the-myth-of-the-clean-pentest-report - **Security Blog - Insights on Autonomous Security Testing with Agentic AI | Casco** - Image: https://casco.com/_next/image?url=%2Fblog%2Fwhat-to-pack-for-rsac-2026%2Fog-image.png&w=1920&q=75 - Source: https://casco.com/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": "Satoshi", "role": "body" } ], "colors": { "primary": "#00292B", "secondary": "#0DC499", "accent": "#002626", "background": "#FFFDF6", "textPrimary": "#002626", "link": "#002626" }, "typography": { "fontFamilies": { "primary": "Satoshi", "heading": "Satoshi" }, "fontStacks": { "heading": [ "sentient", "sentient Fallback", "serif" ], "body": [ "Satoshi", "sans-serif" ], "paragraph": [ "Satoshi", "sans-serif" ] }, "fontSizes": { "h1": "68px", "h2": "56px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "5px" }, "components": { "buttonPrimary": { "background": "#002626", "textColor": "#FFFDF6", "borderRadius": "33554400px", "borderRadiusCorners": { "topLeft": "33554400px", "topRight": "33554400px", "bottomRight": "33554400px", "bottomLeft": "33554400px" }, "shadow": "none" }, "buttonSecondary": { "background": "#FFFFFF", "textColor": "#1E1E1E", "borderRadius": "0px", "borderRadiusCorners": { "topLeft": "0px", "topRight": "0px", "bottomRight": "0px", "bottomLeft": "0px" }, "shadow": "none" } }, "images": { "logo": "https://casco.com/logo-wide.svg", "favicon": "https://casco.com/favicon.ico", "ogImage": "https://casco.com/twitter-image.png?607547a4c3740ca2", "logoHref": "/", "logoAlt": "Casco Logo" }, "__llm_logo_reasoning": { "selectedIndex": 0, "reasoning": "Selected #0 because it is visible, medium-sized, and matches the brand name 'Casco' with a source URL indicating it's the main logo.", "confidence": 0.95, "source": "llm" }, "__llm_button_reasoning": { "primary": { "index": 1, "text": "Book a demo", "reasoning": "Button #1 has a vibrant and brand-aligned dark background color (#002626) and action-oriented text ('Book a demo'), making it a strong candidate for the primary CTA." }, "secondary": { "index": 3, "text": "Reproduction", "reasoning": "Button #3 has a different background color (#FFFFFF) and serves as a secondary action with less emphasis, suitable for a secondary CTA." }, "confidence": 0.9 }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "technology companies and developers" }, "designSystem": { "framework": "tailwind", "componentLibrary": "" }, "confidence": { "buttons": 0.9, "colors": 0.9, "overall": 0.9 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": 0, "selectedLogoReasoning": "Selected #0 because it is visible, medium-sized, and matches the brand name 'Casco' with a source URL indicating it's the main logo.", "confidence": 0.95 } }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```