# Protobase Brand Identity A complete profile of **Protobase**'s visual system — colors, typography, components, and personality — extracted from https://www.protobase.io. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/protobase - Machine-readable JSON: https://characterquilt.com/branding/protobase.json - Per-page llms.txt: https://characterquilt.com/branding/protobase/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #F49300 | | Accent | #101C36 | | Body Font | sans-serif | | Heading Font | sans-serif | ## Color Palette - primary: #F49300 - secondary: #626574 - accent: #101C36 - background: #646464 - textPrimary: #101C36 - link: #101C36 ## Typography - primary: sans-serif — https://fonts.google.com/specimen/sans-serif - heading: sans-serif — https://fonts.google.com/specimen/sans-serif ## Brand Personality Tone: professional · Energy: medium · Audience: unknown ## Protobase Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Protobase Configuration** - Image: https://support.resortdata.com/Support/Content/Images/ProtobaseConfig2.bmp - Source: https://support.resortdata.com/Support/Content/KB/System/ProtobaseConfiguration.htm - **Protobase Music & Downloads on Beatport** - Image: https://geo-media.beatport.com/image_size/590x404/671cb079-7f91-444a-9437-116fcd80277c.jpg - Source: https://www.beatport.com/artist/protobase/1314257?srsltid=AfmBOoqKBuAE1er7KTApoH7hmeKRWKELxFP3o_xDajW_LjWDT9EXY-zo - **Stream Protobase - Back From Reality (Psytrance DJ Set) by PROTOBASE | Listen online for free on SoundCloud** - Image: https://i1.sndcdn.com/artworks-LrhKWXVcsYA5waAW-QKytfw-t1080x1080.png - Source: https://soundcloud.com/protobase/back-from-reality-dj-set - **Protobase - Acid Lab [Psychedelic Visuals] - YouTube** - Image: https://i.ytimg.com/vi/3QKx7QZg6Kg/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAICtRZ4ct4-z0WmEspCf4mJTCT4w - Source: https://www.youtube.com/watch?v=3QKx7QZg6Kg - **Protobase - Escape From Reality [Video Clip / 8K]** - Image: https://i.ytimg.com/vi/zouR5WidSdY/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLCTbOmlbkCpc-Tx30KCUwq0eezm7A - Source: https://www.youtube.com/watch?v=zouR5WidSdY - **Protobase • Back From Reality (Psytrance DJ Set)** - Image: https://i.ytimg.com/vi/qF6L8sn96XY/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLDONfOitSOba_aXpJp0pFHPaQbOOQ - Source: https://www.youtube.com/watch?v=qF6L8sn96XY ## 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": "sans-serif", "count": 4 }, { "family": "Roboto", "count": 1 } ], "colors": { "primary": "#F49300", "secondary": "#626574", "accent": "#101C36", "background": "#646464", "textPrimary": "#101C36", "link": "#101C36" }, "typography": { "fontFamilies": { "primary": "sans-serif", "heading": "sans-serif" }, "fontStacks": { "body": [ "sans-serif" ], "heading": [ "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": "professional", "energy": "medium", "targetAudience": "unknown" }, "designSystem": { "framework": "unknown", "componentLibrary": "" }, "confidence": { "buttons": 0, "colors": 0, "overall": 0 }, "__llm_metadata": { "logoSelection": { "llmCalled": false, "llmSucceeded": false, "finalSource": "none", "rawLogoSelection": { "selectedLogoIndex": -1, "selectedLogoReasoning": "LLM failed", "confidence": 0 } }, "buttonClassification": { "llmCalled": false, "llmSucceeded": false, "error": "LLM call failed or returned fallback values" } } } ```