# Wyvern Brand Identity A complete profile of **Wyvern**'s visual system — colors, typography, components, and personality — extracted from http://www.wyvern.space. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/wyvern - Machine-readable JSON: https://characterquilt.com/branding/wyvern.json - Per-page llms.txt: https://characterquilt.com/branding/wyvern/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #3B26F9 | | Accent | #3B26F9 | | Body Font | Inter | | Heading Font | Termina | ## Color Palette - primary: #3B26F9 - secondary: #473E79 - accent: #3B26F9 - background: #FFFFFF - textPrimary: #322C56 - link: #322C56 ## Typography - primary: Inter — https://fonts.google.com/specimen/Inter - heading: Termina — https://fonts.google.com/specimen/Termina ## Visual Assets - Logo: https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/69779091c8ca60756b291aa2_Wyvern_Logo_Wordmark_White.png - Favicon: https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/6984f7d3c3d4aac22f07c74d_Wyvern_Logo_Favicon.png - Social card (og:image): https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/6984f8a82bc6e1275d872d26_Wyvern_OpenGraph.png ## UI Components - input: background=#FFFFFF, textColor=#322C56, borderColor=#666666, borderRadius=6px, shadow=none - buttonPrimary: background=#3B26F9, textColor=#FFFFFF, borderColor=#3B26F9, borderRadius=100px, shadow=none - buttonSecondary: background=transparent, textColor=#FFFFFF, borderColor=#666666, borderRadius=16px, shadow=none ## Brand Personality Tone: professional · Energy: medium · Audience: businesses and researchers in earth observation and imaging sectors ## Wyvern Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **1955 Ad Vauxhall Wyvern British Automobile 4-Cylinder - ORIGINAL ADVER – Period Paper Historic Art LLC** - Image: https://www.periodpaper.com/cdn/shop/products/LN1_273_361b9370-8454-4b93-a718-fa7d7553ae0c.jpg?v=1571709840 - Source: https://www.periodpaper.com/products/1955-ad-vauxhall-wyvern-british-automobile-4-cylinder-original-advertising-049180-ln1-273 - **The Winter 2021-22 Wyvern Report is Here! - Francis Parker School of Louisville** - Image: https://www.francisparkerlouisville.org/wp-content/uploads/2024/08/Wyvern-Report-Logo.jpg - Source: https://www.francisparkerlouisville.org/downtowngoshennews-from-francis-parker-school-of-louisville/the-winter-2021-22-wyvern-report-is-here/ - **View topic - Wyvern Landing (Sketch pages) - Chicken Smoothie** - Image: https://www.chickensmoothie.com/oekaki/image/image.php?id=3646674&size=large&format=auto&rev=1593136591 - Source: https://www.chickensmoothie.com/Forum/viewtopic.php?t=4369939 - **1949 Wyvern 707 Pen Ad - The new Wyvern 707 | eBay** - Image: https://i.ebayimg.com/images/g/wBYAAOSwVSFfJsDI/s-l400.jpg - Source: https://www.ebay.com/itm/224103123003 - **The Wyvern Report - Podcast - Apple Podcasts** - Image: https://is1-ssl.mzstatic.com/image/thumb/Podcasts211/v4/6b/ce/7b/6bce7b09-2412-566b-e485-6c709b179fab/mza_15143378253817336813.png/1200x1200bf.webp - Source: https://podcasts.apple.com/us/podcast/the-wyvern-report/id1758946006 - **Wyvern Projects :: Photos, videos, logos, illustrations and branding :: Behance** - Image: https://mir-s3-cdn-cf.behance.net/projects/404/128440233278885.Y3JvcCwzMjY1LDI1NTMsMCww.png - Source: https://www.behance.net/search/projects/wyvern ## 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": "Inter", "role": "body" }, { "family": "Termina", "role": "heading" } ], "colors": { "primary": "#3B26F9", "secondary": "#473E79", "accent": "#3B26F9", "background": "#FFFFFF", "textPrimary": "#322C56", "link": "#322C56" }, "typography": { "fontFamilies": { "primary": "Inter", "heading": "Termina" }, "fontStacks": { "heading": [ "Termina", "sans-serif" ], "body": [ "Inter", "sans-serif" ], "paragraph": [ "Inter", "sans-serif" ] }, "fontSizes": { "h1": "72px", "h2": "40px", "body": "18px" } }, "spacing": { "baseUnit": 4, "borderRadius": "12px" }, "components": { "input": { "background": "#FFFFFF", "textColor": "#322C56", "borderColor": "#666666", "borderRadius": "6px", "borderRadiusCorners": { "topLeft": "6px", "topRight": "6px", "bottomRight": "6px", "bottomLeft": "6px" }, "shadow": "none" }, "buttonPrimary": { "background": "#3B26F9", "textColor": "#FFFFFF", "borderColor": "#3B26F9", "borderRadius": "100px", "borderRadiusCorners": { "topLeft": "100px", "topRight": "100px", "bottomRight": "100px", "bottomLeft": "100px" }, "shadow": "none" }, "buttonSecondary": { "background": "transparent", "textColor": "#FFFFFF", "borderColor": "#666666", "borderRadius": "16px", "borderRadiusCorners": { "topLeft": "16px", "topRight": "16px", "bottomRight": "16px", "bottomLeft": "16px" }, "shadow": "none" } }, "images": { "logo": "https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/69779091c8ca60756b291aa2_Wyvern_Logo_Wordmark_White.png", "favicon": "https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/6984f7d3c3d4aac22f07c74d_Wyvern_Logo_Favicon.png", "ogImage": "https://cdn.prod.website-files.com/69403d531a97ab3d1e6f464a/6984f8a82bc6e1275d872d26_Wyvern_OpenGraph.png", "logoHref": "/" }, "__llm_logo_reasoning": { "selectedIndex": 12, "reasoning": "Selected #0 because it matches the favicon, is visible, and links to the homepage, indicating it is the main brand logo.", "confidence": 0.85, "source": "llm" }, "__llm_button_reasoning": { "primary": { "index": 0, "text": "Subscribe", "reasoning": "Button #0 with text 'Subscribe' is the primary CTA due to its vibrant blue color (#3B26F9), which is the brand's primary color, and its action-oriented text." }, "secondary": { "index": 1, "text": "Product guideGet detailed specs for our range of hyperspectral data products.", "reasoning": "Button #1 is selected as secondary because it has a transparent background, making it less prominent, and it provides additional information rather than a direct action." }, "confidence": 0.9 }, "personality": { "tone": "professional", "energy": "medium", "targetAudience": "businesses and researchers in earth observation and imaging sectors" }, "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": 0, "selectedLogoReasoning": "Selected #0 because it matches the favicon, is visible, and links to the homepage, indicating it is the main brand logo.", "confidence": 0.85 } }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```