# Vizy Brand Identity A complete profile of **Vizy**'s visual system — colors, typography, components, and personality — extracted from http://vizy.io. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/vizy - Machine-readable JSON: https://characterquilt.com/branding/vizy.json - Per-page llms.txt: https://characterquilt.com/branding/vizy/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #F49300 | | Accent | #101C36 | | Body Font | Roboto | | Heading Font | Roboto | ## Color Palette - primary: #F49300 - secondary: #626574 - accent: #101C36 - background: #101C36 - textPrimary: #101C36 - link: #101C36 ## Typography - primary: Roboto — https://fonts.google.com/specimen/Roboto - heading: Roboto — https://fonts.google.com/specimen/Roboto ## Brand Personality Tone: modern · Energy: medium · Audience: unknown ## Vizy Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Vizy by Charmed Labs — Kickstarter** - Image: https://i.kickstarter.com/assets/030/993/279/ffbbf0e9d648dee4d116f000d6264a0b_original.jpg?anim=false&fit=cover&gravity=auto&height=873&origin=ugc&q=92&v=1602628122&width=1552&sig=LADUh82gG4hitAaLWEs4%2BQXsAwP578UgrgJ0McTodIc%3D - Source: https://www.kickstarter.com/projects/charmedlabs/vizy - **Vizy** - Image: https://pluginscreenshots.craft-cdn.com/vizy/_550xAUTO_crop_center-center_none/6-vizy-features.png?1695120594 - Source: https://plugins.craftcms.com/vizy - **First Look at Vizy Editor Plugin | CraftQuest** - Image: https://d3755ihsz2n34g.cloudfront.net/_800x418_fit_center-center_82_none/first-look-at-vizy.png?mtime=1622656066 - Source: https://craftquest.io/livestreams/first-look-at-vizy-editor-plugin - **Vizy** - Image: https://pluginscreenshots.craft-cdn.com/vizy/_550xAUTO_crop_center-center_none/3-vizy-settings.png?1695120590 - Source: https://plugins.craftcms.com/vizy - **wiki:vizy_getting_started [Documentation]** - Image: https://docs.vizycam.com/lib/exe/fetch.php?w=500&tok=cd25e3&media=wiki:image_243.jpg - Source: https://docs.vizycam.com/doku.php?id=wiki:vizy_getting_started ## 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": "dark", "fonts": [ { "family": "Roboto", "role": "body" } ], "colors": { "primary": "#F49300", "secondary": "#626574", "accent": "#101C36", "background": "#101C36", "textPrimary": "#101C36", "link": "#101C36" }, "typography": { "fontFamilies": { "primary": "Roboto", "heading": "Roboto" }, "fontStacks": { "heading": [ "sans-serif" ], "body": [ "sans-serif" ], "paragraph": [ "sans-serif" ] }, "fontSizes": { "h1": "16px", "h2": "16px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "4px" }, "components": {}, "images": { "logo": null, "favicon": null, "ogImage": null }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "unknown" }, "designSystem": { "framework": "unknown", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0.9, "overall": 0.45 }, "__llm_metadata": { "logoSelection": { "llmCalled": false, "llmSucceeded": false, "finalSource": "none" }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false } } } ```