# Senso Brand Identity A complete profile of **Senso**'s visual system — colors, typography, components, and personality — extracted from http://www.senso.ai. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/senso - Machine-readable JSON: https://characterquilt.com/branding/senso.json - Per-page llms.txt: https://characterquilt.com/branding/senso/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #6A737D | | Accent | #0366D6 | | Body Font | ui-sans-serif | | Heading Font | ui-sans-serif | ## Color Palette - primary: #6A737D - secondary: #B1ECD3 - accent: #0366D6 - background: #DFE2E5 - textPrimary: #000000 - link: #0366D6 ## Typography - primary: ui-sans-serif — https://fonts.google.com/specimen/ui-sans-serif - heading: ui-sans-serif — https://fonts.google.com/specimen/ui-sans-serif ## Visual Assets - Favicon: https://www.senso.ai/favicon.ico ## Brand Personality Tone: professional · Energy: medium · Audience: unknown ## Senso Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Blog | Insights on AI Agents, Knowledge Bases & the Agentic Web | Senso** - Image: https://www.senso.ai/_next/image?url=https%3A%2F%2Fcdn.sanity.io%2Fimages%2Fjcta555l%2Fproduction%2F532938d2b49a581add8db44eca35ff36e4943032-2000x1122.png&w=3840&q=75 - Source: https://www.senso.ai/blog - **Senso | The Context Layer for AI Agents** - Image: https://www.senso.ai/_next/image?url=https%3A%2F%2Fcdn.sanity.io%2Fimages%2Fjcta555l%2Fproduction%2F9df38dce10815c7c8c54e2f712905b1bc42fb680-800x800.jpg&w=3840&q=75 - Source: https://www.senso.ai/ - **Senso | The Context Layer for AI Agents** - Image: https://cdn.sanity.io/images/jcta555l/production/7a6c5de374d2f7a77b5dab1d1e7df3a0336e7893-800x800.jpg - Source: https://www.senso.ai/ - **Senso | The Context Layer for AI Agents** - Image: https://cdn.sanity.io/images/jcta555l/production/56ac750267df544b1dd7f13cd1b4a9a308132c91-539x738.png - Source: https://www.senso.ai/ - **Senso | The Context Layer for AI Agents** - Image: https://cdn.sanity.io/images/jcta555l/production/c034d3b6a70237b31620f159165b48be4ca8c72e-499x499.jpg - Source: https://www.senso.ai/ - **Senso | The Context Layer for AI Agents** - Image: https://cdn.sanity.io/images/jcta555l/production/8d29949174fc7898319d639683c0168255616a29-389x389.jpg - Source: https://www.senso.ai/ ## 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": "system-ui", "count": 4 }, { "family": "sans-serif", "count": 4 }, { "family": "Apple Color Emoji", "count": 4 }, { "family": "Segoe UI Emoji", "count": 4 }, { "family": "ui-sans-serif", "count": 3 }, { "family": "Segoe UI Symbol", "count": 3 }, { "family": "Noto Color Emoji", "count": 3 }, { "family": "Segoe UI", "count": 1 }, { "family": "Roboto", "count": 1 }, { "family": "Helvetica", "count": 1 } ], "colors": { "primary": "#6A737D", "secondary": "#B1ECD3", "accent": "#0366D6", "background": "#DFE2E5", "textPrimary": "#000000", "link": "#0366D6" }, "typography": { "fontFamilies": { "primary": "ui-sans-serif", "heading": "ui-sans-serif" }, "fontStacks": { "body": [ "ui-sans-serif", "system-ui", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ], "heading": [ "ui-sans-serif", "system-ui", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ], "paragraph": [ "ui-sans-serif", "system-ui", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ] }, "fontSizes": { "h1": "16px", "h2": "14px", "body": "16px" } }, "spacing": { "baseUnit": 4, "borderRadius": "3px" }, "components": {}, "images": { "logo": null, "favicon": "https://www.senso.ai/favicon.ico", "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" } } } ```