Themes/MaterialDesign3.TextBlock.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <ResourceDictionary.MergedDictionaries>
    <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Hyperlink.xaml" />
  </ResourceDictionary.MergedDictionaries>
 
  <!-- MaterialDesignBody -->
  <Style x:Key="MaterialDesignBodySmallTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="12" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="16" />
  </Style>
  <Style x:Key="MaterialDesignBodyMediumTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="14" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="20" />
  </Style>
  <Style x:Key="MaterialDesignBodyLargeTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="16" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="24" />
  </Style>
 
  <!-- MaterialDesignLabel -->
  <Style x:Key="MaterialDesignLabelSmallTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="11" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="16" />
  </Style>
  <Style x:Key="MaterialDesignLabelMediumTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="12" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="16" />
  </Style>
  <Style x:Key="MaterialDesignLabelLargeTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="14" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="20" />
  </Style>
 
  <!-- MaterialDesignTitle -->
  <Style x:Key="MaterialDesignTitleSmallTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="14" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="20" />
  </Style>
  <Style x:Key="MaterialDesignTitleMediumTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="16" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="24" />
  </Style>
  <Style x:Key="MaterialDesignTitleLargeTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="22" />
    <Setter Property="FontWeight" Value="Medium" />
    <Setter Property="LineHeight" Value="28" />
  </Style>
 
  <!-- MaterialDesignHeadline -->
  <Style x:Key="MaterialDesignHeadlineSmallTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="24" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="32" />
  </Style>
  <Style x:Key="MaterialDesignHeadlineMediumTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="28" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="36" />
  </Style>
  <Style x:Key="MaterialDesignHeadlineLargeTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="32" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="40" />
  </Style>
 
  <!-- MaterialDesignDisplay -->
  <Style x:Key="MaterialDesignDisplaySmallTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="36" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="44" />
  </Style>
  <Style x:Key="MaterialDesignDisplayMediumTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="45" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="52" />
  </Style>
  <Style x:Key="MaterialDesignDisplayLargeTextBlock" TargetType="{x:Type TextBlock}">
    <Setter Property="FontSize" Value="57" />
    <Setter Property="FontWeight" Value="Regular" />
    <Setter Property="LineHeight" Value="64" />
  </Style>
</ResourceDictionary>