<!-- llms.txt: https://workos.com/llms.txt -->

# Branding

Read the branding for the environment the token was issued for.

## Get branding

The branding configured for the token's environment.

:::code-group

```graphql language="graphql" title="Query" tab="1"
query Branding {
  branding {
    displayName
    logoDarkIconPath
    logoDarkPath
    logoLightIconPath
    logoLightPath
  }
}
```

```json language="json" title="Response" tab="2"
{
  "data": {
    "branding": {
      "displayName": "displayName_example",
      "logoDarkIconPath": "logoDarkIconPath_example",
      "logoDarkPath": "logoDarkPath_example",
      "logoLightIconPath": "logoLightIconPath_example",
      "logoLightPath": "logoLightPath_example"
    }
  }
}
```

:::

### Query branding

#### Returns

| Field | Type | Description |
| --- | --- | --- |
| `displayName` | String! | The product name shown to users. |
| `logoDarkIconPath` | String | The fully resolved dark-mode icon URL, or null when it is not configured. |
| `logoDarkPath` | String | The fully resolved dark-mode logo URL, or null when it is not configured. |
| `logoLightIconPath` | String | The fully resolved light-mode icon URL, or null when it is not configured. |
| `logoLightPath` | String | The fully resolved light-mode logo URL, or null when it is not configured. |