# Brainboard Brand Identity

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

## Quick Facts

| Field   | Value   |
|---------|---------|
| Primary | #0000EE |
| Accent  | #3898EC |
| Body Font | Inter  |
| Heading Font | Inter  |

## Color Palette

- primary: #0000EE
- secondary: #333242
- accent: #3898EC
- background: #000000
- textPrimary: #000000
- link: #3898EC

## Typography

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

## Visual Assets

- Logo: 
- Favicon: 
- Social card (og:image):

## UI Components

- buttonPrimary: background=#0D0D0D, textColor=#FFFFFF, borderRadius=12px, shadow=none
- buttonSecondary: background=transparent, textColor=#FFFFFF, borderColor=#000000, borderRadius=12px, shadow=none

## Brand Personality

Tone: modern · Energy: medium · Audience: tech professionals

## Brainboard Brand in the Wild

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

- **What Is Policy As Code: A Practical Guide | Brainboard Blog**  
  - Image:  
  - Source: https://www.brainboard.co/blog/what-is-policy-as-code-a-practical-guide
- **GitOps Workflow: Design to Pull Request | Brainboard**  
  - Image:  
  - Source: https://www.brainboard.co/features/gitops-workflow
- **Terraform Output Values | Brainboard Blog**  
  - Image:  
  - Source: https://www.brainboard.co/blog/terraform-output-values
- **Cloud Infrastructure Management Platform | Brainboard**  
  - Image: .png) 
  - Source: https://www.brainboard.co/
- **How to debug Terraform failed apply | Brainboard Blog**  
  - Image:  
  - Source: https://www.brainboard.co/blog/how-to-debug-terraform-failed-apply
- **Synchronized Architectures & Environments | Brainboard**  
  - Image:  
  - Source: https://www.brainboard.co/features/synchronized-architectures

## Working with these fonts

Not found on Google Fonts? Follow this flow if you have permission to use the fonts:

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 and copy out the matching @font-face declarations.

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.

## Machine-Readable Profile

```json
{
 "colorScheme": "dark",
 "fonts": [
 {"family": "Inter","role": "body"},
 {"family": "Arial","role": "body"}
 ],
 "colors": {
 "primary": "#0000EE",
 "secondary": "#333242",
 "accent": "#3898EC",
 "background": "#000000",
 "textPrimary": "#000000",
 "link": "#3898EC"
 },
 "typography": {
 "fontFamilies": {
 "primary": "Inter",
 "heading": "Inter"
 },
 "fontStacks": {
 "heading": ["Inter","Arial","sans-serif"],
 "body": ["Inter","Arial","sans-serif"],
 "paragraph": ["Inter","Arial","sans-serif"]
 },
 "fontSizes": {
 "h1": "154px",
 "h2": "68px",
 "body": "74px"
 }
 },
 "spacing": {
 "baseUnit": 4,
 "borderRadius": "12px"
 },
 "components": {
 "buttonPrimary": {
 "background": "#0D0D0D",
 "textColor": "#FFFFFF",
 "borderRadius": "12px",
 "borderRadiusCorners": {
 "topLeft": "12px",
 "topRight": "12px",
 "bottomRight": "12px",
 "bottomLeft": "12px"
 },
 "shadow": "none"
 },
 "buttonSecondary": {
 "background": "transparent",
 "textColor": "#FFFFFF",
 "borderColor": "#000000",
 "borderRadius": "12px",
 "borderRadiusCorners": {
 "topLeft": "12px",
 "topRight": "12px",
 "bottomRight": "12px",
 "bottomLeft": "12px"
 },
 "shadow": "none"
 }
 },
 "images": {
 "logo": "https://cdn.prod.website-files.com/65804fa74751b18ff1417299/6582d634a178823ef077779a_brainboard-menu-logo.svg",
 "favicon": "https://cdn.prod.website-files.com/65804fa74751b18ff1417299/6588b145928091ed175f2c17_favicon.png",
 "ogImage": "https://cdn.prod.website-files.com/65804fa74751b18ff1417299/6588b40b928091ed17607e2f_Brainboard%20-%20Open%20Graph.png",
 "logoHref": "/",
 "logoAlt": "Brainboard cloud designer logo"
 },
 "personality": {
 "tone": "modern",
 "energy": "medium",
 "targetAudience": "tech professionals"
 },
 "designSystem": {
 "framework": "custom",
 "componentLibrary": ""
 },
 "confidence": {
 "buttons": 0.9,
 "colors": 0.9,
 "overall": 0.9
 }
}
```
