Get-SPOTheme
Recupera as configurações de um tema existente.
Description
O cmdlet Get-SPOTheme retorna as configurações para um tema existente nomeado ou para todos os temas carregados se nenhum nome for fornecido.
Exemplos
Exemplo 1
Este exemplo mostra como usar o cmdlet Get-SPOTheme para retornar as configurações do "Custom Cyan"
tema criado no exemplo para o cmdlet Add-SPOTheme . Observe que este exemplo usa o filtro do PowerShell ConvertTo-Json
para exibir o tema no formato JSON.
Get-SPOTheme -Name "Custom Cyan" | ConvertTo-Json
{
"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
}
Exemplo 2
Para retornar todos os temas carregados, use o comando Get-SPOTheme sem argumentos.
Get-SPOTheme