diff --git a/iphone/Maps/Core/Theme/Components/IFonts.swift b/iphone/Maps/Core/Theme/Components/IFonts.swift index 44b7989f45..c82c4a1359 100644 --- a/iphone/Maps/Core/Theme/Components/IFonts.swift +++ b/iphone/Maps/Core/Theme/Components/IFonts.swift @@ -43,6 +43,7 @@ var bold34: UIFont { get } var bold36: UIFont { get } var bold48: UIFont { get } + var header: UIFont { get } var heavy17: UIFont { get } var heavy20: UIFont { get } var heavy32: UIFont { get } diff --git a/iphone/Maps/Core/Theme/Fonts.swift b/iphone/Maps/Core/Theme/Fonts.swift index 83ab604ec6..40eae432d7 100644 --- a/iphone/Maps/Core/Theme/Fonts.swift +++ b/iphone/Maps/Core/Theme/Fonts.swift @@ -42,6 +42,7 @@ class Fonts: IFonts { var bold34 = UIFont.systemFont(ofSize: 34, weight:UIFont.Weight.bold) var bold36 = UIFont.systemFont(ofSize: 36, weight:UIFont.Weight.bold) var bold48 = UIFont.systemFont(ofSize: 48, weight:UIFont.Weight.bold) + var header = UIFont.preferredFont(forTextStyle: .headline) var heavy17 = UIFont.systemFont(ofSize: 17, weight:UIFont.Weight.heavy) var heavy20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.heavy) var heavy32 = UIFont.systemFont(ofSize: 32, weight:UIFont.Weight.heavy) diff --git a/iphone/Maps/Core/Theme/GlobalStyleSheet.swift b/iphone/Maps/Core/Theme/GlobalStyleSheet.swift index a7632fa2e9..70a0264a6d 100644 --- a/iphone/Maps/Core/Theme/GlobalStyleSheet.swift +++ b/iphone/Maps/Core/Theme/GlobalStyleSheet.swift @@ -39,7 +39,7 @@ class GlobalStyleSheet: IStyleSheet { s.tintColor = colors.whitePrimaryText s.backgroundImage = UIImage() s.shadowImage = UIImage() - s.font = fonts.regular18 + s.font = fonts.header s.fontColor = colors.whitePrimaryText }