Forum Discussion
john john
Sep 21, 2021Iron Contributor
Can we change the Font text & color for our modern SharePoint online UI
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 t...
Sudharsan K
Sep 21, 2021Iron Contributor
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.
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.
- john johnSep 21, 2021Iron Contributor
Sudharsan Kok thanks for the font so is this a valid approach to follow:--
I can create a new theme. Color palette and fonts.
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.comEnter 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
- Sudharsan KSep 22, 2021Iron ContributorYou can use the above commands for customizing the colour.
- john johnSep 22, 2021Iron Contributor
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