@@ -29,50 +29,50 @@ class MarkdownWidget extends StatelessWidget {
2929 color: UnitColor .subTextColor,
3030 border: new Border .all (
3131 color: UnitColor .subTextColor, width: 0.3 )),
32- blockquote: TextStyleUnit .smallTextWhite);
32+ blockquote: TStyleUnit .smallTextWhite);
3333 }
3434
3535 _getStyleSheetDark (BuildContext context) {
3636 return _getCommonSheet (context, Color .fromRGBO (40 , 44 , 52 , 1.00 )).copyWith (
37- p: TextStyleUnit .smallTextWhite,
38- h1: TextStyleUnit .largeLargeTextWhite,
39- h2: TextStyleUnit .largeTextWhiteBold,
40- h3: TextStyleUnit .normalTextMitWhiteBold,
41- h4: TextStyleUnit .middleTextWhite,
42- h5: TextStyleUnit .smallTextWhite,
43- h6: TextStyleUnit .smallTextWhite,
37+ p: TStyleUnit .smallTextWhite,
38+ h1: TStyleUnit .largeLargeTextWhite,
39+ h2: TStyleUnit .largeTextWhiteBold,
40+ h3: TStyleUnit .normalTextMitWhiteBold,
41+ h4: TStyleUnit .middleTextWhite,
42+ h5: TStyleUnit .smallTextWhite,
43+ h6: TStyleUnit .smallTextWhite,
4444 em: const TextStyle (fontStyle: FontStyle .italic),
45- strong: TextStyleUnit .middleTextWhiteBold,
46- code: TextStyleUnit .smallSubText,
45+ strong: TStyleUnit .middleTextWhiteBold,
46+ code: TStyleUnit .smallSubText,
4747 );
4848 }
4949
5050 MarkdownStyleSheet _getStyleSheetWhite (BuildContext context) {
5151 return _getCommonSheet (context, Color .fromRGBO (40 , 44 , 52 , 1.00 )).copyWith (
52- p: TextStyleUnit .smallText,
53- h1: TextStyleUnit .largeLargeText,
54- h2: TextStyleUnit .largeTextBold,
55- h3: TextStyleUnit .normalTextBold,
56- h4: TextStyleUnit .middleText,
57- h5: TextStyleUnit .smallText,
58- h6: TextStyleUnit .smallText,
59- strong: TextStyleUnit .middleTextBold,
60- code: TextStyleUnit .smallSubText,
52+ p: TStyleUnit .smallText,
53+ h1: TStyleUnit .largeLargeText,
54+ h2: TStyleUnit .largeTextBold,
55+ h3: TStyleUnit .normalTextBold,
56+ h4: TStyleUnit .middleText,
57+ h5: TStyleUnit .smallText,
58+ h6: TStyleUnit .smallText,
59+ strong: TStyleUnit .middleTextBold,
60+ code: TStyleUnit .smallSubText,
6161 );
6262 }
6363
6464 _getStyleSheetTheme (BuildContext context) {
6565 return _getCommonSheet (context, Color .fromRGBO (40 , 44 , 52 , 1.00 )).copyWith (
66- p: TextStyleUnit .smallTextWhite,
67- h1: TextStyleUnit .largeLargeTextWhite,
68- h2: TextStyleUnit .largeTextWhiteBold,
69- h3: TextStyleUnit .normalTextMitWhiteBold,
70- h4: TextStyleUnit .middleTextWhite,
71- h5: TextStyleUnit .smallTextWhite,
72- h6: TextStyleUnit .smallTextWhite,
66+ p: TStyleUnit .smallTextWhite,
67+ h1: TStyleUnit .largeLargeTextWhite,
68+ h2: TStyleUnit .largeTextWhiteBold,
69+ h3: TStyleUnit .normalTextMitWhiteBold,
70+ h4: TStyleUnit .middleTextWhite,
71+ h5: TStyleUnit .smallTextWhite,
72+ h6: TStyleUnit .smallTextWhite,
7373 em: const TextStyle (fontStyle: FontStyle .italic),
74- strong: TextStyleUnit .middleTextWhiteBold,
75- code: TextStyleUnit .smallSubText,
74+ strong: TStyleUnit .middleTextWhiteBold,
75+ code: TStyleUnit .smallSubText,
7676 );
7777 }
7878
0 commit comments