-
Notifications
You must be signed in to change notification settings - Fork 187
Add note for satellite geo admin could not add new theme #1067
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,11 @@ Get-SPOTheme [[-Name] <String>] [<CommonParameters>] | |
|
|
||
| The **Get-SPOTheme** cmdlet returns the settings for a named existing theme, or for all uploaded themes if no name is provided. | ||
|
|
||
| > [!NOTE] | ||
| > To support consistent branding and simplify governance, theme management is transitioning to a centralized model. | ||
| > - The **primary geo** will act as the central location for **organization-wide theme creation and management**. Themes created here will be visible and applicable across satellite geos. | ||
| > - The **Satellite Geo Administrators** will be able to view and apply themes from the primary geo to their own sites by using `Get-SPOTheme` and `Set-SPOWebTheme` cmdlet. Themes previously created within satellite geos will remain available for use. However, **creating new themes in satellite geos will no longer be supported** going forward. | ||
|
||
|
|
||
| ## EXAMPLES | ||
|
|
||
| ### Example 1 | ||
|
|
@@ -44,7 +49,8 @@ Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json -Depth 4 | |
| {"accentColor": "#FFFFFF", "backgroundColor": "#0078D4"} | ||
| ] | ||
| }, | ||
| "IsInverted": false | ||
| "IsInverted": false, | ||
| "Editable": true | ||
| } | ||
| ``` | ||
|
|
||
|
|
@@ -54,33 +60,34 @@ If the theme is in legacy format, the output will be: | |
| { | ||
| "Name": "Custom Cyan", | ||
| "Palette": { | ||
| "themeLight": "#affefe", | ||
| "themeTertiary": "#76ffff", | ||
| "black": "#000000", | ||
| "neutralSecondary": "#666666", | ||
| "neutralTertiaryAlt": "#c8c8c8", | ||
| "themeSecondary": "#39ffff", | ||
| "themeDarker": "#005252", | ||
| "primaryBackground": "#fff", | ||
| "neutralQuaternary": "#d0d0d0", | ||
| "neutralPrimaryAlt": "#3c3c3c", | ||
| "neutralPrimary": "#333", | ||
| "themeDark": "#009090", | ||
| "themeLighter": "#daffff", | ||
| "neutralTertiary": "#a6a6a6", | ||
| "neutralQuaternaryAlt": "#dadada", | ||
| "themeLighterAlt": "#f3fcfc", | ||
| "white": "#fff", | ||
| "neutralSecondaryAlt": "#767676", | ||
| "neutralLighter": "#f4f4f4", | ||
| "neutralLight": "#eaeaea", | ||
| "neutralDark": "#212121", | ||
| "themeDarkAlt": "#00c4c4", | ||
| "neutralLighterAlt": "#f8f8f8", | ||
| "primaryText": "#333", | ||
| "themePrimary": "#00ffff" | ||
| }, | ||
| "IsInverted": false | ||
| "themeLight": "#affefe", | ||
| "themeTertiary": "#76ffff", | ||
| "black": "#000000", | ||
| "neutralSecondary": "#666666", | ||
| "neutralTertiaryAlt": "#c8c8c8", | ||
| "themeSecondary": "#39ffff", | ||
| "themeDarker": "#005252", | ||
| "primaryBackground": "#fff", | ||
| "neutralQuaternary": "#d0d0d0", | ||
| "neutralPrimaryAlt": "#3c3c3c", | ||
| "neutralPrimary": "#333", | ||
| "themeDark": "#009090", | ||
| "themeLighter": "#daffff", | ||
| "neutralTertiary": "#a6a6a6", | ||
| "neutralQuaternaryAlt": "#dadada", | ||
| "themeLighterAlt": "#f3fcfc", | ||
| "white": "#fff", | ||
| "neutralSecondaryAlt": "#767676", | ||
| "neutralLighter": "#f4f4f4", | ||
| "neutralLight": "#eaeaea", | ||
| "neutralDark": "#212121", | ||
| "themeDarkAlt": "#00c4c4", | ||
| "neutralLighterAlt": "#f8f8f8", | ||
| "primaryText": "#333", | ||
| "themePrimary": "#00ffff" | ||
| }, | ||
| "IsInverted": false, | ||
| "Editable": true | ||
| } | ||
| ``` | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(we use "This" to avoid repeating the cmdlet name)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated