Forum Discussion
NotAlex
Dec 18, 2018Iron Contributor
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 k...
- Dec 19, 2018
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;
NotAlex
Dec 19, 2018Iron 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;