diff --git a/CHANGELOG.md b/CHANGELOG.md index 485a88af4..da8f55844 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ ### Bug Fixes -* **ColorTokenImporters:** Add type filter for color token importers ([af44945](/~https://github.com/Telefonica/mistica-ios/commit/af44945b6e5f441efcb2b12dcb0749c276bfe020)) +* **ColorTokenImporters:** Add type filter for color token importer ([af44945](/~https://github.com/Telefonica/mistica-ios/commit/af44945b6e5f441efcb2b12dcb0749c276bfe020)) ### Features diff --git a/Sources/MisticaCommon/Colors/O2NewColorPalette.swift b/Sources/MisticaCommon/Colors/O2NewColorPalette.swift index bb0e255cd..a4c764bae 100644 --- a/Sources/MisticaCommon/Colors/O2NewColorPalette.swift +++ b/Sources/MisticaCommon/Colors/O2NewColorPalette.swift @@ -80,7 +80,7 @@ struct O2NewColors: MisticaColors { let buttonLinkDangerBackgroundSelected = O2NewColors.palette.o2Red10 | O2NewColors.palette.white.withAlphaComponent(0.08) - let buttonLinkDangerBackgroundInverse = O2NewColors.palette.white | O2NewColors.palette.white.withAlphaComponent(0.01) + let buttonLinkDangerBackgroundInverse = O2NewColors.palette.white | O2NewColors.palette.white.withAlphaComponent(0) let buttonLinkDangerBackgroundInverseSelected = O2NewColors.palette.o2Red10 | O2NewColors.palette.white.withAlphaComponent(0.08) @@ -254,7 +254,7 @@ struct O2NewColors: MisticaColors { let tagTextWarning = O2NewColors.palette.o2Orange75 | O2NewColors.palette.o2Orange - let tagTextError = O2NewColors.palette.o2Red65 | O2NewColors.palette.o2Red + let tagTextError = O2NewColors.palette.o2Red65 | O2NewColors.palette.o2Red45 let tagBackgroundPromo = O2NewColors.palette.o2Pink15 | O2NewColors.palette.darkModeGrey6 @@ -303,7 +303,7 @@ public struct O2NewColorPalette { public let o2Red40 = UIColor(hex: "#FF8B8B")! public let o2Red45 = UIColor(hex: "#FF7B7B")! public let o2Red60 = UIColor(hex: "#CC4848")! - public let o2Red65 = UIColor(hex: "#BF4343")! + public let o2Red65 = UIColor(hex: "#BF4444")! public let grey20 = UIColor(hex: "#F3F3F5")! public let grey30 = UIColor(hex: "#D9D9DD")! public let grey40 = UIColor(hex: "#B4B4BE")! @@ -312,9 +312,8 @@ public struct O2NewColorPalette { public let grey80 = UIColor(hex: "#3C3C46")! public let black = UIColor(hex: "#00001E")! public let white = UIColor(hex: "#FFFFFF")! - public let darkModeBlack = UIColor(hex: "#121212")! - public let darkModeGrey = UIColor(hex: "#1E1E1E")! - public let darkModeGrey6 = UIColor(hex: "#2B2C2E")! + public let darkModeBlack = UIColor(hex: "#00001C")! + public let darkModeGrey = UIColor(hex: "#08132B")! + public let darkModeGrey6 = UIColor(hex: "#14213D")! public let darkModeBeyondBlue = UIColor(hex: "#1A62FF")! - public let darkModeBeyondBlueDark = UIColor(hex: "#0048E5")! } diff --git a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-dark-style.png index 307f21783..ffdc352e5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-style.png index 307f21783..ffdc352e5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testFlagBadge.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-dark-style.png index 07f90e8aa..c5698cbdb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-style.png index c98f756ae..03c2b8d45 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/BadgeTests/testNumericBadge.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-dark-style.png index 5df17ff00..5762f0dfe 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-style.png index 5df17ff00..5762f0dfe 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-dark-style.png index e9d7b638e..891eaaf9f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-style.png index 33f632399..536ba1a93 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerInverseStyle.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerStyle.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerStyle.with-o2New-style.png index 75daaac20..4a16eb55a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerStyle.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkDangerStyle.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-dark-style.png index e087785ce..539ae927b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-style.png index e087785ce..539ae927b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testBrandStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testBrandStyles.with-o2New-dark-style.png index 2d07113fb..e190bdc01 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testBrandStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testBrandStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxActiveCheckedState.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxActiveCheckedState.with-o2New-dark-style.png index da1e3b317..e7c5c919d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxActiveCheckedState.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxActiveCheckedState.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxDefaultState.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxDefaultState.with-o2New-dark-style.png index 2ce882d4d..31b8ee775 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxDefaultState.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CheckboxTests/testCheckboxDefaultState.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCrouton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCrouton.with-o2New-dark-style.png index 5a58c1312..402a58972 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCrouton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCrouton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithLongActionTitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithLongActionTitle.with-o2New-dark-style.png index e651889e1..c519ada78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithLongActionTitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithLongActionTitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithShortActionTitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithShortActionTitle.with-o2New-dark-style.png index 85fd16105..d94826f2f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithShortActionTitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testCriticalCroutonWithShortActionTitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCrouton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCrouton.with-o2New-dark-style.png index 663c01c3f..7d96bd8ed 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCrouton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCrouton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithLongActionTitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithLongActionTitle.with-o2New-dark-style.png index 5262f5f9b..12d674599 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithLongActionTitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithLongActionTitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithShortActionTitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithShortActionTitle.with-o2New-dark-style.png index 3ce330a48..635483fa2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithShortActionTitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/CroutonTests/testInfoCroutonWithShortActionTitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testBrandStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testBrandStyles.with-o2New-dark-style.png index 5aebf966f..17920e65d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testBrandStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testBrandStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DeterminateStepperTests/testDeterminateStepperDefaultState.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/DeterminateStepperTests/testDeterminateStepperDefaultState.with-o2New-dark-style.png index 8835d8d93..18680ec44 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DeterminateStepperTests/testDeterminateStepperDefaultState.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/DeterminateStepperTests/testDeterminateStepperDefaultState.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testBrandStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testBrandStyles.with-o2New-dark-style.png index d77e94edb..71815a285 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testBrandStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testBrandStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2New-dark-style.png index c1c5956bf..ff5406115 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2New-dark-style.png index 36d9a4ae1..417fa00bd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2New-dark-style.png index fe3eda50f..461755092 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2New-dark-style.png index 134bd326e..dbfee3da0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryButtonLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryButtonLink.with-o2New-dark-style.png index f1f81b07d..b46ca23f0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryButtonLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryButtonLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2New-dark-style.png index be501dcd5..c83e9a568 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleAndSubtitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleAndSubtitle.with-o2New-dark-style.png index 549ebcd20..685beeee1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleAndSubtitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleAndSubtitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleSubtitleAndErrorReference.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleSubtitleAndErrorReference.with-o2New-dark-style.png index 663287c27..348afa6d9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleSubtitleAndErrorReference.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorTitleSubtitleAndErrorReference.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testFeedbackTitleAndSubtitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testFeedbackTitleAndSubtitle.with-o2New-dark-style.png index db37aa882..03080548c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testFeedbackTitleAndSubtitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testFeedbackTitleAndSubtitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeMultilineScroll.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeMultilineScroll.with-o2New-dark-style.png index 98ae7f192..141e73534 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeMultilineScroll.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeMultilineScroll.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2New-dark-style.png index a9f1e8bfa..d00375a9c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2New-dark-style.png index 894e4a716..5b5285d23 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLink.with-o2New-dark-style.png index 6adbe38ae..3ed535cd0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLinkCustomView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLinkCustomView.with-o2New-dark-style.png index 493d74f67..0ab959b84 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLinkCustomView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeSecondaryButtonLinkCustomView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeTitleAndSubtitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeTitleAndSubtitle.with-o2New-dark-style.png index 4171448c9..63dc77e03 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeTitleAndSubtitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativeTitleAndSubtitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessMultiline.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessMultiline.with-o2New-dark-style.png index aa2ad1f13..a4f970f48 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessMultiline.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessMultiline.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2New-dark-style.png index b741f4766..8810a0656 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2New-dark-style.png index fbb3b351d..477c429b0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2New-dark-style.png index 28d17f581..ba026121e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2New-dark-style.png index e798eb130..0f6435104 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessTitle.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessTitle.with-o2New-dark-style.png index e87b791bf..d068f9a5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessTitle.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessTitle.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSegmentsInFilter.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSegmentsInFilter.with-o2New-dark-style.png index 028d3e42e..9dd2368b5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSegmentsInFilter.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSegmentsInFilter.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSelectedSegmentsInFilter.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSelectedSegmentsInFilter.with-o2New-dark-style.png index 78e29dd5c..0bc87e7ea 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSelectedSegmentsInFilter.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FilterTests/testSelectedSegmentsInFilter.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2New-dark-style.png index 650af8267..1c24177a3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2New-dark-style.png index 80757aa55..fe79de3f0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndLinkButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndLinkButton.with-o2New-dark-style.png index da5143883..79b02feb4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndLinkButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndLinkButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2New-dark-style.png index 3ef90ce06..6a5cb6104 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2New-dark-style.png index 08bf3625d..fbaad496b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndLinkButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndLinkButton.with-o2New-dark-style.png index 4faa24c87..c986e7a23 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndLinkButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndLinkButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2New-dark-style.png index a3d15060f..8b054c9b2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2New-dark-style.png index e614456da..73626bf2b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/IndeterminateStepperTests/testIndeterminateStepperDefaultState.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/IndeterminateStepperTests/testIndeterminateStepperDefaultState.with-o2New-dark-style.png index 519333f12..6ca48b41a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/IndeterminateStepperTests/testIndeterminateStepperDefaultState.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/IndeterminateStepperTests/testIndeterminateStepperDefaultState.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDefaultStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDefaultStyleAndAllStates.with-o2New-dark-style.png index bfcf41d4c..97aefaf78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDefaultStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDefaultStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDropdownStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDropdownStyleAndAllStates.with-o2New-dark-style.png index 225b78a53..3e2666b5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDropdownStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithDropdownStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithEmailStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithEmailStyleAndAllStates.with-o2New-dark-style.png index 5dcf5c1b3..716025a11 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithEmailStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithEmailStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithInverseStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithInverseStyleAndAllStates.with-o2New-dark-style.png index d82071cc3..c949d7952 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithInverseStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithInverseStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithMultilineStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithMultilineStyleAndAllStates.with-o2New-dark-style.png index 9bac5f237..72f57f333 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithMultilineStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithMultilineStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPasswordStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPasswordStyleAndAllStates.with-o2New-dark-style.png index b42b6bf75..fffeee8d2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPasswordStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPasswordStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPhoneNumberStyleAndAllStates.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPhoneNumberStyleAndAllStates.with-o2New-dark-style.png index d6ee41fbe..a3f5b5087 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPhoneNumberStyleAndAllStates.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/InputFieldTests/testInputFieldWithPhoneNumberStyleAndAllStates.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsFontColors.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsFontColors.with-o2New-dark-style.png index 415532af9..9d700657d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsFontColors.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsFontColors.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2New-dark-style.png index b5b9ffe15..69912e024 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testBrandStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testBrandStyles.with-o2New-dark-style.png index 8b8da261c..5923a2503 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testBrandStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testBrandStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/PopoverViewTests/testBrandStyles.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/PopoverViewTests/testBrandStyles.with-o2New-dark-style.png index 6a15b9e5c..4c65706b4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/PopoverViewTests/testBrandStyles.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/PopoverViewTests/testBrandStyles.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/RadioButtonTests/testRadioButtonDisabled.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/RadioButtonTests/testRadioButtonDisabled.with-o2New-dark-style.png index 169229a0c..a9db335a9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/RadioButtonTests/testRadioButtonDisabled.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/RadioButtonTests/testRadioButtonDisabled.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-dark-style.png index 8e512f8eb..278cf5b75 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-style.png index 98adb9738..e0689641f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-dark-style.png index 083824921..0f16d8f9b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-style.png index 712e1c0d3..184db6f59 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2New-dark-style.png index 51c61f39c..65f7da9eb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2New-dark-style.png index 51c61f39c..65f7da9eb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2New-dark-style.png index aa1f59e9c..d354265c1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2New-dark-style.png index 3beaadd72..6be4ee201 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2New-dark-style.png index 3beaadd72..6be4ee201 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2New-dark-style.png index 7db0409ad..ac043507c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png index d2920787d..ff58e57e6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png index d2920787d..ff58e57e6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png index ee339e18b..290cb3610 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png index 95731216a..f327ea49b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png index 6a9bda323..f4e95425a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2New-dark-style.png index 58a977911..c758e082e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2New-dark-style.png index fa6bb30bf..c7e03b6b2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TabsTests/testTabsDefaultState.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TabsTests/testTabsDefaultState.with-o2New-dark-style.png index 0fab0fdcc..46ee45673 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TabsTests/testTabsDefaultState.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TabsTests/testTabsDefaultState.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testActiveTagView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testActiveTagView.with-o2New-dark-style.png index 94999cba7..bbed9a8d4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testActiveTagView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testActiveTagView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-dark-style.png index 7c4bdc407..5a7ef1360 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-style.png index a4ed808fe..7b76c0198 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testErrorTagView.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testPromoTagView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testPromoTagView.with-o2New-dark-style.png index 337ead8b2..61bcd6791 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testPromoTagView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testPromoTagView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testSuccessTagView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testSuccessTagView.with-o2New-dark-style.png index 05a73c3f3..0860c4688 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testSuccessTagView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testSuccessTagView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testTagViewWithIcon.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testTagViewWithIcon.with-o2New-dark-style.png index b4e518819..b8fd087f0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testTagViewWithIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testTagViewWithIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testWarningTagView.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testWarningTagView.with-o2New-dark-style.png index 59de3caf9..c86247538 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TagTests/testWarningTagView.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TagTests/testWarningTagView.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1.with-o2New-dark-style.png index 67f570e8c..8c84ac8e0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1Multiline.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1Multiline.with-o2New-dark-style.png index d034ac6eb..45af1ec74 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1Multiline.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1Multiline.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1MultilineAndLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1MultilineAndLink.with-o2New-dark-style.png index c5f632b90..0de6649df 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1MultilineAndLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1MultilineAndLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1WithLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1WithLink.with-o2New-dark-style.png index e05debe1b..c80ea765f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1WithLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle1WithLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2.with-o2New-dark-style.png index 422df098d..d15e56b8f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2Multiline.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2Multiline.with-o2New-dark-style.png index 5e6d65154..d7c964649 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2Multiline.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2Multiline.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2MultilineAndLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2MultilineAndLink.with-o2New-dark-style.png index 9ad2167a3..fcc04f949 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2MultilineAndLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2MultilineAndLink.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2WithLink.with-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2WithLink.with-o2New-dark-style.png index 07f6891fb..8ebeabb6a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2WithLink.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/TitleViewTests/testTitle2WithLink.with-o2New-dark-style.png differ