> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.com/llms.txt
> Use this file to discover all available pages before exploring further.

# BrandingSettings

```ts Example theme={null}
export interface BrandingSettings {
  colors?: {
    primary?: string;
    pageBackground?:
      | string
      | {
          type: string;
          start: string;
          end: string;
          angleDegree: number;
        };
  };
  faviconUrl?: string;
  logoUrl?: string;
  fontUrl?: string;
}
```

## Properties

<ParamField body="colors?" type="object">
  <Expandable title="properties">
    <ParamField body="pageBackground?" type="string | { angleDegree: number; end: string; start: string; type: string; }" />

    <ParamField body="primary?" type="string" />
  </Expandable>
</ParamField>

<ParamField body="faviconUrl?" type="string" />

<ParamField body="fontUrl?" type="string" />

<ParamField body="logoUrl?" type="string" />
