diff --git a/sdk/quickstart-ios.mdx b/sdk/quickstart-ios.mdx
index 6e1a281..f014de6 100644
--- a/sdk/quickstart-ios.mdx
+++ b/sdk/quickstart-ios.mdx
@@ -641,6 +641,25 @@ Helium.shared.initialize(
+
+ By default, paywalls follow your device's appearance setting (light or dark mode), if you've configured it in the editor. You can override this behavior to force a specific mode (e.g., if your app has its own dark mode/light mode scheme):
+
+ ```swift
+ // Force light mode for all paywalls
+ Helium.shared.setLightDarkModeOverride(.light)
+
+ // Force dark mode for all paywalls
+ Helium.shared.setLightDarkModeOverride(.dark)
+
+ // Reset to system default (respects device setting)
+ Helium.shared.setLightDarkModeOverride(.system)
+ ```
+
+
+ The override persists until changed and applies to all paywalls. Call this during app initialization or before presenting paywalls.
+
+
+
Reset Helium entirely so you can call initialize again. Only for advanced use cases.