menuMDUIDocs
color_lens
Material Design 3 ve Web Components tabanlı yeni mdui 2 yayınlandı, mdui 2 dokümantasyonuna gidin.

Roboto Yazı Tipi

Roboto, Material Design tarafından kullanılan standart yazı tipidir ve mdui çerçevesi bu yazı tipi dosyasını yerleşik olarak içerir.

Roboto 6 farklı yazı tipi kalınlığı (100, 300, 400, 500, 700, 900) ve iki yazı tipi stili (normal, italik) içerir.

Roboto Demosu

Thin

Örnek
font-weight:100;

Thin Italic

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

Light

Örnek
font-weight: 300;

Light Italic

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

Regular

Örnek
font-weight: 400;

Regular Italic

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

Medium

Örnek
font-weight:500;

Medium Italic

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

Bold

Örnek
font-weight:700;

Bold Italic

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

Black

Örnek
font-weight:900;

Black Italic

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

Roboto'yu Kaldır

Roboto'yu kullanmak istemiyorsanız, varsayılan yazı tipini özel bir yazı tipiyle değiştirebilirsiniz.

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