Forum Discussion

NotAlex's avatar
NotAlex
Iron Contributor
Dec 18, 2018
Solved

SharePoint Online Custom Theme No Customize

I am trying to create a custom theme with the "strong" background type.

 

However There is no customize button on custom theme and I do not see any json schema property for it.

 

 

Does anyone know if this is possible?

 

Thanks

  • If anyone is interested, there is a new web property in the latest version of csom

    • public property Microsoft.SharePoint.Client.Web.HeaderEmphasis

    So setting this via code allows a custom theme to be used with a strong background

     

    e.g. context.Web.HeaderEmphasis = SPVariantThemeType.Strong;

1 Reply

  • NotAlex's avatar
    NotAlex
    Iron Contributor

    If anyone is interested, there is a new web property in the latest version of csom

    • public property Microsoft.SharePoint.Client.Web.HeaderEmphasis

    So setting this via code allows a custom theme to be used with a strong background

     

    e.g. context.Web.HeaderEmphasis = SPVariantThemeType.Strong;