Documentation Index
Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
export interface BrandingMembers {
settings: BrandingSettings | null;
themes: BrandingThemes | null;
}
Properties
BrandingSettings
export interface BrandingSettings {
colors?: {
primary?: string;
pageBackground?:
| string
| {
type: string;
start: string;
end: string;
angleDegree: number;
};
};
faviconUrl?: string;
logoUrl?: string;
fontUrl?: string;
}
Properties
pageBackground?
string | { angleDegree: number; end: string; start: string; type: string; }
BrandingThemes
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
borders
Record<string, string | boolean | number>
fonts
Record<string, string | boolean | object>
widget
Record<string, string | number>