diff --git a/README.md b/README.md index 58c3d6b..336c29a 100644 --- a/README.md +++ b/README.md @@ -77,10 +77,22 @@ let services: InputData = [ "netflix": .service(Service(activities: ["watch"])), ] + +let style = StylingOptions( + primaryColor: "#7949D1", + backgroundColor: "#fff", + foregroundColor: "#562BA6", + accentColor: "#F4F0FB", +) + +let options = ConnectOptions(style: style) + let input = ConnectInput( publicKey: "yourPublicKey", redirectURL: "https://example.com", - services: services + services: services, + // Optional styling parameter to modify the Connect UI + options: options ) ```