# Delineate Brand Identity

A complete profile of **Delineate**'s visual system — colors, typography, components, and personality.

## Quick Facts

| Field      | Value   |
|------------|---------|
| Primary    | #E3165B |
| Accent     | #4D841D |
| Body Font  | Inter   |
| Heading Font| Inter  |

## Color Palette

- primary: #E3165B
- secondary: #0378D5
- accent: #4D841D
- background: #FFFFFF
- textPrimary: #212121
- link: #4D841D

## Typography

- primary: Inter — [Google Fonts](https://fonts.google.com/specimen/Inter)
- heading: Inter — [Google Fonts](https://fonts.google.com/specimen/Inter)

## Visual Assets

- Favicon:

## Brand Personality

Tone: professional · Energy: medium · Audience: unknown

## Delineate Brand in the Wild

Real-world brand assets — ads, campaigns, marketing materials.

- **Delineate**  
  - Image:   
  - Source: [Delineate](https://delineate.pro/)  
- **Delineate**  
  - Image:   
  - Source: [Delineate](https://delineate.pro/)  
- **Delineate**  
  - Image:   
  - Source: [Delineate](https://delineate.pro/)

## Working with these fonts

Not found on Google Fonts? Follow these steps:

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",
   "count": 3
  },
  {
   "family": "sans-serif",
   "count": 3
  }
 ],
 "colors": {
 "primary": "#E3165B",
 "secondary": "#0378D5",
 "accent": "#4D841D",
 "background": "#FFFFFF",
 "textPrimary": "#212121",
 "link": "#4D841D"
 },
 "typography": {
 "fontFamilies": {
 "primary": "Inter",
 "heading": "Inter"
 },
 "fontStacks": {
 "body": [
  "Inter",
  "sans-serif"
 ],
 "heading": [
  "Inter",
  "sans-serif"
 ],
 "paragraph": [
  "Inter",
  "sans-serif"
 ]
 },
 "fontSizes": {
 "h1": "16px",
 "h2": "16px",
 "body": "16px"
 }
 },
 "spacing": {
 "baseUnit": 4,
 "borderRadius": "6px"
 },
 "components": {},
 "images": {
 "logo": null,
 "favicon": "https://delineate.pro/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"
 }
 }
}
```
