export interface BrandingMembers { settings: BrandingSettings | null; themes: BrandingThemes | null; }
export interface BrandingSettings { colors?: { primary?: string; pageBackground?: | string | { type: string; start: string; end: string; angleDegree: number; }; }; faviconUrl?: string; logoUrl?: string; fontUrl?: string; }
Show properties
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>; }; }
Was this page helpful?