menuMDUIDocs
color_lens
Material Design 3 と Web Components をベースにした新しい mdui 2 がリリースされました。mdui 2 ドキュメントはこちら

Roboto フォント

Roboto は Material Design で使用される標準フォントであり、mdui フレームワークにはこのフォントファイルが組み込まれています。

Roboto には、100、300、400、500、700、900 の 6 種類の太さと、normal、italic の 2 種類のスタイルが含まれています。

Roboto のデモ

Thin

font-weight:100;

Thin Italic

font-weight: 100;
font-style: italic;

Light

font-weight: 300;

Light Italic

font-weight: 300;
font-style: italic;

Regular

font-weight: 400;

Regular Italic

font-weight: 400;
font-style: italic;

Medium

font-weight:500;

Medium Italic

font-weight: 500;
font-style: italic;

Bold

font-weight:700;

Bold Italic

font-weight: 700;
font-style: italic;

Black

font-weight:900;

Black Italic

font-weight: 900;
font-style: italic;

Roboto を削除

Roboto を使用したくない場合は、カスタムフォントでデフォルトのフォントを上書きできます。

body {
  font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, sans-serif;
}