diff --git a/common/app/conf/switches/FeatureSwitches.scala b/common/app/conf/switches/FeatureSwitches.scala index 6b1f19c6e7b..ebddab8ee37 100644 --- a/common/app/conf/switches/FeatureSwitches.scala +++ b/common/app/conf/switches/FeatureSwitches.scala @@ -522,4 +522,14 @@ trait FeatureSwitches { exposeClientSide = true, ) + val DarkModeInApps = Switch( + SwitchGroup.Feature, + "dark-mode-apps", + "If this switch is on, we will allow dark mode in apps articles", + owners = Seq(Owner.withEmail("dotcom.platform@theguardian.com")), + safeState = Off, + // This is a random date in the future but this switch should be removed far before then + sellByDate = Some(LocalDate.of(2024, 6, 5)), + exposeClientSide = false, + ) }