@@ -34,9 +34,14 @@ public sealed class MarkdownThemes : DependencyObject
3434
3535 public double H6FontSize { get ; set ; } = 12 ;
3636
37- public Brush HeadingForeground { get ; set ; } = Extensions . GetAccentColorBrush ( ) ;
37+ public Brush H1Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
38+ public Brush H2Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
39+ public Brush H3Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
40+ public Brush H4Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
41+ public Brush H5Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
42+ public Brush H6Foreground { get ; set ; } = ( Brush ) Application . Current . Resources [ "TextFillColorPrimaryBrush" ] ;
3843
39- public FontWeight H1FontWeight { get ; set ; } = FontWeights . Bold ;
44+ public FontWeight H1FontWeight { get ; set ; } = FontWeights . SemiBold ;
4045
4146 public FontWeight H2FontWeight { get ; set ; } = FontWeights . Normal ;
4247
@@ -48,10 +53,10 @@ public sealed class MarkdownThemes : DependencyObject
4853
4954 public FontWeight H6FontWeight { get ; set ; } = FontWeights . Normal ;
5055
51- public Thickness H1Margin { get ; set ; } = new ( left : 0 , top : 14 , right : 0 , bottom : 0 ) ;
52- public Thickness H2Margin { get ; set ; } = new ( left : 0 , top : 14 , right : 0 , bottom : 0 ) ;
53- public Thickness H3Margin { get ; set ; } = new ( left : 0 , top : 14 , right : 0 , bottom : 0 ) ;
54- public Thickness H4Margin { get ; set ; } = new ( left : 0 , top : 14 , right : 0 , bottom : 0 ) ;
56+ public Thickness H1Margin { get ; set ; } = new ( left : 0 , top : 16 , right : 0 , bottom : 0 ) ;
57+ public Thickness H2Margin { get ; set ; } = new ( left : 0 , top : 16 , right : 0 , bottom : 0 ) ;
58+ public Thickness H3Margin { get ; set ; } = new ( left : 0 , top : 16 , right : 0 , bottom : 0 ) ;
59+ public Thickness H4Margin { get ; set ; } = new ( left : 0 , top : 16 , right : 0 , bottom : 0 ) ;
5560 public Thickness H5Margin { get ; set ; } = new ( left : 0 , top : 8 , right : 0 , bottom : 0 ) ;
5661 public Thickness H6Margin { get ; set ; } = new ( left : 0 , top : 8 , right : 0 , bottom : 0 ) ;
5762
0 commit comments