Theme Color
You can change default SDK theme color using the themeColor property. The default theme Color of the SDK is a shade of blue. Any modifications to the themeColor property will be applied across all screens in the Mobilisten UI.
themeColor
Copied//Get baseTheme using ZohoSalesIQ.Theme.baseTheme
let customTheme = ZohoSalesIQ.Theme.baseTheme
//Customize properties in the customTheme instance as desired
customTheme.themeColor = UIColor.blue
//Set the customized theme using ZohoSalesIQ.Theme.setTheme API
ZohoSalesIQ.Theme.setTheme(theme: customTheme)