Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular Material v15 Theme + Typography, default text not styled

When I customize the theme to set a font...

  1. some text gets properly styled (e.g. <mat-card-title> <mat-card-action> etc)
  2. but some other does not (e.g. <p> <span> <mat-card-content>) and default to Roboto... Shouldn't those take the body-1 style? Note that I am using mat-card as an example, but the same happens with other components. https://material.angular.io/guide/typography

enter image description here

Minimal steps to repro:

  • Add a Google font to index.html
  • Configure styles in styles.scss so that the new font is the default for all levels (should be used everywhere)
$theme-primary: mat.define-palette(mat.$indigo-palette);
$theme-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);

$my-typography: mat.define-typography-config(
  $font-family: "'Nerko One', cursive",
);

$theme: mat.define-light-theme(
  (
    color: (
      primary: $theme-primary,
      accent: $theme-accent,
    ),
    typography: $my-typography,
  )
);
@include mat.all-component-themes($theme);

Here is an example, you can see that the title etc are styled, but not the content of the card: https://stackblitz.com/edit/angular-wan6f9?file=src/app/card-actions-example.html

I tried a few approaches, including configuring each level which did not work. The only thing that works is to hardcode the default to the root of the document, which I would rather not do.

like image 239
Julien Avatar asked Sep 11 '25 21:09

Julien


1 Answers

I had exactly the same symptoms and desperately added @include mat.all-component-typographies($typography); in addition to the @include mat.all-component-themes($my-theme); present in the documentation.

Where $typography is basically the same as described by the OP.

Then all the styles kicked in as expected.

like image 132
rexsuecia Avatar answered Sep 13 '25 09:09

rexsuecia