diff --git a/Sources/MisticaCommon/Colors/BlauColorPalette.swift b/Sources/MisticaCommon/Colors/BlauColorPalette.swift index 31ad4a4fc..a233cca43 100644 --- a/Sources/MisticaCommon/Colors/BlauColorPalette.swift +++ b/Sources/MisticaCommon/Colors/BlauColorPalette.swift @@ -333,6 +333,10 @@ struct BlauColors: MisticaColors { let neutralHigh = BlauColors.palette.grey6 | BlauColors.palette.grey2 + let neutralHighNegative = BlauColors.palette.white | BlauColors.palette.grey2 + + let neutralHighBrand = BlauColors.palette.grey6 | BlauColors.palette.grey2 + let neutralMedium = BlauColors.palette.grey5 | BlauColors.palette.grey4 let neutralMediumInverse = BlauColors.palette.grey5 | BlauColors.palette.grey4 @@ -437,6 +441,8 @@ struct BlauColors: MisticaColors { let textAppBarSelected = BlauColors.palette.blauBlueSecondary60 | BlauColors.palette.grey2 + let iosGlassAppBarSelected = BlauColors.palette.blauBlueSecondary60 | BlauColors.palette.white + let customTabsBackground = BlauColors.palette.blauBluePrimary | BlauColors.palette.darkModeBlack let tagTextPromo = BlauColors.palette.blauPurple | BlauColors.palette.blauPurple30 diff --git a/Sources/MisticaCommon/Colors/ColorToolkit+Color.swift b/Sources/MisticaCommon/Colors/ColorToolkit+Color.swift index 00b6ac5f0..c0f027cab 100644 --- a/Sources/MisticaCommon/Colors/ColorToolkit+Color.swift +++ b/Sources/MisticaCommon/Colors/ColorToolkit+Color.swift @@ -645,6 +645,14 @@ public extension Color { MisticaConfig.currentColors.neutralHigh.color } + static var neutralHighNegative: Color { + MisticaConfig.currentColors.neutralHighNegative.color + } + + static var neutralHighBrand: Color { + MisticaConfig.currentColors.neutralHighBrand.color + } + static var neutralMedium: Color { MisticaConfig.currentColors.neutralMedium.color } @@ -853,6 +861,10 @@ public extension Color { MisticaConfig.currentColors.textAppBarSelected.color } + static var iosGlassAppBarSelected: Color { + MisticaConfig.currentColors.iosGlassAppBarSelected.color + } + static var customTabsBackground: Color { MisticaConfig.currentColors.customTabsBackground.color } diff --git a/Sources/MisticaCommon/Colors/ColorToolkit+UIColor.swift b/Sources/MisticaCommon/Colors/ColorToolkit+UIColor.swift index e0043eff5..8d4abc223 100644 --- a/Sources/MisticaCommon/Colors/ColorToolkit+UIColor.swift +++ b/Sources/MisticaCommon/Colors/ColorToolkit+UIColor.swift @@ -645,6 +645,14 @@ public extension UIColor { MisticaConfig.currentColors.neutralHigh } + static var neutralHighNegative: UIColor { + MisticaConfig.currentColors.neutralHighNegative + } + + static var neutralHighBrand: UIColor { + MisticaConfig.currentColors.neutralHighBrand + } + static var neutralMedium: UIColor { MisticaConfig.currentColors.neutralMedium } @@ -853,6 +861,10 @@ public extension UIColor { MisticaConfig.currentColors.textAppBarSelected } + static var iosGlassAppBarSelected: UIColor { + MisticaConfig.currentColors.iosGlassAppBarSelected + } + static var customTabsBackground: UIColor { MisticaConfig.currentColors.customTabsBackground } diff --git a/Sources/MisticaCommon/Colors/MisticaColors.swift b/Sources/MisticaCommon/Colors/MisticaColors.swift index f725aa4a8..357aac825 100644 --- a/Sources/MisticaCommon/Colors/MisticaColors.swift +++ b/Sources/MisticaCommon/Colors/MisticaColors.swift @@ -170,6 +170,8 @@ public protocol MisticaColors: Sendable { var inverse: UIColor { get } var negative: UIColor { get } var neutralHigh: UIColor { get } + var neutralHighNegative: UIColor { get } + var neutralHighBrand: UIColor { get } var neutralMedium: UIColor { get } var neutralMediumInverse: UIColor { get } var neutralMediumNegative: UIColor { get } @@ -222,6 +224,7 @@ public protocol MisticaColors: Sendable { var textNavigationSearchBarText: UIColor { get } var textAppBar: UIColor { get } var textAppBarSelected: UIColor { get } + var iosGlassAppBarSelected: UIColor { get } var customTabsBackground: UIColor { get } var tagTextPromo: UIColor { get } var tagTextActive: UIColor { get } diff --git a/Sources/MisticaCommon/Colors/MovistarColorPalette.swift b/Sources/MisticaCommon/Colors/MovistarColorPalette.swift index dc32fe55b..1d6dc3744 100644 --- a/Sources/MisticaCommon/Colors/MovistarColorPalette.swift +++ b/Sources/MisticaCommon/Colors/MovistarColorPalette.swift @@ -333,6 +333,10 @@ struct MovistarColors: MisticaColors { let neutralHigh = MovistarColors.palette.movistarBlueDark | MovistarColors.palette.darkModeGrey2 + let neutralHighNegative = MovistarColors.palette.white | MovistarColors.palette.darkModeGrey2 + + let neutralHighBrand = MovistarColors.palette.white | MovistarColors.palette.darkModeGrey2 + let neutralMedium = MovistarColors.palette.grey5 | MovistarColors.palette.darkModeGrey5 let neutralMediumInverse = MovistarColors.palette.grey5 @@ -437,6 +441,8 @@ struct MovistarColors: MisticaColors { let textAppBarSelected = MovistarColors.palette.movistarBlueHC | MovistarColors.palette.movistarBlue + let iosGlassAppBarSelected = MovistarColors.palette.movistarBlueHC55 | MovistarColors.palette.white + let customTabsBackground = MovistarColors.palette.white | MovistarColors.palette.darkModeBlack let tagTextPromo = MovistarColors.palette.white diff --git a/Sources/MisticaCommon/Colors/MovistarNewColorPalette.swift b/Sources/MisticaCommon/Colors/MovistarNewColorPalette.swift index 018747320..49feeacfc 100644 --- a/Sources/MisticaCommon/Colors/MovistarNewColorPalette.swift +++ b/Sources/MisticaCommon/Colors/MovistarNewColorPalette.swift @@ -333,6 +333,10 @@ struct MovistarNewColors: MisticaColors { let neutralHigh = MovistarNewColors.palette.movistarBlack | MovistarNewColors.palette.grey200 + let neutralHighNegative = MovistarNewColors.palette.white | MovistarNewColors.palette.grey200 + + let neutralHighBrand = MovistarNewColors.palette.white | MovistarNewColors.palette.grey200 + let neutralMedium = MovistarNewColors.palette.grey600 | MovistarNewColors.palette.grey500 let neutralMediumInverse = MovistarNewColors.palette.grey600 | MovistarNewColors.palette.grey500 @@ -437,6 +441,8 @@ struct MovistarNewColors: MisticaColors { let textAppBarSelected = MovistarNewColors.palette.blue800 | MovistarNewColors.palette.movistarBlue + let iosGlassAppBarSelected = MovistarNewColors.palette.blue800 | MovistarNewColors.palette.blue200 + let customTabsBackground = MovistarNewColors.palette.white | MovistarNewColors.palette.darkModeBlack let tagTextPromo = MovistarNewColors.palette.white | MovistarNewColors.palette.movistarWhite diff --git a/Sources/MisticaCommon/Colors/O2NewColorPalette.swift b/Sources/MisticaCommon/Colors/O2NewColorPalette.swift index 024f5d7f1..bd22f6956 100644 --- a/Sources/MisticaCommon/Colors/O2NewColorPalette.swift +++ b/Sources/MisticaCommon/Colors/O2NewColorPalette.swift @@ -351,6 +351,10 @@ struct O2NewColors: MisticaColors { let neutralHigh = O2NewColors.palette.black | O2NewColors.palette.grey30 + let neutralHighNegative = O2NewColors.palette.white | O2NewColors.palette.grey30 + + let neutralHighBrand = O2NewColors.palette.white | O2NewColors.palette.grey30 + let neutralMedium = O2NewColors.palette.grey60 let neutralMediumInverse = O2NewColors.palette.grey60 @@ -455,6 +459,8 @@ struct O2NewColors: MisticaColors { let textAppBarSelected = O2NewColors.palette.beyondBlue | O2NewColors.palette.beyondBlue40 + let iosGlassAppBarSelected = O2NewColors.palette.beyondBlue55 | O2NewColors.palette.beyondBlue15 + let customTabsBackground = O2NewColors.palette.beyondBlue | O2NewColors.palette.darkModeBlack let tagTextPromo = O2NewColors.palette.o2Pink80 | O2NewColors.palette.o2Pink diff --git a/Sources/MisticaCommon/Colors/TelefonicaColorPalette.swift b/Sources/MisticaCommon/Colors/TelefonicaColorPalette.swift index cd341bea2..6e63f9735 100644 --- a/Sources/MisticaCommon/Colors/TelefonicaColorPalette.swift +++ b/Sources/MisticaCommon/Colors/TelefonicaColorPalette.swift @@ -333,6 +333,10 @@ struct TelefonicaColors: MisticaColors { let neutralHigh = TelefonicaColors.palette.grey9 | TelefonicaColors.palette.grey2 + let neutralHighNegative = TelefonicaColors.palette.white | TelefonicaColors.palette.grey2 + + let neutralHighBrand = TelefonicaColors.palette.white | TelefonicaColors.palette.grey2 + let neutralMedium = TelefonicaColors.palette.grey5 let neutralMediumInverse = TelefonicaColors.palette.grey5 @@ -437,6 +441,8 @@ struct TelefonicaColors: MisticaColors { let textAppBarSelected = TelefonicaColors.palette.telefonicaBlue70 | TelefonicaColors.palette.white + let iosGlassAppBarSelected = TelefonicaColors.palette.telefonicaBlue70 | TelefonicaColors.palette.white + let customTabsBackground = TelefonicaColors.palette.telefonicaBlue70 | TelefonicaColors.palette.darkModeBlack let tagTextPromo = TelefonicaColors.palette.orchid80 | TelefonicaColors.palette.orchid40 diff --git a/Sources/MisticaCommon/Colors/TuColorPalette.swift b/Sources/MisticaCommon/Colors/TuColorPalette.swift index 051353eb3..c0f0083ce 100644 --- a/Sources/MisticaCommon/Colors/TuColorPalette.swift +++ b/Sources/MisticaCommon/Colors/TuColorPalette.swift @@ -333,6 +333,10 @@ struct TuColors: MisticaColors { let neutralHigh = TuColors.palette.grey9 | TuColors.palette.grey2 + let neutralHighNegative = TuColors.palette.white | TuColors.palette.grey2 + + let neutralHighBrand = TuColors.palette.white | TuColors.palette.grey2 + let neutralMedium = TuColors.palette.grey5 let neutralMediumInverse = TuColors.palette.grey5 @@ -437,6 +441,8 @@ struct TuColors: MisticaColors { let textAppBarSelected = TuColors.palette.primary | TuColors.palette.grey2 + let iosGlassAppBarSelected = TuColors.palette.primary | TuColors.palette.blue30 + let customTabsBackground = TuColors.palette.white | TuColors.palette.darkModeBlack let tagTextPromo = TuColors.palette.blue | TuColors.palette.blue30 diff --git a/Sources/MisticaCommon/Colors/VivoNewColorPalette.swift b/Sources/MisticaCommon/Colors/VivoNewColorPalette.swift index 8f0b043c4..9dc8b1478 100644 --- a/Sources/MisticaCommon/Colors/VivoNewColorPalette.swift +++ b/Sources/MisticaCommon/Colors/VivoNewColorPalette.swift @@ -333,6 +333,10 @@ struct VivoNewColors: MisticaColors { let neutralHigh = VivoNewColors.palette.grey6 | VivoNewColors.palette.grey2 + let neutralHighNegative = VivoNewColors.palette.white | VivoNewColors.palette.grey2 + + let neutralHighBrand = VivoNewColors.palette.white | VivoNewColors.palette.grey2 + let neutralMedium = VivoNewColors.palette.grey5 let neutralMediumInverse = VivoNewColors.palette.grey5 @@ -437,6 +441,8 @@ struct VivoNewColors: MisticaColors { let textAppBarSelected = VivoNewColors.palette.vivoPurple | VivoNewColors.palette.grey2 + let iosGlassAppBarSelected = VivoNewColors.palette.vivoPurple | VivoNewColors.palette.vivoPurpleLight20 + let customTabsBackground = VivoNewColors.palette.white | VivoNewColors.palette.darkModeBlack let tagTextPromo = VivoNewColors.palette.vivoPurple | VivoNewColors.palette.vivoPurpleLight50 diff --git a/Sources/MisticaCommon/Fonts/Brands/BlauFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/BlauFontSizes.swift index 725675ce4..e023ff04f 100644 --- a/Sources/MisticaCommon/Fonts/Brands/BlauFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/BlauFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct BlauFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 20 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct BlauFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/BlauFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/BlauFontWeights.swift index dc762f371..022620fb2 100644 --- a/Sources/MisticaCommon/Fonts/Brands/BlauFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/BlauFontWeights.swift @@ -17,6 +17,7 @@ struct BlauFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .light public var title3: MisticaFontWeightType = .light + public var title4: MisticaFontWeightType = .light public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .light @@ -25,4 +26,5 @@ struct BlauFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .light public var text9: MisticaFontWeightType = .light public var text10: MisticaFontWeightType = .light + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/MovistarFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/MovistarFontSizes.swift index 4d9529b09..6d6988247 100644 --- a/Sources/MisticaCommon/Fonts/Brands/MovistarFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/MovistarFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct MovistarFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 20 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct MovistarFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/MovistarFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/MovistarFontWeights.swift index 5666203fd..7c800322e 100644 --- a/Sources/MisticaCommon/Fonts/Brands/MovistarFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/MovistarFontWeights.swift @@ -17,6 +17,7 @@ struct MovistarFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .bold public var title3: MisticaFontWeightType = .bold + public var title4: MisticaFontWeightType = .bold public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .bold @@ -25,4 +26,5 @@ struct MovistarFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .bold public var text9: MisticaFontWeightType = .bold public var text10: MisticaFontWeightType = .bold + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontSizes.swift index ba80b920c..5dc35c2e8 100644 --- a/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct MovistarNewFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 - public var title3: CGFloat = 20 + public var title1: CGFloat = 14 + public var title2: CGFloat = 16 + public var title3: CGFloat = 18 + public var title4: CGFloat = 20 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct MovistarNewFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 14 + public var stepperStepLabel: CGFloat = 12 + public var loadingScreenTitle: CGFloat = 24 } diff --git a/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontWeights.swift index 6e65d1fbd..2c581abb6 100644 --- a/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/MovistarNewFontWeights.swift @@ -17,6 +17,7 @@ struct MovistarNewFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .bold public var title3: MisticaFontWeightType = .bold + public var title4: MisticaFontWeightType = .bold public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .bold @@ -25,4 +26,5 @@ struct MovistarNewFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .bold public var text9: MisticaFontWeightType = .bold public var text10: MisticaFontWeightType = .bold + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/O2NewFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/O2NewFontSizes.swift index 2ff18333b..0642c3e49 100644 --- a/Sources/MisticaCommon/Fonts/Brands/O2NewFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/O2NewFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct O2NewFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 20 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct O2NewFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/O2NewFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/O2NewFontWeights.swift index 734c9045b..117376ae4 100644 --- a/Sources/MisticaCommon/Fonts/Brands/O2NewFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/O2NewFontWeights.swift @@ -17,6 +17,7 @@ struct O2NewFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .bold public var title3: MisticaFontWeightType = .bold + public var title4: MisticaFontWeightType = .bold public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .bold @@ -25,4 +26,5 @@ struct O2NewFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .bold public var text9: MisticaFontWeightType = .bold public var text10: MisticaFontWeightType = .bold + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontSizes.swift index 192c45ae1..40ff60525 100644 --- a/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct TelefonicaFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 20 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct TelefonicaFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontWeights.swift index 839febf97..193dec572 100644 --- a/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/TelefonicaFontWeights.swift @@ -17,6 +17,7 @@ struct TelefonicaFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .regular public var title3: MisticaFontWeightType = .regular + public var title4: MisticaFontWeightType = .regular public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .regular @@ -25,4 +26,5 @@ struct TelefonicaFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .regular public var text9: MisticaFontWeightType = .regular public var text10: MisticaFontWeightType = .regular + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/TuFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/TuFontSizes.swift index 92872ca0a..47fb0a9f4 100644 --- a/Sources/MisticaCommon/Fonts/Brands/TuFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/TuFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct TuFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 16 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 20 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct TuFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/TuFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/TuFontWeights.swift index 6be3e946a..a95c0c290 100644 --- a/Sources/MisticaCommon/Fonts/Brands/TuFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/TuFontWeights.swift @@ -17,6 +17,7 @@ struct TuFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .medium public var title3: MisticaFontWeightType = .medium + public var title4: MisticaFontWeightType = .medium public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .medium public var text5: MisticaFontWeightType = .medium @@ -25,4 +26,5 @@ struct TuFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .medium public var text9: MisticaFontWeightType = .medium public var text10: MisticaFontWeightType = .medium + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/Brands/VivoNewFontSizes.swift b/Sources/MisticaCommon/Fonts/Brands/VivoNewFontSizes.swift index e194239a3..65fe9b241 100644 --- a/Sources/MisticaCommon/Fonts/Brands/VivoNewFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/Brands/VivoNewFontSizes.swift @@ -10,7 +10,10 @@ import Foundation struct VivoNewFontSizes: MisticaFontSizes { public var tabsLabel: CGFloat = 18 + public var title1: CGFloat = 12 + public var title2: CGFloat = 16 public var title3: CGFloat = 18 + public var title4: CGFloat = 24 public var text1: CGFloat = 12 public var text2: CGFloat = 14 public var text3: CGFloat = 16 @@ -21,4 +24,10 @@ struct VivoNewFontSizes: MisticaFontSizes { public var text8: CGFloat = 32 public var text9: CGFloat = 40 public var text10: CGFloat = 48 + public var chipLabel: CGFloat = 14 + public var inputLabel: CGFloat = 12 + public var inputValue: CGFloat = 16 + public var inputHelperText: CGFloat = 12 + public var stepperStepLabel: CGFloat = 14 + public var loadingScreenTitle: CGFloat = 18 } diff --git a/Sources/MisticaCommon/Fonts/Brands/VivoNewFontWeights.swift b/Sources/MisticaCommon/Fonts/Brands/VivoNewFontWeights.swift index 1c1f5de9e..809c8ed5c 100644 --- a/Sources/MisticaCommon/Fonts/Brands/VivoNewFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/Brands/VivoNewFontWeights.swift @@ -17,6 +17,7 @@ struct VivoNewFontWeights: MisticaFontWeights { public var title1: MisticaFontWeightType = .medium public var title2: MisticaFontWeightType = .medium public var title3: MisticaFontWeightType = .medium + public var title4: MisticaFontWeightType = .medium public var indicator: MisticaFontWeightType = .medium public var navigationBar: MisticaFontWeightType = .regular public var text5: MisticaFontWeightType = .medium @@ -25,4 +26,5 @@ struct VivoNewFontWeights: MisticaFontWeights { public var text8: MisticaFontWeightType = .regular public var text9: MisticaFontWeightType = .regular public var text10: MisticaFontWeightType = .regular + public var chipLabel: MisticaFontWeightType = .medium } diff --git a/Sources/MisticaCommon/Fonts/MisticaFontSizes.swift b/Sources/MisticaCommon/Fonts/MisticaFontSizes.swift index 573cf0a2a..0813fac0c 100644 --- a/Sources/MisticaCommon/Fonts/MisticaFontSizes.swift +++ b/Sources/MisticaCommon/Fonts/MisticaFontSizes.swift @@ -10,7 +10,10 @@ import Foundation public protocol MisticaFontSizes: Sendable { var tabsLabel: CGFloat { get } + var title1: CGFloat { get } + var title2: CGFloat { get } var title3: CGFloat { get } + var title4: CGFloat { get } var text1: CGFloat { get } var text2: CGFloat { get } var text3: CGFloat { get } @@ -21,4 +24,10 @@ public protocol MisticaFontSizes: Sendable { var text8: CGFloat { get } var text9: CGFloat { get } var text10: CGFloat { get } + var chipLabel: CGFloat { get } + var inputLabel: CGFloat { get } + var inputValue: CGFloat { get } + var inputHelperText: CGFloat { get } + var stepperStepLabel: CGFloat { get } + var loadingScreenTitle: CGFloat { get } } diff --git a/Sources/MisticaCommon/Fonts/MisticaFontWeights.swift b/Sources/MisticaCommon/Fonts/MisticaFontWeights.swift index 9b0f5ef77..67b41c65e 100644 --- a/Sources/MisticaCommon/Fonts/MisticaFontWeights.swift +++ b/Sources/MisticaCommon/Fonts/MisticaFontWeights.swift @@ -17,6 +17,7 @@ public protocol MisticaFontWeights: Sendable { var title1: MisticaFontWeightType { get } var title2: MisticaFontWeightType { get } var title3: MisticaFontWeightType { get } + var title4: MisticaFontWeightType { get } var indicator: MisticaFontWeightType { get } var navigationBar: MisticaFontWeightType { get } var text5: MisticaFontWeightType { get } @@ -25,4 +26,5 @@ public protocol MisticaFontWeights: Sendable { var text8: MisticaFontWeightType { get } var text9: MisticaFontWeightType { get } var text10: MisticaFontWeightType { get } + var chipLabel: MisticaFontWeightType { get } }