Compartilhar via


Office.ThemeId enum

Especifica o tema do Office que está atualmente selecionado.

Para obter informações sobre temas do Office, consulte Alterar o aspeto e funcionalidade do Microsoft 365.

Comentários

Exemplos

// The following example sets the color of a heading based on the current Office theme.
function setHeadingColor() {
    // Identify the current Office theme in use.
    const currentOfficeTheme = Office.context.officeTheme.themeId;

    if (currentOfficeTheme === Office.ThemeId.Colorful) {
        $("h1").css("color", "#1849ff");
    }

    ...
}

Campos

Black

O tema do Office atualmente selecionado é Preto.

Colorful

O tema do Office atualmente selecionado é Colorido.

DarkGray

O tema do Office atualmente selecionado é Cinzento Escuro.

White

O tema do Office atualmente selecionado é Branco.