# Adobe logo

> Creative software including Photoshop, Illustrator, and Acrobat.

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

## About Adobe

Adobe Inc. is the world's largest creative-software company, with Photoshop, Illustrator, InDesign, Premiere Pro, and Acrobat forming the backbone of Creative Cloud. The company also invented the PDF format (1993) and PostScript (1984).

## Company facts

- **Founded:** 1982
- **Headquarters:** San Jose, California, USA
- **Founders:** John Warnock, Charles Geschke
- **Industry:** Creative software
- **Listed as:** NASDAQ: ADBE
- **Website:** https://adobe.com

## About the Adobe logo

The Adobe logo is a stylized red "A" made of two triangular strokes with a diamond cutout in the center. The current design has been in use since 2020, evolving from the original 1982 mark by Marva Warnock (John Warnock's wife).

## Adobe brand colors

| Color | Hex |
|---|---|
| Adobe Red | `#FA0F00` |
| Adobe Black | `#000000` |

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

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

## Related company logos

- [Figma](https://superlogo.ai/logo/figma.com)
- [Canva](https://superlogo.ai/logo/canva.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
