# Fuze Brand Identity

A complete profile of **Fuze**'s visual system — colors, typography, components, and personality — extracted from https://cloudfuze.com. Built for designers, agents, and AI tools.

- Page: https://characterquilt.com/branding/fuze
- Machine-readable JSON: https://characterquilt.com/branding/fuze.json
- Per-page llms.txt: https://characterquilt.com/branding/fuze/llms.txt

## Quick Facts

| Field | Value |
|---|---|
| Primary | #092933 |
| Accent | #0129AC |
| Body Font | Arial |
| Heading Font | Poppins |

## Color Palette

- primary: #092933
- secondary: #65BC7B
- accent: #0129AC
- background: #FFFFFF
- textPrimary: #0129AC
- link: #0129AC

## Typography

- primary: Arial — https://fonts.google.com/specimen/Arial
- heading: Poppins — https://fonts.google.com/specimen/Poppins

## Visual Assets

- Logo: [CloudFuze Logo](https://www.cloudfuze.com/wp-content/uploads/2020/12/logo.svg)
- Favicon: 
- Social card (og:image):

## UI Components

- input: background=#F4F6F7, textColor=#768894, borderColor=#EDEEF2, borderRadius=0px, shadow=none

## Brand Personality

Tone: professional · Energy: medium · Audience: enterprise businesses

## Fuze Brand in the Wild

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

- **Why SaaS & AI Security Demands a Proactive Approach in 2026**
  - Image: 
  - Source: [Read More](https://www.cloudfuze.com/why-saas-security-demands-a-proactive-approach/)
- **Slack vs Teams – The Best Business Chat Apps Compared!**
  - Image: 
  - Source: [Read More](https://www.cloudfuze.com/slack-vs-teams-which-is-best-for-your-business-collaboration/)

## Working with these fonts

### Font Instructions
Open the company's homepage in a browser with DevTools open. In the Network tab, filter by "Font".
1. Hard-reload the page and click around (pricing, blog, careers) — some weights only load on specific routes.
2. For each captured font URL: right-click → Save As to download the file locally.
3. View the page's CSS 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.
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": "Poppins",
      "role": "heading"
    },
    {
      "family": "Arial",
      "role": "body"
    },
    {
      "family": "Helvetica",
      "role": "body"
    }
  ],
  "colors": {
    "primary": "#092933",
    "secondary": "#65BC7B",
    "accent": "#0129AC",
    "background": "#FFFFFF",
    "textPrimary": "#0129AC",
    "link": "#0129AC"
  },
  "typography": {
    "fontFamilies": {
      "primary": "Arial",
      "heading": "Poppins"
    },
    "fontStacks": {
      "heading": [
        "Poppins"
      ],
      "body": [
        "Poppins",
        "Arial",
        "Helvetica",
        "sans-serif"
      ],
      "paragraph": [
        "Poppins",
        "Arial",
        "Helvetica",
        "sans-serif"
      ]
    },
    "fontSizes": {
      "h1": "36px",
      "h2": "24px",
      "body": "16px"
    }
  },
  "spacing": {
    "baseUnit": 4,
    "borderRadius": "5px"
  },
  "components": {
    "input": {
      "background": "#F4F6F7",
      "textColor": "#768894",
      "borderColor": "#EDEEF2",
      "borderRadius": "0px",
      "borderRadiusCorners": {
        "topLeft": "0px",
        "topRight": "0px",
        "bottomRight": "0px",
        "bottomLeft": "0px"
      },
      "shadow": "none"
    }
  },
  "images": {
    "logo": "https://www.cloudfuze.com/wp-content/uploads/2020/12/logo.svg",
    "favicon": "https://www.cloudfuze.com/wp-content/uploads/2023/12/CloudFuze-icon-32x32-1.png",
    "ogImage": "https://www.cloudfuze.com/wp-content/uploads/2026/01/Migrate-Banner-1.svg",
    "logoHref": "https://www.cloudfuze.com/",
    "logoAlt": "CloudFuze Logo"
  },
  "personality": {
    "tone": "professional",
    "energy": "medium",
    "targetAudience": "enterprise businesses"
  }
}
```
