# buildspace Brand Identity A complete profile of **buildspace**'s visual system — colors, typography, components, and personality — extracted from https://buildspace.so/. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/buildspace - Machine-readable JSON: https://characterquilt.com/branding/buildspace.json - Per-page llms.txt: https://characterquilt.com/branding/buildspace/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #0000EE | | Accent | #0000EE | | Body Font | sans-serif | | Heading Font | Manrope | ## Color Palette - primary: #0000EE - accent: #0000EE - background: #000000 - textPrimary: #000000 - link: #0000EE ## Typography - primary: sans-serif — https://fonts.google.com/specimen/sans-serif - heading: Manrope — https://fonts.google.com/specimen/Manrope ## Visual Assets - Favicon: https://framerusercontent.com/images/o2xJbojhYMlMAxIHqToswHAxjcM.svg - Social card (og:image): https://framerusercontent.com/images/2PsXKwwa1tmYftB6ZdSjE9jqU.png ## Brand Personality Tone: professional · Energy: medium · Audience: unknown ## buildspace Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Build a GPT-3 app: How I used GPT-3 to write DMs** - Image: https://framerusercontent.com/images/cIEHeLHN52QTDjEuFHtJFGNYE.jpg - Source: https://buildspace.so/notes/build-gpt3-app-for-dms - **advisor-groupchat** - Image: https://framerusercontent.com/images/yEHbul2c7Wq3YK4IZsOmfTSzihI.png - Source: https://buildspace.so/notes/advisor-groupchat - **Ultimate AI Stack 2023** - Image: https://framerusercontent.com/images/yvoK2K7GDLTCNDzJO793xoS11XI.jpg - Source: https://buildspace.so/notes/ai-stack-2023 - **Ultimate AI Stack 2023** - Image: https://framerusercontent.com/images/70Z5Qo1retViBt2z5lI8VeFXIY.jpg - Source: https://buildspace.so/notes/ai-stack-2023 - **Build a game with ChatGPT and Replit** - Image: https://framerusercontent.com/images/so9sp7NgZjmJ7RzKKrCzmQ8fr4.png - Source: https://buildspace.so/notes/chatgpt-replit-game - **Ultimate AI Stack 2023** - Image: https://framerusercontent.com/images/gmpuL8f467GZRk54YoPZ1muY.jpg - Source: https://buildspace.so/notes/ai-stack-2023 ## 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": 9 }, { "family": "Manrope", "count": 6 }, { "family": "Manrope Placeholder", "count": 4 } ], "colors": { "primary": "#0000EE", "accent": "#0000EE", "background": "#000000", "textPrimary": "#000000", "link": "#0000EE" }, "typography": { "fontFamilies": { "primary": "sans-serif", "heading": "Manrope" }, "fontStacks": { "body": [ "sans-serif" ], "heading": [ "Manrope", "Manrope Placeholder", "sans-serif" ], "paragraph": [ "Manrope", "sans-serif" ] }, "fontSizes": { "h1": "64px", "h2": "64px", "body": "20px" } }, "spacing": { "baseUnit": 4, "borderRadius": "0px" }, "components": {}, "images": { "logo": null, "favicon": "https://framerusercontent.com/images/o2xJbojhYMlMAxIHqToswHAxjcM.svg", "ogImage": "https://framerusercontent.com/images/2PsXKwwa1tmYftB6ZdSjE9jqU.png" }, "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" } } } ```