Roboto is the standard font used by Material Design, and the mdui framework includes these font files.
Roboto includes 6 different font weights: 100, 300, 400, 500, 700, and 900, along with two styles: normal and italic.
Thin Italic
Example
font-weight: 100;
font-style: italic;
Light
Light Italic
Example
font-weight: 300;
font-style: italic;
Regular
Regular Italic
Example
font-weight: 400;
font-style: italic;
Medium
Medium Italic
Example
font-weight: 500;
font-style: italic;
Bold
Bold Italic
Example
font-weight: 700;
font-style: italic;
Black
Black Italic
Example
font-weight: 900;
font-style: italic;
Remove Roboto
If you do not wish to use Roboto, you can override the default font with a custom one.
body {
font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, sans-serif;
}