Can we change the Font text & color for our modern SharePoint online UI

Steel Contributor

I am starting a new SharePoint online project, and the first requirement that came in is to build a POC site for the customer, but they want to define a custom Fonts and Colors for the site to meet their standards.. so is this possible inside SharePoint modern UI ? to define custom fonts and Colors other than the build-in features provided by the Sitting>> Change the Look.. which does have a coloring options but does not have any options to change the font.

Thanks

5 Replies
Hi, you can use the below link to change the color and have a preview of how the controls and other elements will change.
https://fluentuipr.z22.web.core.windows.net/heads/master/theming-designer/index.html
For font change, as of now there is no recommended approach but it can be done via custom SharePoint extension.

@Sudharsan Kok thanks for the font so is this  a valid approach to follow:--

 

I can create a new theme. Color palette and fonts.

https://docs.microsoft.com/en-us/sharepoint/dev/general-development/color-palettes-and-fonts-in-shar...

Will need to export the theme, change it, then import it again.

https://pixelmill.com/changing-colors-modern-site/

In Powershell, run this:

Connect-SPOService -Url https://yourtenant.sharepoint.com

Enter your central admin credentials.

Get-SPOHideDefaultThemes

Now, define a variable and assign the JSON to it:

$themepalette = [paste the code here]

Next, run the Add-SPOTheme commandlet: Add-SPOTheme

-Name "Your Theme Name" -Palette $themepalette -IsInverted $false T

You can access it from the “Change the look” panel.

 

 

Is the above steps valid/recommended?

Thanks

You can use the above commands for customizing the colour.

@Sudharsan K  so you mean the steps i mentioned can be used to change the colors but not the font? did i get your point correctly?Thanks