# Figma logo

> Browser-based collaborative design and prototyping.

**Domain:** `figma.com`  
**Logo image (transparent PNG):** https://superlogo.ai/api/logo-image/figma.com?size=1024  
**Programmatic access:** `POST https://superlogo.ai/v1/resolve` with `{"domains":["figma.com"]}` — $0.01/logo, no attribution.

## About Figma

Figma is a browser-first collaborative design tool that fundamentally changed how product teams work. Adobe attempted to acquire it for $20 billion in 2022 but abandoned the deal in December 2023 amid regulatory scrutiny. The five-shape logo is designed to feel assembled from primitives — a nod to Figma's underlying model.

## Company facts

- **Founded:** 2012
- **Headquarters:** San Francisco, California, USA
- **Founders:** Dylan Field, Evan Wallace
- **Industry:** Design software
- **Website:** https://figma.com

## About the Figma logo

The Figma logo is five geometric shapes (four half-circles and one square) in five distinct brand colors, arranged in a stylized "F" silhouette. Each shape represents a different design primitive.

## Figma brand colors

| Color | Hex |
|---|---|
| Figma Red | `#F24E1E` |
| Figma Orange | `#FF7262` |
| Figma Purple | `#A259FF` |
| Figma Blue | `#1ABCFE` |
| Figma Green | `#0ACF83` |

## Fetch this logo programmatically

```bash
curl -X POST https://superlogo.ai/v1/resolve \
  -H "Authorization: Bearer sl_live_YOURKEY" \
  -H "Content-Type: application/json" \
  -d '{"domains":["figma.com"],"size":512}'
```

```python
import requests
r = requests.post(
    "https://superlogo.ai/v1/resolve",
    headers={"Authorization": "Bearer sl_live_YOURKEY"},
    json={"domains": ["figma.com"], "size": 512},
)
logo_b64 = r.json()["logos"][0]["logo_base64"]
```

## Related company logos

- [Adobe](https://superlogo.ai/logo/adobe.com)
- [Sketch](https://superlogo.ai/logo/sketch.com)
- [Canva](https://superlogo.ai/logo/canva.com)
- [InVision](https://superlogo.ai/logo/invisionapp.com)
- [Framer](https://superlogo.ai/logo/framer.com)

## Pricing

- $0.01 per logo lookup by domain
- $0.04 per logo when resolving from a company name
- Failed lookups are free
- 100 free lookups per month
- No attribution, no monthly minimum
