SOLVED

SharePoint Online Custom Theme No Customize

Iron Contributor

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

strong.pngstrong2.png

1 Reply
best response confirmed by NotAlex (Iron Contributor)
Solution

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 best response

Accepted Solutions
best response confirmed by NotAlex (Iron Contributor)
Solution

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;

View solution in original post