Ionic 5 changing default font family

Hi @abdosaeed

You should add this to your variables.scss

@font-face {
font-family: AppFont;
src: url("…/assets/fonts/Oxygen-Regular.ttf"); //change url accordingly
}

:root {
** --ion-font-family: ‘AppFont’;**
}

8 Likes