@@ -60,11 +60,11 @@ extension StringStyles {
6060 /// Styles: Notifications List / Subject Block
6161 ///
6262 static let subject : StringStyles = {
63- let regular : Style = [ . paragraphStyle: NSParagraphStyle . subheadline , . font: UIFont . subheadline , . foregroundColor: StyleManager . defaultTextColor]
64- let bold : Style = [ . paragraphStyle: NSParagraphStyle . subheadline , . font: UIFont . subheadline . bold]
65- let blockquote : Style = [ . paragraphStyle: NSParagraphStyle . subheadline , . font: UIFont . subheadline . italics]
66- let italics : Style = [ . paragraphStyle: NSParagraphStyle . subheadline , . font: UIFont . subheadline . italics]
67- let noticon : Style = [ . paragraphStyle: NSParagraphStyle . subheadline , . font: UIFont . noticon ( forStyle: . subheadline ) , . foregroundColor: StyleManager . defaultTextColor ]
63+ let regular : Style = [ . paragraphStyle: NSParagraphStyle . body , . font: UIFont . body , . foregroundColor: StyleManager . defaultTextColor]
64+ let bold : Style = [ . paragraphStyle: NSParagraphStyle . body , . font: UIFont . body . bold]
65+ let blockquote : Style = [ . paragraphStyle: NSParagraphStyle . body , . font: UIFont . body . italics]
66+ let italics : Style = [ . paragraphStyle: NSParagraphStyle . body , . font: UIFont . body . italics]
67+ let noticon : Style = [ . paragraphStyle: NSParagraphStyle . body , . font: UIFont . noticon ( forStyle: . body ) , . foregroundColor: StyleManager . wooGreyMid ]
6868
6969 return StringStyles ( regular: regular, bold: bold, blockquote: blockquote, italics: italics, match: nil , noticon: noticon)
7070 } ( )
@@ -73,8 +73,7 @@ extension StringStyles {
7373 /// Styles: Notifications List / Snippet Block
7474 ///
7575 static let snippet : StringStyles = {
76- let regular : Style = [ . paragraphStyle: NSParagraphStyle . subheadline, . font: UIFont . footnote, . foregroundColor: StyleManager . defaultTextColor]
77-
76+ let regular : Style = [ . paragraphStyle: NSParagraphStyle . footnote, . font: UIFont . footnote, . foregroundColor: StyleManager . defaultTextColor]
7877 return StringStyles ( regular: regular)
7978 } ( )
8079
@@ -108,7 +107,7 @@ extension StringStyles {
108107 let match : Style = [ . paragraphStyle: NSParagraphStyle . body, . font: UIFont . body. bold, . foregroundColor: StyleManager . defaultTextColor]
109108 let noticon : Style = [ . paragraphStyle: NSParagraphStyle . body, . font: UIFont . noticon ( forStyle: . body) , . foregroundColor: StyleManager . defaultTextColor]
110109 let italic : Style = [ . paragraphStyle: NSParagraphStyle . body, . font: UIFont . body. italics, . foregroundColor: StyleManager . defaultTextColor]
111- let link : Style = [ . foregroundColor: StyleManager . defaultTextColor ]
110+ let link : Style = [ . foregroundColor: StyleManager . wooCommerceBrandColor ]
112111
113112 return StringStyles ( regular: regular, bold: bold, blockquote: blockquote, match: match, noticon: noticon, link: link)
114113 } ( )
0 commit comments