How to customise SharePoint Color Theme | SharePoint colour Tool ! 👉Need a consultant? Contact me: How to customise SharePoint Color Theme | SharePoint Tutorial | Change SharePoint colour scheme In this video I will show you exactly how to add color to sharepoint site via a customise SharePoint theme. This SharePoint tutorial will guide you through creating your own SharePoint colour palette. This video assumes that you have at least the SharePoint admin role in order to access the SharePoint admin centre. You firstly will need to make sure you have SharePoitn Online Management Shell install in order to run PowerShell scripts. To install SPO PowerShell go to: Secondly you will need to create your color theme file by going to this website: After that you will need to be able to run the following PowerShell script (Ensure you update the relevant sections below that contain the word Update): Connect-SPOService -Url -Credential $userCredential #SP theme generated using: # #/styles/themegenerator $ThemePalette = @{ "themePrimary" = "#004953"; "themeLighterAlt" = "#cee7ea"; "themeLighter" = "#a6d2d8"; "themeLight" = "#82bdc5"; "themeTertiary" = "#62a9b2"; "themeSecondary" = "#46959f"; "themeDarkAlt" = "#2e828d"; "themeDark" = "#1b6f7a"; "themeDarker" = "#0b5c67"; "neutralLighterAlt" = "#f8f8f8"; "neutralLighter" = "#f4f4f4"; "neutralLight" = "#eaeaea"; "neutralQuaternaryAlt" = "#dadada"; "neutralQuaternary" = "#d0d0d0"; "neutralTertiaryAlt" = "#c8c8c8"; "neutralTertiary" = "#c2c2c2"; "neutralSecondary" = "#858585"; "neutralPrimaryAlt" = "#4b4b4b"; "neutralPrimary" = "#333333"; "neutralDark" = "#272727"; "black" = "#1d1d1d"; "white" = "#ffffff"; "primaryBackground" = "#ffffff"; "primaryText" = "#333333"; "bodyBackground" = "#ffffff"; "bodyText" = "#333333"; "disabledBackground" = "#f4f4f4"; "disabledText" = "#c8c8c8"; } Add-SPOTheme -Identity "UPDATE Theme" -Palette $ThemePalette -IsInverted $false -Overwrite











