> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# BrandingMembers

```ts Example theme={null}
export interface BrandingMembers {
  settings: BrandingSettings | null;
  themes: BrandingThemes | null;
}
```

## Properties

<ParamField body="settings" type={<span><a href="#BrandingSettings">BrandingSettings</a></span>} />

<ParamField body="themes" type={<span><a href="#BrandingThemes">BrandingThemes</a></span>} />

## BrandingSettings

```ts 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" />

## BrandingThemes

```ts theme={null}
export interface BrandingThemes {
  default: {
    borders: Record<string, string | boolean | number>;
    colors: Record<string, string>;
    displayName: string;
    fonts: Record<string, string | boolean | object>;
    pageBackground: Record<string, string>;
    widget: Record<string, string | number>;
  };
}
```

### Properties

<ParamField body="default" type="object">
  <Expandable title="properties">
    <ParamField body="borders" type="Record<string, string | boolean | number>" />

    <ParamField body="colors" type="Record<string, string>" />

    <ParamField body="displayName" type="string" />

    <ParamField body="fonts" type="Record<string, string | boolean | object>" />

    <ParamField body="pageBackground" type="Record<string, string>" />

    <ParamField body="widget" type="Record<string, string | number>" />
  </Expandable>
</ParamField>
