FAQ
You can customize the colors and properties in the FAQ section of Mobilisten.
FAQ.Article.Toolbar
FAQ
Copied//Get baseTheme using ZohoSalesIQ.Theme.baseTheme
let customTheme = ZohoSalesIQ.Theme.baseTheme
//Customize properties in the customTheme instance as desired
customTheme.FAQ.headerTextColor = UIColor.black
customTheme.FAQ.ListItem.titleTextColor = UIColor.black
customTheme.FAQ.ListItem.subtitleTextColor = UIColor.gray
customTheme.FAQ.ListItem.subtitlePartitionColor = UIColor.lightGray
customTheme.FAQ.ListItem.separatorColor = UIColor.lightGray
customTheme.FAQ.ListItem.likedColor = UIColor.blue
customTheme.FAQ.ListItem.likePendingColor = UIColor.lightGray
customTheme.FAQ.ListItem.backgroundColor = UIColor.white
//Set the customized theme using ZohoSalesIQ.Theme.setTheme API
ZohoSalesIQ.Theme.setTheme(theme: customTheme)
FAQ.Article.Toolbar
Copied//Get baseTheme using ZohoSalesIQ.Theme.baseTheme
let customTheme = ZohoSalesIQ.Theme.baseTheme
//Customize properties in the customTheme instance as desired
customTheme.FAQ.Article.Toolbar.backgroundColor = UIColor.white
customTheme.FAQ.Article.Toolbar.LikeButton.setColor(.blue, forState: .selected)
customTheme.FAQ.Article.Toolbar.LikeButton.setColor(.gray, forState: .normal)
customTheme.FAQ.Article.Toolbar.DislikeButton.setColor(.blue, forState: .selected)
customTheme.FAQ.Article.Toolbar.DislikeButton.setColor(.gray, forState: .normal)
//Set the customized theme using ZohoSalesIQ.Theme.setTheme API
ZohoSalesIQ.Theme.setTheme(theme: customTheme)