# account\_branding\_settings

From **Stripe API**.

- Type: `object`

## Properties

### `icon`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) An icon for the account. Must be square and at least 128px x 128px.

### `logo`

- Required: false
- Nullable: true

(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) A logo for the account that will be used in Checkout instead of the icon and without the account's name next to it if provided. Must be at least 128px x 128px.

### `primary_color`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

A CSS hex color value representing the primary branding color for this account

### `secondary_color`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

A CSS hex color value representing the secondary branding color for this account

## JSON Schema

```json
{"properties":{"icon":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) An icon for the account. Must be square and at least 128px x 128px.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"logo":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/file"}],"description":"(ID of a [file upload](https://stripe.com/docs/guides/file-upload)) A logo for the account that will be used in Checkout instead of the icon and without the account's name next to it if provided. Must be at least 128px x 128px.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/file"}]}},"primary_color":{"description":"A CSS hex color value representing the primary branding color for this account","maxLength":5000,"nullable":true,"type":"string"},"secondary_color":{"description":"A CSS hex color value representing the secondary branding color for this account","maxLength":5000,"nullable":true,"type":"string"}},"title":"AccountBrandingSettings","type":"object","x-expandableFields":["icon","logo"]}
```
