Skip to content
Open
Show file tree
Hide file tree
Changes from all 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 @@ -78,12 +78,12 @@ Here is an example of secondaryColors, it is the set of combination of themePrim
```json
"secondaryColors": {
"light": [
{ "themePrimary": "#FFFFFF", "backgroundColor": "#03787C" },
{ "themePrimary": "#E3FFFD", "backgroundColor": "#03787C" },
{ "themePrimary": "#03787C", "backgroundColor": "#E3FFFD" },
{ "themePrimary": "#FFF9E3", "backgroundColor": "#03787C" },
{ "themePrimary": "#03787C", "backgroundColor": "#FFF9E3" },
{ "themePrimary": "#03787C", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#FFFFFF", "backgroundColor": "#007780" },
{ "themePrimary": "#E3FFFD", "backgroundColor": "#007780" },
{ "themePrimary": "#007780", "backgroundColor": "#E3FFFD" },
{ "themePrimary": "#FFF9E3", "backgroundColor": "#007780" },
{ "themePrimary": "#007780", "backgroundColor": "#FFF9E3" },
{ "themePrimary": "#007780", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#242424", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#155473", "backgroundColor": "#FFFFFF" },
{ "themePrimary": "#FFFFFF", "backgroundColor": "#155473" },
Expand All @@ -106,15 +106,15 @@ The following is an example of a JSON object that defines a theme in new theme f
{
"isInverted": true,
"palette": {
"themeDarker": "#014446",
"themeDark": "#025C5F",
"themeDarkAlt": "#026D70",
"themePrimary": "#03787C",
"themeSecondary": "#13898D",
"themeTertiary": "#49AEB1",
"themeLight": "#98D6D8",
"themeLighter": "#C5E9EA",
"themeLighterAlt": "#F0F9FA",
"themeDarker": "#003a3d",
"themeDark": "#00585e",
"themeDarkAlt": "#00676e",
"themePrimary": "#007780",
"themeSecondary": "#078b94",
"themeTertiary": "#45c3cc",
"themeLight": "#8ae7ed",
"themeLighter": "#b0f8ff",
"themeLighterAlt": "#d4fbff",
"neutralDark": "#201F1E",
"neutralPrimary": "#323130",
"neutralPrimaryAlt": "#3B3A39",
Expand All @@ -132,12 +132,12 @@ The following is an example of a JSON object that defines a theme in new theme f
},
"secondaryColors": {
"light": [
{ "themePrimary": "#FFFFFF", "backgroundColor": "#03787C" },
{ "themePrimary": "#E3FFFD", "backgroundColor": "#03787C" },
{ "themePrimary": "#03787C", "backgroundColor": "#E3FFFD" },
{ "themePrimary": "#FFF9E3", "backgroundColor": "#03787C" },
{ "themePrimary": "#03787C", "backgroundColor": "#FFF9E3" },
{ "themePrimary": "#03787C", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#FFFFFF", "backgroundColor": "#007780" },
{ "themePrimary": "#E3FFFD", "backgroundColor": "#007780" },
{ "themePrimary": "#007780", "backgroundColor": "#E3FFFD" },
{ "themePrimary": "#FFF9E3", "backgroundColor": "#007780" },
{ "themePrimary": "#007780", "backgroundColor": "#FFF9E3" },
{ "themePrimary": "#007780", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#242424", "backgroundColor": "#F5F5F5" },
{ "themePrimary": "#155473", "backgroundColor": "#FFFFFF" },
{ "themePrimary": "#FFFFFF", "backgroundColor": "#155473" },
Expand All @@ -161,15 +161,15 @@ The following is an example of a JSON object that defines a theme in legacy them
{
"isInverted": true,
"palette": {
"themeDarker": "#014446",
"themeDark": "#025C5F",
"themeDarkAlt": "#026D70",
"themePrimary": "#03787C",
"themeSecondary": "#13898D",
"themeTertiary": "#49AEB1",
"themeLight": "#98D6D8",
"themeLighter": "#C5E9EA",
"themeLighterAlt": "#F0F9FA",
"themeDarker": "#003a3d",
"themeDark": "#00585e",
"themeDarkAlt": "#00676e",
"themePrimary": "#007780",
"themeSecondary": "#078b94",
"themeTertiary": "#45c3cc",
"themeLight": "#8ae7ed",
"themeLighter": "#b0f8ff",
"themeLighterAlt": "#d4fbff",
"neutralDark": "#201F1E",
"neutralPrimary": "#323130",
"neutralPrimaryAlt": "#3B3A39",
Expand Down Expand Up @@ -202,13 +202,13 @@ Use the following PowerShell hashtable to define the color pairs for the Teal th
```powershell
$colorPairs = @{
light = @(
@{ "accentColor" = "#03787C"; "backgroundColor" = "#FFFFFF" }
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#03787C"; "backgroundColor" = "#E3FFFD" }
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#03787C"; "backgroundColor" = "#FFF9E3" }
@{ "accentColor" = "#03787C"; "backgroundColor" = "#F5F5F5" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#FFFFFF" }
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#E3FFFD" }
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#FFF9E3" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#F5F5F5" }
@{ "accentColor" = "#242424"; "backgroundColor" = "#F5F5F5" }
@{ "accentColor" = "#155473"; "backgroundColor" = "#FFFFFF" }
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#155473" }
Expand Down Expand Up @@ -401,11 +401,11 @@ Use the following PowerShell hashtable to define the color pairs for the Dark Te
$colorPairs = @{
light = @(
@{ "accentColor" = "#51AEB2"; "backgroundColor" = "#292929" }
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#03787C"; "backgroundColor" = "#E3FFFD" }
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#03787C" }
@{ "accentColor" = "#03787C"; "backgroundColor" = "#FFF9E3" }
@{ "accentColor" = "#FFFFFF"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#E3FFFD" }
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#007780" }
@{ "accentColor" = "#007780"; "backgroundColor" = "#FFF9E3" }
@{ "accentColor" = "#FFF9E3"; "backgroundColor" = "#292929" }
@{ "accentColor" = "#F5F5F5"; "backgroundColor" = "#292929" }
@{ "accentColor" = "#E3FFFD"; "backgroundColor" = "#292929" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ function RestRequest(url,params) {

var colorPairs = {
"light": [
{ "accentColor": "#03787C", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#03787C" },
{ "accentColor": "#E3FFFD", "backgroundColor": "#03787C" },
{ "accentColor": "#03787C", "backgroundColor": "#E3FFFD" },
{ "accentColor": "#FFF9E3", "backgroundColor": "#03787C" },
{ "accentColor": "#03787C", "backgroundColor": "#FFF9E3" },
{ "accentColor": "#03787C", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#007780", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#007780" },
{ "accentColor": "#E3FFFD", "backgroundColor": "#007780" },
{ "accentColor": "#007780", "backgroundColor": "#E3FFFD" },
{ "accentColor": "#FFF9E3", "backgroundColor": "#007780" },
{ "accentColor": "#007780", "backgroundColor": "#FFF9E3" },
{ "accentColor": "#007780", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#242424", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#155473", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#155473" },
Expand Down Expand Up @@ -279,13 +279,13 @@ function RestRequest(url,params) {

var colorPairs = {
"light": [
{ "accentColor": "#03787C", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#03787C" },
{ "accentColor": "#E3FFFD", "backgroundColor": "#03787C" },
{ "accentColor": "#03787C", "backgroundColor": "#E3FFFD" },
{ "accentColor": "#FFF9E3", "backgroundColor": "#03787C" },
{ "accentColor": "#03787C", "backgroundColor": "#FFF9E3" },
{ "accentColor": "#03787C", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#007780", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#007780" },
{ "accentColor": "#E3FFFD", "backgroundColor": "#007780" },
{ "accentColor": "#007780", "backgroundColor": "#E3FFFD" },
{ "accentColor": "#FFF9E3", "backgroundColor": "#007780" },
{ "accentColor": "#007780", "backgroundColor": "#FFF9E3" },
{ "accentColor": "#007780", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#242424", "backgroundColor": "#F5F5F5" },
{ "accentColor": "#155473", "backgroundColor": "#FFFFFF" },
{ "accentColor": "#FFFFFF", "backgroundColor": "#155473" },
Expand Down
2 changes: 1 addition & 1 deletion docs/design/themes-colors.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Like the Microsoft brand palette, the SharePoint themes are designed to build on

The SharePoint color palette is now optimized for screens and devices. In addition, it is optimized to provide enough flexibility to ensure continuity with your brand. The SharePoint-provided colors also guarantee accessible and legible experiences.

![SharePoint color palette, Red A4262C, Orange CA5010, Gold 986f0b, Green 498205, Teal 038387, Blue 0078d4, Dark Blue 004e8c, Indigo 4f6bed, Plum 881798, Purple 8764B8, Cool Grey 69797e, Warm Grey 7a7574](../images/sharepoint-themes.png)
![SharePoint color palette, Red A4262C, Orange CA5010, Gold 986f0b, Green 498205, Teal 007780, Blue 0078d4, Dark Blue 004e8c, Indigo 4f6bed, Plum 881798, Purple 8764B8, Cool Grey 69797e, Warm Grey 7a7574](../images/sharepoint-themes.png)

## Neutral palette

Expand Down
Binary file modified docs/images/sharepoint-themes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.