# SST Brand Identity A complete profile of **SST**'s visual system — colors, typography, components, and personality — extracted from https://sst.dev. Built for designers, agents, and AI tools. - Page: https://characterquilt.com/branding/sst - Machine-readable JSON: https://characterquilt.com/branding/sst.json - Per-page llms.txt: https://characterquilt.com/branding/sst/llms.txt ## Quick Facts | Field | Value | |---|---| | Primary | #5196B3 | | Accent | #303055 | | Body Font | Arial | | Heading Font | Arial | ## Color Palette - primary: #5196B3 - secondary: #0000EE - accent: #303055 - background: #FFFFFF - textPrimary: #303055 - link: #303055 ## Typography - primary: Arial — https://fonts.google.com/specimen/Arial - heading: Arial — https://fonts.google.com/specimen/Arial ## Visual Assets - Logo: https://sst.dev/_astro/logo-light.BYAt7w5s.svg - Favicon: https://sst.dev/favicon.ico - Social card (og:image): https://social-cards.sst.dev/v3-lander/Rm9yJTIwd2hhdGV2ZXIlMjB5b3UlMjBidWlsZC4%3D.png ## Brand Personality Tone: modern · Energy: medium · Audience: developers ## SST Brand in the Wild Real-world brand assets — ads, campaigns, marketing materials. - **Blog | SST** - Image: https://social-cards.sst.dev/v3-lander/QmxvZw%3D%3D.png - Source: https://sst.dev/blog/ - **Dynamically generate social share images with serverless** - Image: https://guide.sst.dev/assets/dynamically-generate-social-share-images-with-serverless/social-card-for-sample-blog-post.png - Source: https://guide.sst.dev/archives/dynamically-generate-social-share-images-with-serverless.html - **How to add JWT authorization with Cognito User Pool to a serverless API** - Image: https://guide.sst.dev/assets/examples/api-auth-jwt-cogntio/current-logged-in-user-info.png - Source: https://guide.sst.dev/examples/how-to-add-jwt-authorization-with-cognito-user-pool-to-a-serverless-api.html - **Frontends are hard | SST** - Image: https://social-cards.sst.dev/v3-blog/RnJvbnRlbmRzJTIwYXJlJTIwaGFyZA%3D%3D.png - Source: https://sst.dev/blog/frontends-are-hard/ - **How to use Middy to validate your serverless API requests** - Image: https://guide.sst.dev/assets/examples/middy-validator/request-with-middy-schema-response-validation.png - Source: https://guide.sst.dev/examples/how-to-use-middy-to-validate-your-serverless-api-requests.html ## 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": "Arial", "role": "body" }, { "family": "Rubik", "role": "body" } ], "colors": { "primary": "#5196B3", "secondary": "#0000EE", "accent": "#303055", "background": "#FFFFFF", "textPrimary": "#303055", "link": "#303055" }, "typography": { "fontFamilies": { "primary": "Arial", "heading": "Arial" }, "fontStacks": { "heading": [ "IBM Plex Mono" ], "body": [ "Rubik", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ], "paragraph": [ "Rubik", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" ] }, "fontSizes": { "h1": "48px", "h2": "48px", "body": "20px" } }, "spacing": { "baseUnit": 4, "borderRadius": "0px" }, "components": {}, "images": { "logo": "https://sst.dev/_astro/logo-light.BYAt7w5s.svg", "favicon": "https://sst.dev/favicon.ico", "ogImage": "https://social-cards.sst.dev/v3-lander/Rm9yJTIwd2hhdGV2ZXIlMjB5b3UlMjBidWlsZC4%3D.png", "logoHref": "/" }, "__llm_logo_reasoning": { "selectedIndex": 1, "reasoning": "Selected #1 because it is visible, located in the header, and links to the homepage, which are strong indicators of a primary brand logo.", "confidence": 0.9, "source": "llm" }, "__llm_button_reasoning": { "primary": { "index": -1, "text": "N/A", "reasoning": "None of the buttons have a vibrant or distinct color that stands out as a primary CTA. All buttons share the same background color, making it difficult to distinguish a primary action." }, "secondary": { "index": -1, "text": "N/A", "reasoning": "Since no primary button was identified, a secondary button cannot be selected either." }, "confidence": 0.5 }, "personality": { "tone": "modern", "energy": "medium", "targetAudience": "developers" }, "designSystem": { "framework": "custom", "componentLibrary": "" }, "confidence": { "buttons": 0.5, "colors": 0.9, "overall": 0.7 }, "__llm_metadata": { "logoSelection": { "llmCalled": true, "llmSucceeded": true, "finalSource": "llm", "rawLogoSelection": { "selectedLogoIndex": 1, "selectedLogoReasoning": "Selected #1 because it is visible, located in the header, and links to the homepage, which are strong indicators of a primary brand logo.", "confidence": 0.9 } }, "buttonClassification": { "llmCalled": true, "llmSucceeded": true } } } ```