Interface BrandingSettings

interface BrandingSettings {
    general?: {
        AccentColor?: string;
        AccentFontColor?: string;
        LogoUri?: string;
        PrimaryColor?: string;
        PrimaryFontColor?: string;
    };
    header?: { BackgroundColor?: string; FontColor?: string };
}

Properties

Properties

general?: {
    AccentColor?: string;
    AccentFontColor?: string;
    LogoUri?: string;
    PrimaryColor?: string;
    PrimaryFontColor?: string;
}
header?: { BackgroundColor?: string; FontColor?: string }