Change Font

Is it possible to change font across the whole UI? Add a new font family?

Thanks.
-Norman

Hello @Norman_Chui

Yes, it should be possible, have you tried to use Themes/App Extensions (Less/Css)?

Regards, Vlad

Could you provide a little detail as to where to upload the font files and how to refer to them in the LESS?

Upload your fonts to Root / ui-builder / containers / containerName
In extension use font-face

@font-face {
  font-family: "FontName";
  src: url("FontName.woff2") format("woff2");
}

Or use this in extensions

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

This is a link from Google Fonts.

In LESS its work like in CSS so you can find information in the internet.
For example here - @font-face - CSS | MDN

Regards, Dima