Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Contributor

@samkabue samkabue Oct 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Get-SPOTheme cmdlet

Suggested change
The **Get-SPOTheme** cmdlet returns the settings for a named existing theme, or for all uploaded themes if no name is provided.
This cmdlet
``` #Closed

Copy link
Contributor

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)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated


> [!NOTE]
> To support consistent branding and simplify governance, theme management is transitioning to a centralized model.
> - The **primary geo admins** will act as the central location for **organization-wide theme creation and management**. Themes created here will be visible and applicable across satellite geos.
Copy link
Contributor

@samkabue samkabue Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

primary geo admins

did you mean "primary geo"? (ie not "primary geo admis") since you're referring to location here, not the admin user #Closed

> - The **satellite geo admins** 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.
Copy link
Contributor

@samkabue samkabue Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

geo admins

Geo Administrators #Closed

Copy link
Contributor

@samkabue samkabue Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Get-SPOTheme

use backticks for all the cmdlet references in this file, i.e.

`Get-SPOTheme`
`Set-SPOTheme`
`Add-SPOTheme`

etc

#Closed


## EXAMPLES

### Example 1
Expand All @@ -44,7 +49,8 @@ Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json -Depth 4
{"accentColor": "#FFFFFF", "backgroundColor": "#0078D4"}
]
},
"IsInverted": false
"IsInverted": false,
"Editable": true
}
```

Expand Down Expand Up @@ -80,7 +86,8 @@ If the theme is in legacy format, the output will be:
"primaryText": "#333",
"themePrimary": "#00ffff"
},
Copy link
Contributor

@samkabue samkabue Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix this indent too -- too large #Closed

"IsInverted": false
"IsInverted": false,
"Editable": true
}
```

Expand Down