# Canva logo

> Browser-based graphic design for non-designers.

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

## About Canva

Canva has over 220 million monthly active users as of 2024, making it one of the most-used design tools in the world by headcount. The Sydney-founded company was valued at $32 billion in a 2024 secondary share sale. Its gradient logo signals the app's "design is for everyone" positioning.

## Company facts

- **Founded:** 2013
- **Headquarters:** Sydney, Australia
- **Founders:** Melanie Perkins, Cliff Obrecht, Cameron Adams
- **Industry:** Design software
- **Website:** https://canva.com

## About the Canva logo

The Canva logo is a cyan-to-purple gradient circle with a white "C" cutout in the center, next to the "Canva" wordmark. The gradient is meant to feel welcoming to beginners.

## Canva brand colors

| Color | Hex |
|---|---|
| Canva Purple | `#7B61FF` |
| Canva Cyan | `#00C4CC` |
| Canva Deep Purple | `#3D2AFF` |

## 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":["canva.com"],"size":512}'
```

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

## Related company logos

- [Adobe](https://superlogo.ai/logo/adobe.com)
- [Figma](https://superlogo.ai/logo/figma.com)
- [Sketch](https://superlogo.ai/logo/sketch.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
