Skip to content

Commit e49fcf9

Browse files
authored
Updated code sample
Spelling error in the word Palette for the variable name.
1 parent 189849e commit e49fcf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Add-SPOTheme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
--
22
external help file:
33
applicable: SharePoint Online
44
title: Add-SPOTheme
@@ -24,7 +24,7 @@ Adding a theme does not apply the theme to any sites. It adds the theme to your
2424
In this example, a new theme named `"Custom Cyan"` is created, with color palette settings that are various shades of cyan. Note that the settings are passed as a hash table.
2525

2626
```powershell
27-
$themepallette = @{
27+
$themepalette = @{
2828
"themePrimary" = "#00ffff";
2929
"themeLighterAlt" = "#f3fcfc";
3030
"themeLighter" = "#daffff";
@@ -52,7 +52,7 @@ $themepallette = @{
5252
"primaryText" = "#333"
5353
}
5454
55-
Add-SPOTheme -Name "Custom Cyan" -Palette $themepallette -IsInverted $false
55+
Add-SPOTheme -Name "Custom Cyan" -Palette $themepalette -IsInverted $false
5656
```
5757

5858
> [!NOTE]

0 commit comments

Comments
 (0)