Dec 17 2021 04:28 PM
We are investigating creating a site theme with black as the primary color, but would like the theme to have buttons such as quick links to display in orange. See below
This is what we have so far in our theme (I just put orange instead of the hex number for what we have currently):
$themepalette = @{
"themePrimary" = "#323130";
"themeLighterAlt" = "#e7e6e5";
"themeLighter" = "#FFOrange ";
"themeLight" = "#FFOrange ";
"themeTertiary" = "#a3a2a0";
"themeSecondary" = "#FFOrange";
"themeDarkAlt" = "#FFOrange ";
"themeDark" = "#605e5d";
"themeDarker" = "#494847";
"neutralLighterAlt" = "#faf9f8";
"neutralLighter" = "#f3f2f1";
"neutralLight" = "#edebe9";
"neutralQuaternaryAlt" = "#e1dfdd";
"neutralQuaternary" = "#d0d0d0";
"neutralTertiaryAlt" = "#c8c6c4";
"neutralTertiary" = "#d8d9da";
"neutralSecondary" = "#b1b3b6";
"neutralPrimaryAlt" = "#8e9093";
"neutralPrimary" = "#808285";
"neutralDark" = "#616265";
"black" = "#47484a";
"white" = "#ffffff";
}
Add-SPOTheme -Identity "Black with Orange Accent" -Palette $themepalette -IsInverted $false
Is there a way to do this, and if so, what color should I modify?
Much thanks.
Feb 10 2022 04:50 PM
SolutionFeb 10 2022 04:50 PM
Solution