Skip to content

Commit 8ad2eb3

Browse files
Merge pull request #1060 from RongqiZ/user/rongqizhou/UpdateColorPairs
update Add-SPOTheme colorpairs
2 parents 8b4cef6 + 6071bad commit 8ad2eb3

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Add-SPOTheme.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ Choose the appropriate parameter set based on whether you're working with a lega
5454
```powershell
5555
$colorPairs = @{
5656
light = @(
57-
@{ "accentColor": "#03787C"; "backgroundColor": "#FFFFFF" }
58-
@{ "accentColor": "#FFFFFF"; "backgroundColor": "#03787C" }
59-
@{ "accentColor": "#E3FFFD"; "backgroundColor": "#03787C" }
60-
@{ "accentColor": "#03787C"; "backgroundColor": "#E3FFFD" }
61-
@{ "accentColor": "#FFF9E3"; "backgroundColor": "#03787C" }
62-
@{ "accentColor": "#03787C"; "backgroundColor": "#FFF9E3" }
63-
@{ "accentColor": "#03787C"; "backgroundColor": "#F5F5F5" }
64-
@{ "accentColor": "#242424"; "backgroundColor": "#F5F5F5" }
65-
@{ "accentColor": "#155473"; "backgroundColor": "#FFFFFF" }
66-
@{ "accentColor": "#FFFFFF"; "backgroundColor": "#155473" }
67-
@{ "accentColor": "#155473"; "backgroundColor": "#E3FFFD" }
68-
@{ "accentColor": "#E3FFFD"; "backgroundColor": "#155473" }
69-
@{ "accentColor": "#FFF9E3"; "backgroundColor": "#155473" }
70-
@{ "accentColor": "#155473"; "backgroundColor": "#FFF9E3" }
57+
@{ "accentColor" = "#03787C"; "backgroundColor" = "#FFFFFF" }
58+
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#03787C" }
59+
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#03787C" }
60+
@{ "accentColor" = "#03787C"; "backgroundColor" = "#E3FFFD" }
61+
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#03787C" }
62+
@{ "accentColor" = "#03787C"; "backgroundColor" = "#FFF9E3" }
63+
@{ "accentColor" = "#03787C"; "backgroundColor" = "#F5F5F5" }
64+
@{ "accentColor" = "#242424"; "backgroundColor" = "#F5F5F5" }
65+
@{ "accentColor" = "#155473"; "backgroundColor" = "#FFFFFF" }
66+
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#155473" }
67+
@{ "accentColor" = "#155473"; "backgroundColor" = "#E3FFFD" }
68+
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#155473" }
69+
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#155473" }
70+
@{ "accentColor" = "#155473"; "backgroundColor" = "#FFF9E3" }
7171
)
7272
}
7373

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOTheme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The **Get-SPOTheme** cmdlet returns the settings for a named existing theme, or
3131
This example shows how to use the **Get-SPOTheme** cmdlet to return the settings for the `"Custom Cyan"` theme created in the example for the **Add-SPOTheme** cmdlet. Note that this example uses the PowerShell `ConvertTo-Json` filter to display the theme in JSON format.
3232

3333
```powershell
34-
Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json 4
34+
Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json -Depth 4
3535
```
3636

3737
```Output

0 commit comments

Comments
 (0)